body {
            font-family: 'Times New Roman', Times, serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
    
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .hero {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }
        .hero img {
            width: 100%;
            height: auto;
            display: block;
        }
        .hero h1 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            font-size: 3.5em;
            text-align: center;
        }
        .description {
            margin: 20px 0;
            line-height: 1.6;
        }
        .activities {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .activity {
            flex: 1 1 30%;
            margin: 10px;
            padding: 15px;
            background: #eaeaea;
            border-radius: 5px;
            text-align: center;
        }
        .testimonial {
            text-align: center;
        }
        .explore-button {
            display: inline-block;
            padding: 10px 20px;
            background: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .explore-button:hover {
            background: #0056b3;
        }
       
        @media (max-width: 768px) {
            .activities {
                flex-direction: column;
            }
            .activity {
                flex: 1 1 100%;
            }
            .hero h1 {
                font-size: 2.5em;
            }
        }