* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #faf0f5;
            color: #2d3748;
            padding-bottom: 80px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background-color: #2d3748;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 32px;
            font-weight: 900;
            color: #ff6b35;
            text-decoration: none;
            letter-spacing: 0.8px;
            text-shadow: 0 3px 5px rgba(0,0,0,0.25);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .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: 17px;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #ff6b35;
            transform: translateY(-2px);
        }
        .daman-link {
            background-color: #ff6b35;
            padding: 12px 24px;
            border-radius: 10px;
            color: #2d3748 !important;
            font-weight: 700;
            box-shadow: 0 5px 8px rgba(255, 107, 53, 0.35);
        }
        .daman-link:hover {
            background-color: #e85a2e;
            transform: translateY(-3px);
            box-shadow: 0 7px 12px rgba(255, 107, 53, 0.45);
        }
        .menu-toggle {
            display: none;
            font-size: 32px;
            color: #ffffff;
            cursor: pointer;
            z-index: 1001;
        }
        .hero {
            padding: 80px 0 50px;
            text-align: center;
            background: linear-gradient(135deg, #faf0f5 0%, #fdf2f8 100%);
            border-radius: 0 0 40px 40px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "🏍️";
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 80px;
            opacity: 0.1;
            transform: rotate(-15deg);
        }
        .hero::after {
            content: "🏍️";
            position: absolute;
            bottom: 20px;
            right: 20px;
            font-size: 80px;
            opacity: 0.1;
            transform: rotate(15deg);
        }
        h1 {
            font-size: 48px;
            color: #2d3748;
            margin-bottom: 30px;
            font-weight: 900;
            line-height: 1.5;
            text-transform: capitalize;
        }
        h1 span {
            color: #ff6b35;
        }
        .hero p {
            font-size: 21px;
            color: #4a5568;
            max-width: 950px;
            margin: 0 auto 40px;
            font-weight: 400;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 18px 40px;
            border-radius: 15px;
            font-size: 20px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.12);
            text-transform: capitalize;
        }
        .download-btn {
            background-color: #22c55e;
            color: white;
        }
        .download-btn:hover {
            background-color: #16a34a;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
        }
        .login-btn {
            background-color: #3b82f6;
            color: white;
        }
        .login-btn:hover {
            background-color: #2563eb;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
        }
        section {
            margin: 80px 0;
            padding: 20px;
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.08);
        }
        h2 {
            font-size: 36px;
            color: #2d3748;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 4px solid #ff6b35;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 20px;
            text-transform: capitalize;
        }
        h2 emoji {
            font-size: 42px;
        }
        h3 {
            font-size: 28px;
            color: #2d3748;
            margin: 50px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
            text-transform: capitalize;
        }
        h3 emoji {
            font-size: 34px;
        }
        h4 {
            font-size: 24px;
            color: #4a5568;
            margin: 35px 0 20px;
            font-weight: 600;
            text-transform: capitalize;
        }
        p {
            margin-bottom: 30px;
            font-size: 18px;
            color: #4a5568;
            text-align: justify;
        }
        .highlight {
            font-weight: 800;
            color: #dc2626;
            font-size: 19px;
        }
        .keyword {
            font-weight: 900;
            color: #2d3748;
            font-size: 20px;
            text-decoration: underline;
            text-underline-offset: 4px;
            text-decoration-color: #ff6b35;
        }
        .img-container {
            margin: 50px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.18);
            transition: transform 0.4s ease;
            border: 4px solid #f8f9fa;
        }
        img:hover {
            transform: scale(1.03);
        }
        .img-caption {
            font-size: 17px;
            color: #6b7280;
            margin-top: 20px;
            font-style: italic;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        ul, ol {
            margin: 30px 0 40px 50px;
        }
        li {
            margin-bottom: 20px;
            font-size: 18px;
            color: #4a5568;
            position: relative;
            padding-left: 10px;
        }
        ul li::before {
            content: "🏍️";
            position: absolute;
            left: -40px;
            top: 2px;
            font-size: 20px;
        }
        ol li {
            counter-increment: item;
        }
        ol li::before {
            content: counter(item) ". ";
            font-weight: 800;
            color: #ff6b35;
            font-size: 19px;
        }
        .localization-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            margin: 50px 0;
        }
        .localization-card {
            background-color: #fef7fb;
            padding: 30px;
            border-radius: 18px;
            box-shadow: 0 7px 20px rgba(0,0,0,0.09);
            border-top: 5px solid #3b82f6;
            transition: transform 0.3s ease;
        }
        .localization-card:hover {
            transform: translateY(-5px);
        }
        .localization-card h4 {
            font-size: 22px;
            color: #2d3748;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .event-card {
            background-color: #f8fafc;
            padding: 35px;
            border-radius: 18px;
            margin-bottom: 40px;
            box-shadow: 0 7px 20px rgba(0,0,0,0.09);
            border-left: 6px solid #ff6b35;
            transition: transform 0.3s ease;
        }
        .event-card:hover {
            transform: translateX(5px);
        }
        .event-card h4 {
            font-size: 24px;
            color: #2d3748;
            margin-bottom: 15px;
        }
        .event-date {
            color: #6b7280;
            font-style: italic;
            margin-bottom: 25px;
            display: block;
            font-size: 18px;
            font-weight: 500;
        }
        .review-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .review-card {
            background-color: #f5fafe;
            padding: 30px;
            border-radius: 18px;
            box-shadow: 0 7px 20px rgba(0,0,0,0.09);
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: translateY(-5px);
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        .reviewer-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-right: 20px;
            object-fit: cover;
            border: 4px solid #ff6b35;
            box-shadow: 0 3px 8px rgba(0,0,0,0.15);
        }
        .reviewer-details {
            flex: 1;
        }
        .reviewer-name {
            font-weight: 700;
            color: #2d3748;
            font-size: 20px;
        }
        .reviewer-location {
            color: #6b7280;
            font-size: 16px;
            margin-top: 5px;
            font-style: italic;
        }
        .review-rating {
            color: #ff6b35;
            margin-bottom: 20px;
            font-size: 24px;
        }
        .guide-tip {
            background-color: #f0f9ff;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            border-left: 6px solid #3b82f6;
        }
        .guide-tip h4 {
            color: #2d3748;
            margin-bottom: 20px;
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .tabs-container {
            margin: 60px 0;
        }
        .tab-title {
            font-size: 26px;
            color: #2d3748;
            margin-bottom: 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tabs a {
            display: inline-block;
            color: #4a5568;
            background-color: #f8fafc;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .tabs a:hover {
            color: white;
            background-color: #ff6b35;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255, 107, 53, 0.25);
        }
        .footer {
            background-color: #2d3748;
            color: white;
            padding: 80px 0 40px;
            margin-top: 120px;
            border-radius: 40px 40px 0 0;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }
        .footer-section h3 {
            color: #ff6b35;
            margin-bottom: 30px;
            font-size: 24px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(255,255,255,0.15);
        }
        .recommendation {
            font-size: 19px;
            color: #e2e8f0;
            margin-top: 40px;
            line-height: 2.0;
            text-align: justify;
        }
        .recommendation strong {
            color: #ff6b35;
            font-size: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.15);
            color: #a0aec0;
            font-size: 17px;
            line-height: 1.8;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 30px;
            }
            h1 {
                font-size: 42px;
            }
            h2 {
                font-size: 32px;
            }
            h3 {
                font-size: 26px;
            }
            .review-container {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background-color: #2d3748;
                padding: 40px 30px;
                gap: 25px;
                border-radius: 0 0 25px 25px;
                box-shadow: 0 15px 20px rgba(0,0,0,0.25);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 36px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 24px;
            }
            h4 {
                font-size: 22px;
            }
            .btn {
                padding: 16px 32px;
                font-size: 18px;
                width: 100%;
                justify-content: center;
            }
            .review-container {
                grid-template-columns: 1fr;
            }
            .localization-grid {
                grid-template-columns: 1fr;
            }
            ul, ol {
                margin-left: 40px;
            }
            .hero {
                padding: 60px 0 40px;
            }
            section {
                margin: 60px 0;
                padding: 15px;
            }
            .footer-container {
                gap: 40px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 28px;
            }
            h1 {
                font-size: 30px;
            }
            .hero p {
                font-size: 19px;
            }
            .btn {
                padding: 14px 28px;
                font-size: 17px;
            }
            ul, ol {
                margin-left: 35px;
            }
            .reviewer-avatar {
                width: 60px;
                height: 60px;
            }
        }
