        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Georgia, 'Times New Roman', serif;
            background: #fdfbf7;
            color: #2c2416;
            line-height: 1.6;
        }

        /* Header */
        .site-header {
            background: #1a4d2e;
            padding: 20px 0;
            border-bottom: 3px solid #d4a574;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            color: #f5f1e8;
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .contact-buttons a {
            display: inline-block;
            padding: 10px 24px;
            margin-left: 12px;
            text-decoration: none;
            font-family: Arial, sans-serif;
            font-size: 14px;
            font-weight: 600;
            border: 2px solid;
            transition: all 0.3s;
        }

        .btn-wa {
            background: #25d366;
            color: white;
            border-color: #25d366;
        }

        .btn-wa:hover {
            background: #1fb855;
            border-color: #1fb855;
        }

        .btn-call {
            background: transparent;
            color: #f5f1e8;
            border-color: #d4a574;
        }

        .btn-call:hover {
            background: #d4a574;
            color: #1a4d2e;
        }

        /* Hero */
        .hero {
            background: #e8dcc4;
            border-bottom: 4px double #1a4d2e;
            padding: 60px 0;
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 48px;
            color: #1a4d2e;
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 700;
        }

        .hero-text p {
            font-size: 20px;
            color: #4a3f2e;
            margin-bottom: 30px;
        }

        .credentials {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .credential-badge {
            background: white;
            padding: 12px 20px;
            border: 2px solid #1a4d2e;
            font-family: Arial, sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: #1a4d2e;
        }

        .hero-image {
            background: url('images/hero.webp') center/cover;
            height: 400px;
            border: 8px solid #1a4d2e;
            box-shadow: 12px 12px 0 rgba(26, 77, 46, 0.2);
        }

        /* Content Container */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Section Title */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 40px;
            color: #1a4d2e;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .section-divider {
            width: 100px;
            height: 3px;
            background: #d4a574;
            margin: 20px auto;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 40px;
            align-items: start;
            margin-bottom: 80px;
        }

        .about-photo {
            background: url('images/about.webp') center/cover;
            height: 400px;
            border: 6px solid #1a4d2e;
        }

        .about-text {
            padding: 20px;
        }

        .about-text h3 {
            font-size: 28px;
            color: #1a4d2e;
            margin-bottom: 20px;
        }

        .about-text p {
            font-size: 18px;
            margin-bottom: 15px;
            color: #4a3f2e;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .stat-box {
            text-align: center;
            padding: 25px;
            background: #e8dcc4;
            border: 2px solid #1a4d2e;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #1a4d2e;
            font-family: Arial, sans-serif;
        }

        .stat-label {
            font-size: 14px;
            color: #4a3f2e;
            margin-top: 5px;
            font-family: Arial, sans-serif;
        }

        /* Tours Section */
        .tours-section {
            margin-bottom: 80px;
        }

        .tours-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .tour-card {
            background: white;
            border: 3px solid #1a4d2e;
            overflow: hidden;
        }

        .tour-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .tour-body {
            padding: 25px;
        }

        .tour-body h3 {
            font-size: 22px;
            color: #1a4d2e;
            margin-bottom: 12px;
        }

        .tour-body p {
            font-size: 16px;
            color: #4a3f2e;
            margin-bottom: 15px;
        }

        .tour-duration {
            font-family: Arial, sans-serif;
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }

        .tour-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 2px solid #e8dcc4;
        }

        .tour-price {
            font-size: 24px;
            font-weight: 700;
            color: #1a4d2e;
            font-family: Arial, sans-serif;
        }

        .tour-book {
            background: #25d366;
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            font-family: Arial, sans-serif;
            font-size: 13px;
            font-weight: 600;
            border: 2px solid #25d366;
        }

        .tour-book:hover {
            background: #1fb855;
            border-color: #1fb855;
            color: white;
        }

        /* Airport Shuttle Section */
        .shuttle-section {
            margin-bottom: 80px;
        }

        .shuttle-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .shuttle-info h3 {
            font-size: 28px;
            color: #1a4d2e;
            margin-bottom: 20px;
        }

        .shuttle-info p {
            font-size: 18px;
            color: #4a3f2e;
            margin-bottom: 30px;
        }

        .shuttle-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .shuttle-features li {
            font-size: 16px;
            color: #4a3f2e;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .shuttle-features i {
            color: #1a4d2e;
            font-size: 18px;
        }

        .shuttle-pricing {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .price-item {
            background: white;
            border: 3px solid #1a4d2e;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price-label {
            font-size: 16px;
            color: #4a3f2e;
            font-weight: 600;
        }

        .price-amount {
            font-size: 28px;
            color: #1a4d2e;
            font-weight: 700;
            font-family: Arial, sans-serif;
        }

        .shuttle-book {
            display: inline-block;
            padding: 15px 35px;
            background: #25d366;
            color: white;
            text-decoration: none;
            font-family: Arial, sans-serif;
            font-size: 16px;
            font-weight: 600;
            border: 3px solid #25d366;
        }

        .shuttle-book:hover {
            background: #1fb855;
            border-color: #1fb855;
            color: white;
        }

        /* Mainland Safari Section */
        .safari-section {
            margin-bottom: 80px;
        }

        .safari-intro {
            max-width: 900px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .safari-intro p {
            font-size: 18px;
            color: #4a3f2e;
        }

        .safari-note {
            max-width: 900px;
            margin: 40px auto 0;
            padding: 25px;
            background: #e8dcc4;
            border: 3px solid #1a4d2e;
            text-align: center;
        }

        .safari-note p {
            font-size: 16px;
            color: #4a3f2e;
            margin: 0;
        }

        /* Gallery */
        .gallery-section {
            margin-bottom: 80px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .gallery-item {
            height: 180px;
            background-size: cover;
            background-position: center;
            border: 3px solid #1a4d2e;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        /* Features */
        .features-section {
            background: #e8dcc4;
            padding: 60px 0;
            border-top: 4px double #1a4d2e;
            border-bottom: 4px double #1a4d2e;
            margin-bottom: 80px;
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-item {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border: 3px solid #1a4d2e;
        }

        .feature-icon {
            font-size: 48px;
            color: #1a4d2e;
            margin-bottom: 15px;
        }

        .feature-item h4 {
            font-size: 18px;
            color: #1a4d2e;
            margin-bottom: 10px;
        }

        .feature-item p {
            font-size: 15px;
            color: #4a3f2e;
        }

        /* Reviews */
        .reviews-section {
            margin-bottom: 80px;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .review-card {
            background: white;
            padding: 30px;
            border: 3px solid #1a4d2e;
        }

        .stars {
            color: #d4a574;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .review-text {
            font-size: 16px;
            font-style: italic;
            color: #4a3f2e;
            margin-bottom: 20px;
        }

        .reviewer {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .reviewer-initial {
            width: 45px;
            height: 45px;
            background: #1a4d2e;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-family: Arial, sans-serif;
            border: 2px solid #d4a574;
        }

        .reviewer-name {
            font-family: Arial, sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: #1a4d2e;
        }

        .reviewer-date {
            font-family: Arial, sans-serif;
            font-size: 12px;
            color: #666;
        }

        .all-reviews-link {
            text-align: center;
        }

        .all-reviews-link a {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: #1a4d2e;
            border: 2px solid #1a4d2e;
            text-decoration: none;
            font-family: Arial, sans-serif;
            font-size: 14px;
            font-weight: 600;
        }

        .all-reviews-link a:hover {
            background: #1a4d2e;
            color: white;
        }

        /* FAQ */
        .faq-section {
            margin-bottom: 80px;
        }

        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border: 3px solid #1a4d2e;
            margin-bottom: 15px;
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            color: #1a4d2e;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            background: #f5f1e8;
        }

        .faq-answer {
            padding: 0 25px 20px;
            font-size: 16px;
            color: #4a3f2e;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-icon {
            transition: transform 0.3s;
            color: #d4a574;
        }

        /* Final CTA */
        .final-cta {
            background: #1a4d2e;
            padding: 80px 20px;
            text-align: center;
            border-top: 4px solid #d4a574;
        }

        .final-cta h2 {
            font-size: 42px;
            color: #f5f1e8;
            margin-bottom: 20px;
        }

        .final-cta p {
            font-size: 20px;
            color: #e8dcc4;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .cta-buttons a {
            display: inline-block;
            padding: 15px 35px;
            text-decoration: none;
            font-family: Arial, sans-serif;
            font-size: 16px;
            font-weight: 600;
            border: 3px solid;
        }

        .cta-wa {
            background: #25d366;
            color: white;
            border-color: #25d366;
        }

        .cta-wa:hover {
            background: #1fb855;
            border-color: #1fb855;
        }

        .cta-phone {
            background: white;
            color: #1a4d2e;
            border-color: #d4a574;
        }

        .cta-phone:hover {
            background: #d4a574;
        }

        /* Floating WhatsApp */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            text-decoration: none;
            border: 3px solid white;
        }

        .whatsapp-float:hover {
            background: #1fb855;
            color: white;
            transform: scale(1.1);
        }

        /* Footer */
        .site-footer {
            background: #1a4d2e;
            color: #e8dcc4;
            padding: 60px 0 0;
            border-top: 4px solid #d4a574;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 40px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-column h4 {
            font-size: 18px;
            color: #d4a574;
            margin-bottom: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-column p {
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
        }

        .footer-column ul li {
            margin-bottom: 12px;
            font-size: 15px;
        }

        .footer-column ul li a {
            color: #e8dcc4;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: #d4a574;
        }

        .contact-info li {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-info i {
            color: #d4a574;
            width: 20px;
        }

        .footer-bottom {
            background: #15402a;
            padding: 25px 20px;
            text-align: center;
            border-top: 2px solid #d4a574;
        }

        .footer-bottom p {
            margin: 5px 0;
            font-size: 14px;
            font-family: Arial, sans-serif;
        }

        @media (max-width: 768px) {
            .hero-inner {
                grid-template-columns: 1fr;
            }

            .shuttle-pricing {
                grid-template-columns: 1fr;
            }

            .price-item {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 32px;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .tours-grid,
            .reviews-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-row {
                grid-template-columns: 1fr;
            }

            .header-content {
                flex-direction: column;
                gap: 15px;
            }

            .contact-buttons a {
                margin: 0 5px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }