* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #f5f5f5;
            color: #2c3e50;
            padding-bottom: 80px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background-color: #1a237e;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 12px rgba(0,0,0,0.2);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 36px;
            font-weight: 900;
            color: #ffd600;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 0 3px 6px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo span {
            color: #ffffff;
        }
        .nav-links {
            display: flex;
            gap: 40px;
        }
        .nav-links a {
            color: #f8f9fa;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 18px;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #ffd600;
            transform: translateY(-2px);
        }
        .daman-link {
            background-color: #ffd600;
            padding: 12px 24px;
            border-radius: 12px;
            color: #1a237e !important;
            font-weight: 700;
            box-shadow: 0 5px 8px rgba(255, 214, 0, 0.4);
        }
        .daman-link:hover {
            background-color: #ffc107;
            transform: translateY(-3px);
            box-shadow: 0 7px 12px rgba(255, 214, 0, 0.5);
        }
        .menu-toggle {
            display: none;
            font-size: 34px;
            color: #ffffff;
            cursor: pointer;
            z-index: 1001;
        }
        .hero {
            padding: 90px 0 60px;
            text-align: center;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
            border-radius: 0 0 50px 50px;
            margin-bottom: 70px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "🦏";
            position: absolute;
            top: 30px;
            left: 30px;
            font-size: 90px;
            opacity: 0.12;
            transform: rotate(-20deg);
        }
        .hero::after {
            content: "🦏";
            position: absolute;
            bottom: 30px;
            right: 30px;
            font-size: 90px;
            opacity: 0.12;
            transform: rotate(20deg);
        }
        h1 {
            font-size: 52px;
            color: #1a237e;
            margin-bottom: 35px;
            font-weight: 900;
            line-height: 1.6;
            text-transform: capitalize;
        }
        h1 span {
            color: #ffd600;
        }
        .hero p {
            font-size: 22px;
            color: #34495e;
            max-width: 1000px;
            margin: 0 auto 45px;
            font-weight: 400;
        }
        .btn-container {
            text-align: center;
            margin: 60px 0;
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 45px;
            border-radius: 18px;
            font-size: 22px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 8px 18px rgba(0,0,0,0.15);
            text-transform: capitalize;
        }
        .download-btn {
            background-color: #2ecc71;
            color: white;
        }
        .download-btn:hover {
            background-color: #27ae60;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(46, 204, 113, 0.4);
        }
        .login-btn {
            background-color: #3498db;
            color: white;
        }
        .login-btn:hover {
            background-color: #2980b9;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
        }
        section {
            margin: 90px 0;
            padding: 30px;
            background-color: white;
            border-radius: 25px;
            box-shadow: 0 8px 22px rgba(0,0,0,0.09);
        }
        h2 {
            font-size: 38px;
            color: #1a237e;
            margin-bottom: 45px;
            padding-bottom: 25px;
            border-bottom: 5px solid #ffd600;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 25px;
            text-transform: capitalize;
        }
        h2 emoji {
            font-size: 48px;
        }
        h3 {
            font-size: 30px;
            color: #1a237e;
            margin: 60px 0 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 18px;
            text-transform: capitalize;
        }
        h3 emoji {
            font-size: 38px;
        }
        h4 {
            font-size: 26px;
            color: #2c3e50;
            margin: 40px 0 25px;
            font-weight: 600;
            text-transform: capitalize;
        }
        p {
            margin-bottom: 35px;
            font-size: 19px;
            color: #34495e;
            text-align: justify;
        }
        .highlight {
            font-weight: 800;
            color: #e74c3c;
            font-size: 20px;
        }
        .keyword {
            font-weight: 900;
            color: #1a237e;
            font-size: 21px;
            text-decoration: underline;
            text-underline-offset: 5px;
            text-decoration-color: #ffd600;
        }
        .img-container {
            margin: 60px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 25px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
            transition: transform 0.4s ease;
            border: 5px solid #f8f9fa;
        }
        img:hover {
            transform: scale(1.04);
        }
        .img-caption {
            font-size: 18px;
            color: #7f8c8d;
            margin-top: 25px;
            font-style: italic;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        ul, ol {
            margin: 35px 0 45px 60px;
        }
        li {
            margin-bottom: 25px;
            font-size: 19px;
            color: #34495e;
            position: relative;
            padding-left: 15px;
        }
        ul li::before {
            content: "🦏";
            position: absolute;
            left: -45px;
            top: 2px;
            font-size: 22px;
        }
        ol li {
            counter-increment: item;
        }
        ol li::before {
            content: counter(item) ". ";
            font-weight: 800;
            color: #ffd600;
            font-size: 20px;
        }
        .localization-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }
        .localization-card {
            background-color: #f0f8fb;
            padding: 35px;
            border-radius: 22px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-top: 6px solid #3498db;
            transition: transform 0.3s ease;
        }
        .localization-card:hover {
            transform: translateY(-6px);
        }
        .localization-card h4 {
            font-size: 24px;
            color: #1a237e;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .event-card {
            background-color: #fefefe;
            padding: 40px;
            border-radius: 22px;
            margin-bottom: 45px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-left: 7px solid #ffd600;
            transition: transform 0.3s ease;
        }
        .event-card:hover {
            transform: translateX(7px);
        }
        .event-card h4 {
            font-size: 26px;
            color: #1a237e;
            margin-bottom: 20px;
        }
        .event-date {
            color: #7f8c8d;
            font-style: italic;
            margin-bottom: 30px;
            display: block;
            font-size: 19px;
            font-weight: 500;
        }
        .review-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 35px;
            margin: 60px 0;
        }
        .review-card {
            background-color: #f5fafe;
            padding: 35px;
            border-radius: 22px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: translateY(-6px);
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        .reviewer-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-right: 25px;
            object-fit: cover;
            border: 5px solid #ffd600;
            box-shadow: 0 4px 10px rgba(0,0,0,0.18);
        }
        .reviewer-details {
            flex: 1;
        }
        .reviewer-name {
            font-weight: 700;
            color: #1a237e;
            font-size: 22px;
        }
        .reviewer-location {
            color: #7f8c8d;
            font-size: 17px;
            margin-top: 7px;
            font-style: italic;
        }
        .review-rating {
            color: #ffd600;
            margin-bottom: 25px;
            font-size: 28px;
        }
        .guide-tip {
            background-color: #e8f5e9;
            padding: 35px;
            border-radius: 20px;
            margin: 45px 0;
            border-left: 7px solid #2ecc71;
        }
        .guide-tip h4 {
            color: #1a237e;
            margin-bottom: 25px;
            font-size: 24px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .tabs-container {
            margin: 70px 0;
        }
        .tab-title {
            font-size: 28px;
            color: #1a237e;
            margin-bottom: 35px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .tabs a {
            display: inline-block;
            color: #34495e;
            background-color: #f8f9fa;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
        }
        .tabs a:hover {
            color: white;
            background-color: #1a237e;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(26, 35, 126, 0.3);
        }
        .footer {
            background-color: #1a237e;
            color: white;
            padding: 90px 0 50px;
            margin-top: 130px;
            border-radius: 50px 50px 0 0;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 70px;
            margin-bottom: 70px;
        }
        .footer-section h3 {
            color: #ffd600;
            margin-bottom: 35px;
            font-size: 26px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(255,255,255,0.2);
        }
        .recommendation {
            font-size: 20px;
            color: #e3f2fd;
            margin-top: 50px;
            line-height: 2.2;
            text-align: justify;
        }
        .recommendation strong {
            color: #ffd600;
            font-size: 21px;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.2);
            color: #bbdefb;
            font-size: 18px;
            line-height: 2;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 35px;
            }
            h1 {
                font-size: 46px;
            }
            h2 {
                font-size: 34px;
            }
            h3 {
                font-size: 28px;
            }
            .review-container {
                grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100px;
                left: 0;
                right: 0;
                background-color: #1a237e;
                padding: 45px 35px;
                gap: 30px;
                border-radius: 0 0 30px 30px;
                box-shadow: 0 20px 25px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 40px;
            }
            h2 {
                font-size: 30px;
            }
            h3 {
                font-size: 26px;
            }
            h4 {
                font-size: 24px;
            }
            .btn {
                padding: 18px 38px;
                font-size: 20px;
                width: 100%;
                justify-content: center;
            }
            .review-container {
                grid-template-columns: 1fr;
            }
            .localization-grid {
                grid-template-columns: 1fr;
            }
            ul, ol {
                margin-left: 50px;
            }
            .hero {
                padding: 70px 0 50px;
            }
            section {
                margin: 70px 0;
                padding: 25px;
            }
            .footer-container {
                gap: 50px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 32px;
            }
            h1 {
                font-size: 34px;
            }
            .hero p {
                font-size: 20px;
            }
            .btn {
                padding: 16px 32px;
                font-size: 19px;
            }
            ul, ol {
                margin-left: 40px;
            }
            .reviewer-avatar {
                width: 70px;
                height: 70px;
            }
        }
