* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Top Banner */
.top-banner {
    background-color: #5a6c7d;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-banner p {
    text-align: center;
}

.banner-link {
    color: #ffc72c;
    text-decoration: underline;
}

.banner-link:hover {
    text-decoration: none;
}

/* Main Header */
.main-header {
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-item {
    position: relative;
}

.nav-button, .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: none;
    border: none;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.nav-button:hover, .nav-link:hover {
    background-color: #f0f0f0;
}

.dropdown-icon, .download-icon {
    color: #666;
}

.currency .flag {
    font-size: 16px;
}

.support-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.support-button:hover {
    background-color: #f0f0f0;
}

.signin-button {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.signin-button:hover {
    background-color: #0052a3;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 2000;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 18px;
    font-weight: 600;
}

.close-button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #ffffff;
}

.mobile-nav-content {
    padding: 16px;
}

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}
.nav-item a{
  text-decoration: none;
}

.mobile-nav-button, .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
}

.mobile-nav-button:hover, .mobile-nav-link:hover {
    color: #0066cc;
}

.mobile-signin-button {
    width: 100%;
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
}

.mobile-signin-button:hover {
    background-color: #0052a3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .top-banner {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .header-content {
        padding: 8px 0;
    }
    
    .logo svg {
        width: 100px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .top-banner p {
        font-size: 11px;
    }
    
    .logo svg {
        width: 90px;
        height: 24px;
    }
}

/* Overlay for mobile menu */
.mobile-nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}



/* =======================
header
===================== */




        .travel-booking-container {
            max-width: 1200px;
            margin: 70px auto;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .tab-navigation {
            display: flex;
            border-bottom: 1px solid #e0e0e0;
            margin-bottom: 30px;
            overflow-x: auto;
        }

        .tab-button {
            background: none;
            border: none;
            padding: 15px 20px;
            font-size: 16px;
            font-weight: 500;
            color: #666;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .tab-button.active {
            color: #1976d2;
            border-bottom-color: #1976d2;
        }

        .tab-button:hover {
            color: #1976d2;
        }

        .form-container {
            display: none;
        }

        .form-container.active {
            display: block;
        }

        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .form-group {
            flex: 1;
            min-width: 200px;
            position: relative;
        }

        .form-group.full-width {
            flex: 100%;
        }

        .form-group.half-width {
            flex: 0 0 calc(50% - 7.5px);
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px 16px;
            transition: border-color 0.3s ease;
            cursor: pointer;
            overflow: hidden;
        }

        .input-wrapper:focus-within {
            border-color: #1976d2;
        }

        .input-wrapper.active {
            border-color: #1976d2;
        }

        .input-icon {
            margin-right: 12px;
            color: #666;
            font-size: 18px;
        }

        .form-input {
            border: none;
            outline: none;
            font-size: 16px;
            flex: 1;
            background: transparent;
            cursor: pointer;
        }

        .form-input::placeholder {
            color: #999;
        }

        .swap-button {
            background: #f5f5f5;
            border: 2px solid #e0e0e0;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0 10px;
            align-self: center;
        }

        .swap-button:hover {
            background: #e3f2fd;
            border-color: #1976d2;
        }

        .search-button {
            background: #1976d2;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            align-self: center;
        }

        .search-button:hover {
            background: #1565c0;
        }

        .sub-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .sub-tab-button {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            padding: 8px 16px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .sub-tab-button.active {
            background: #1976d2;
            color: white;
            border-color: #1976d2;
        }

        .dropdown-select {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            padding: 8px 16px;
            font-size: 14px;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 8px center;
            background-repeat: no-repeat;
            background-size: 16px;
            padding-right: 32px;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
        }

        .checkbox-input {
            width: 18px;
            height: 18px;
            accent-color: #1976d2;
        }

        .checkbox-label {
            font-size: 14px;
            color: #666;
        }

        .result-list {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            z-index: 1000;
            max-height: 300px;
            overflow-y: auto;
            display: none;
        }

        .result-list li {
            list-style: none;
            padding: 12px 16px;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .result-list li:hover {
            background: #f5f5f5;
        }

        .result-list li.category {
            background: #f8f9fa;
            font-weight: 600;
            color: #666;
            cursor: default;
        }

        .result-list .icon {
            width: 15px;
            height: 15px;
        }

        /* Date Picker Styles */
        .date-picker-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            z-index: 1000;
            display: none;
            padding: 20px;
        }

        .date-picker-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .date-picker-nav {
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            padding: 5px;
            border-radius: 4px;
        }

        .date-picker-nav:hover {
            background: #f5f5f5;
        }

        .date-picker-month {
            font-weight: 600;
            font-size: 16px;
        }

        .date-picker-calendar {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 2px;
            margin-bottom: 15px;
        }

        .date-picker-day {
            padding: 8px;
            text-align: center;
            cursor: pointer;
            border-radius: 4px;
            font-size: 14px;
        }

        .date-picker-day.header {
            font-weight: 600;
            color: #666;
            cursor: default;
        }

        .date-picker-day:hover:not(.header):not(.disabled) {
            background: #e3f2fd;
        }

        .date-picker-day.selected {
            background: #1976d2;
            color: white;
        }

        .date-picker-day.range {
            background: #e3f2fd;
        }

        .date-picker-day.disabled {
            color: #ccc;
            cursor: not-allowed;
        }

        .date-picker-actions {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        .date-picker-btn {
            padding: 8px 16px;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            background: white;
            cursor: pointer;
            font-size: 14px;
        }

        .date-picker-btn.primary {
            background: #1976d2;
            color: white;
            border-color: #1976d2;
        }

        /* Passenger Selector Styles */
        .passenger-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            z-index: 1000;
            display: none;
            padding: 20px;
            min-width: 300px;
        }

        .passenger-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .passenger-row:last-child {
            border-bottom: none;
        }

        .passenger-info {
            flex: 1;
        }

        .passenger-label {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .passenger-description {
            font-size: 12px;
            color: #666;
        }

        .passenger-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .passenger-btn {
            width: 32px;
            height: 32px;
            border: 1px solid #e0e0e0;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 600;
        }

        .passenger-btn:hover {
            background: #f5f5f5;
        }

        .passenger-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .passenger-count {
            font-weight: 600;
            min-width: 20px;
            text-align: center;
        }

        .passenger-actions {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }

        .driver-age-section {
            margin-top: 20px;
        }

        .driver-age-title {
            font-weight: 600;
            margin-bottom: 10px;
        }

        .driver-age-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }

        .age-input-group {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .age-input {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 8px 12px;
            width: 100px;
            font-size: 14px;
        }

        .discount-dropdown {
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .travel-booking-container {
                margin: 10px;
                padding: 15px;
            }

            .form-row {
                flex-direction: column;
            }

            .form-group {
                min-width: 100%;
            }

            .form-group.half-width {
                flex: 100%;
            }

            .swap-button {
                align-self: stretch;
                width: 100%;
                border-radius: 8px;
                margin: 10px 0;
            }

            .tab-navigation {
                justify-content: flex-start;
            }

            .sub-tabs {
                flex-direction: column;
            }

            .sub-tab-button {
                text-align: center;
            }

            .date-picker-dropdown,
            .passenger-dropdown {
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 90%;
                max-width: 400px;
            }
        }

        @media (max-width: 480px) {
            .tab-button {
                padding: 12px 15px;
                font-size: 14px;
            }

            .input-wrapper {
                padding: 10px 12px;
            }

            .form-input {
                font-size: 14px;
            }

            .search-button {
                padding: 12px 20px;
                font-size: 14px;
            }
        }







        /* ==================
        form
        ================ */















.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Membership Banner */
.membership-banner {
    background-color: #2c3e50;
    color: white;
    padding: 12px 0;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}

.banner-icon svg {
    flex-shrink: 0;
}

.register-btn {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.register-btn:hover {
    background-color: #0052a3;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 48px;
}

.hero-image {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 16px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    display: flex;
    align-items: center;
    padding: 48px;
}

.promo-card {
    background-color: #ffc72c;
    padding: 32px;
    border-radius: 12px;
    max-width: 500px;
    color: #333;
}

.promo-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.promo-card p {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.cta-button {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #1a252f;
}

/* Accommodation Types */
.accommodation-types {
    padding: 48px 0;
}

.accommodation-types h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2c3e50;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.accommodation-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

.accommodation-card:hover {
    transform: translateY(-4px);
}

.accommodation-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

/* Popular Destinations */
.popular-destinations {
    padding: 48px 0;
    background-color: #f8f9fa;
}

.popular-destinations h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.subtitle {
    color: #666;
    margin-bottom: 32px;
    font-size: 14px;
}

.destination-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.tab-button {
    background: none;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    color: #666;
}

.tab-button.active {
    background-color: #0066cc;
    color: white;
}

.tab-button:hover:not(.active) {
    background-color: #e9ecef;
}

.destinations-carousel {
    position: relative;
}

.destinations-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 16px;
}

.destination-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.destination-card:hover {
    transform: translateY(-4px);
}

.destination-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.destination-info {
    padding: 16px;
}

.destination-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.destination-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.price-detail {
    font-size: 12px;
    color: #666;
}

/* Promotional Cards */
.promotional-cards {
    padding: 48px 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 16px;
}

.promo-card-item {
    background-color: #ffc72c;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    transition: transform 0.2s;
}

.promo-card-item:hover {
    transform: translateY(-2px);
}

.promo-content {
    flex: 1;
}

.promo-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c3e50;
}

.promo-btn {
    background: none;
    border: none;
    color: #2c3e50;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.promo-card-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

/* Save Section */
.save-section {
    padding: 48px 0;
    background-color: #f8f9fa;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.view-more-btn {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.view-more-btn:hover {
    background-color: #0052a3;
}

.hotels-carousel {
    position: relative;
}

.hotels-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 16px;
}

.hotel-card {
    flex: 0 0 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.hotel-card:hover {
    transform: translateY(-4px);
}

.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-rating {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
}

.rating-score {
    background-color: #28a745;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.hotel-info {
    padding: 16px;
}

.hotel-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.hotel-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.price-info {
    margin-bottom: 12px;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-right: 8px;
}

.original-price {
    font-size: 16px;
    color: #666;
    text-decoration: line-through;
}

.price-detail {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.member-badge {
    background-color: #ffc72c;
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.member-badge::before {
    content: "🏷️";
}

/* Unique Accommodations */
.unique-accommodations {
    padding: 48px 0;
}

.unique-accommodations h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.unique-carousel {
    position: relative;
}

.unique-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 16px;
}

.unique-card {
    flex: 0 0 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.unique-card:hover {
    transform: translateY(-4px);
}

.unique-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.discount-badge {
    background-color: #28a745;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Travel World */
.travel-world {
    padding: 48px 0;
    background-color: #f8f9fa;
}

.travel-world h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2c3e50;
}

.travel-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.travel-tab {
    background: none;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    color: #666;
    border: 1px solid #ddd;
}

.travel-tab.active {
    background-color: #0066cc;
    color: white;
    border-color: #0066cc;
}

.travel-tab:hover:not(.active) {
    background-color: #e9ecef;
}

.travel-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.links-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.links-column a {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
}

.links-column a:hover {
    text-decoration: underline;
}

/* Mobile App */
.mobile-app {
    padding: 48px 0;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
}

.app-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.app-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.app-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #666;
}

.qr-section {
    display: flex;
    align-items: center;
    gap: 24px;
}

.qr-section p {
    flex: 1;
    margin: 0;
    font-weight: 600;
}

.qr-code img {
    width: 120px;
    height: 120px;
    border: 2px solid #ddd;
    border-radius: 8px;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #666;
    z-index: 10;
    transition: all 0.2s;
}

.carousel-btn:hover {
    background-color: #f8f9fa;
    border-color: #999;
}

.carousel-btn.prev {
    left: -20px;
}

.carousel-btn.next {
    right: -20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-overlay {
        padding: 24px;
    }
    
    .promo-card {
        padding: 24px;
    }
    
    .promo-card h2 {
        font-size: 24px;
    }
    
    .accommodation-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-card-item {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .qr-section {
        flex-direction: column;
        text-align: center;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .destinations-grid,
    .hotels-grid,
    .unique-grid {
        scroll-snap-type: x mandatory;
    }
    
    .destination-card,
    .hotel-card,
    .unique-card {
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-image {
        margin: 16px 8px;
        height: 400px;
    }
    
    .accommodation-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .accommodation-card img {
        height: 150px;
    }
    
    .destination-card,
    .hotel-card,
    .unique-card {
        flex: 0 0 260px;
    }
}






















/* ===============================
footer css :start
============================= */



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Footer Styles */
.expedia-footer {
  background-color: #f8f9fa;
  padding: 48px 0 24px;
  border-top: 1px solid #e0e0e0;
  margin-top: 48px;
}

.footer-logo {
  margin-bottom: 40px;
}

.footer-logo svg text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.4;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  line-height: 1.4;
}

.footer-links a {
  color: #0066cc;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #0052a3;
  text-decoration: underline;
}
.payment-info a{
  color: #333;
  text-decoration: none;
}
/* Payment Information */
.payment-info {
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}

.payment-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  text-align: center;
}

/* Certification Section */
.certification-section {
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}

.certification-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cert-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.cert-logo:hover {
  opacity: 1;
}

.cert-logo img {
  max-height: 40px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.2s ease;
}

.cert-logo:hover img {
  filter: grayscale(0%);
}

/* Copyright */
.footer-copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.footer-copyright p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .certification-logos {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .expedia-footer {
    padding: 32px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-logo {
    margin-bottom: 32px;
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .certification-logos {
    gap: 16px;
    justify-content: center;
  }

  .cert-logo img {
    max-height: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-heading {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .payment-info p {
    font-size: 13px;
  }

  .footer-copyright p {
    font-size: 11px;
  }

  .certification-logos {
    flex-direction: column;
    gap: 12px;
  }

  .cert-logo img {
    max-height: 28px;
  }
}

/* Hover Effects */
.footer-links a {
  position: relative;
  transition: all 0.2s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #0066cc;
  transition: width 0.2s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Focus States for Accessibility */
.footer-links a:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Print Styles */
@media print {
  .expedia-footer {
    background-color: white !important;
    color: black !important;
  }

  .footer-links a {
    color: black !important;
    text-decoration: underline !important;
  }

  .certification-logos {
    display: none;
  }
}

























* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

.privacy-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
}

/* Navigation Sidebar */
.privacy-nav {
  width: 300px;
  background-color: #f8f9fa;
  padding: 24px 16px;
  border-right: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-link {
  color: #0066cc;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: block;
}

.nav-link:hover {
  background-color: #e3f2fd;
  color: #0052a3;
}

.nav-link:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

/* Main Content */
.privacy-content {
  flex: 1;
  padding: 32px 40px;
  max-width: calc(100% - 300px);
}

/* Header Section */
.privacy-header {
  margin-bottom: 48px;
}

.privacy-header h1 {
  font-size: 32px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
  line-height: 1.2;
}

.last-updated {
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
}

.intro-section {
  margin-bottom: 32px;
}

.intro-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.summary-section {
  background-color: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #0066cc;
}

.summary-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
}

.summary-section p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
}

.summary-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.summary-section li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.5;
}

/* Content Sections */
.content-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}

.content-section:last-child {
  border-bottom: none;
}

.content-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 24px;
  line-height: 1.3;
}

.content-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
  margin-top: 24px;
  line-height: 1.4;
}

.content-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #333;
}

.content-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.content-section li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.content-section ul ul {
  margin: 8px 0;
  padding-left: 20px;
}

.content-section ul ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* Data Categories */
.data-category {
  background-color: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
  border-left: 4px solid #28a745;
}

.data-category h3 {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 0;
}

.data-category ul {
  margin: 0;
  padding-left: 20px;
}

.data-category li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}

/* Legal Basis List */
.legal-basis-list {
  background-color: #fff3cd;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
  margin: 20px 0;
}

.legal-basis-list li {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
}

.legal-basis-list li strong {
  color: #2c3e50;
  font-weight: 600;
}

/* Links */
.link-blue {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.link-blue:hover {
  color: #0052a3;
  text-decoration: underline;
}

.link-blue:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .privacy-container {
    flex-direction: column;
  }

  .privacy-nav {
    width: 100%;
    height: auto;
    position: static;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .privacy-content {
    max-width: 100%;
    padding: 24px 20px;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }

  .nav-link {
    font-size: 13px;
    padding: 6px 10px;
  }
}

@media (max-width: 768px) {
  .privacy-header h1 {
    font-size: 28px;
  }

  .content-section h2 {
    font-size: 24px;
  }

  .content-section h3 {
    font-size: 18px;
  }

  .privacy-content {
    padding: 16px;
  }

  .summary-section {
    padding: 16px;
  }

  .data-category {
    padding: 16px;
  }

  .legal-basis-list {
    padding: 16px;
  }

  .nav-links {
    flex-direction: column;
  }

  .privacy-nav {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .privacy-header h1 {
    font-size: 24px;
  }

  .content-section h2 {
    font-size: 20px;
  }

  .content-section h3 {
    font-size: 16px;
  }

  .content-section p,
  .content-section li {
    font-size: 14px;
  }

  .summary-section p,
  .summary-section li {
    font-size: 14px;
  }

  .nav-link {
    font-size: 12px;
    padding: 8px;
  }
}

/* Print Styles */
@media print {
  .privacy-nav {
    display: none;
  }

  .privacy-container {
    flex-direction: column;
  }

  .privacy-content {
    max-width: 100%;
    padding: 0;
  }

  .link-blue {
    color: black !important;
    text-decoration: underline !important;
  }

  .data-category,
  .legal-basis-list,
  .summary-section {
    background-color: white !important;
    border: 1px solid #ccc !important;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .nav-link {
    border: 1px solid transparent;
  }

  .nav-link:hover,
  .nav-link:focus {
    border-color: #0066cc;
  }

  .data-category,
  .legal-basis-list,
  .summary-section {
    border: 2px solid #333;
  }
}

/* Focus Management */
.content-section:target {
  scroll-margin-top: 20px;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Styles */
::selection {
  background-color: #e3f2fd;
  color: #0052a3;
}

::-moz-selection {
  background-color: #e3f2fd;
  color: #0052a3;
}










* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

.terms-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
}

/* Navigation Sidebar */
.terms-nav {
  width: 300px;
  background-color: #f8f9fa;
  padding: 24px 16px;
  border-right: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-link {
  color: #0066cc;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: block;
}

.nav-link:hover {
  background-color: #e3f2fd;
  color: #0052a3;
}

.nav-link:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

/* Main Content */
.terms-content {
  flex: 1;
  padding: 32px 40px;
  max-width: calc(100% - 300px);
}

/* Header Section */
.terms-header {
  margin-bottom: 48px;
}

.terms-header h1 {
  font-size: 32px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
  line-height: 1.2;
}

.last-updated {
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
}

.intro-section {
  margin-bottom: 32px;
}

.intro-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}

.intro-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.intro-section li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

/* Definitions Section */
.definitions-section {
  background-color: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #17a2b8;
  margin-bottom: 32px;
}

.definitions-section p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
}

.definitions-section p strong {
  color: #2c3e50;
  font-weight: 600;
}

/* Important Notice */
.important-notice {
  background-color: #fff3cd;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
  margin-bottom: 32px;
}

.important-notice p {
  font-size: 16px;
  font-weight: 600;
  color: #856404;
  margin: 0;
}

/* Content Sections */
.content-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}

.content-section:last-child {
  border-bottom: none;
}

.content-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 24px;
  line-height: 1.3;
}

.content-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
  margin-top: 32px;
  line-height: 1.4;
}

.content-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #333;
}

.content-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.content-section li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.content-section ul ul {
  margin: 8px 0;
  padding-left: 20px;
}

.content-section ul ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* Special Highlighting */
.content-section p strong {
  color: #2c3e50;
  font-weight: 600;
}

/* Links */
.link-blue {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.link-blue:hover {
  color: #0052a3;
  text-decoration: underline;
}

.link-blue:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Section-specific Styling */
#richtlinien {
  background-color: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #28a745;
}

#nutzung-services {
  background-color: #fff5f5;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #dc3545;
}

#zugriff {
  background-color: #f0f8ff;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #007bff;
}

#konto {
  background-color: #f5f5f5;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #6c757d;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .terms-container {
    flex-direction: column;
  }

  .terms-nav {
    width: 100%;
    height: auto;
    position: static;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .terms-content {
    max-width: 100%;
    padding: 24px 20px;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }

  .nav-link {
    font-size: 13px;
    padding: 6px 10px;
  }
}

@media (max-width: 768px) {
  .terms-header h1 {
    font-size: 28px;
  }

  .content-section h2 {
    font-size: 24px;
  }

  .content-section h3 {
    font-size: 18px;
  }

  .terms-content {
    padding: 16px;
  }

  .definitions-section {
    padding: 16px;
  }

  .important-notice {
    padding: 16px;
  }

  #richtlinien,
  #nutzung-services,
  #zugriff,
  #konto {
    padding: 16px;
  }

  .nav-links {
    flex-direction: column;
  }

  .terms-nav {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .terms-header h1 {
    font-size: 24px;
  }

  .content-section h2 {
    font-size: 20px;
  }

  .content-section h3 {
    font-size: 16px;
  }

  .content-section p,
  .content-section li {
    font-size: 14px;
  }

  .intro-section p,
  .intro-section li {
    font-size: 14px;
  }

  .definitions-section p {
    font-size: 14px;
  }

  .nav-link {
    font-size: 12px;
    padding: 8px;
  }
}

/* Print Styles */
@media print {
  .terms-nav {
    display: none;
  }

  .terms-container {
    flex-direction: column;
  }

  .terms-content {
    max-width: 100%;
    padding: 0;
  }

  .link-blue {
    color: black !important;
    text-decoration: underline !important;
  }

  #richtlinien,
  #nutzung-services,
  #zugriff,
  #konto,
  .definitions-section,
  .important-notice {
    background-color: white !important;
    border: 1px solid #ccc !important;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .nav-link {
    border: 1px solid transparent;
  }

  .nav-link:hover,
  .nav-link:focus {
    border-color: #0066cc;
  }

  #richtlinien,
  #nutzung-services,
  #zugriff,
  #konto,
  .definitions-section,
  .important-notice {
    border: 2px solid #333;
  }
}

/* Focus Management */
.content-section:target {
  scroll-margin-top: 20px;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Styles */
::selection {
  background-color: #e3f2fd;
  color: #0052a3;
}

::-moz-selection {
  background-color: #e3f2fd;
  color: #0052a3;
}

/* Legal Text Emphasis */
.content-section strong {
  background-color: #fff3cd;
  padding: 2px 4px;
  border-radius: 3px;
}

/* Nested List Styling */
.content-section ul li ul {
  border-left: 2px solid #e0e0e0;
  margin-left: 10px;
  padding-left: 15px;
}

/* Section Dividers */
.content-section::before {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #0066cc;
  margin-bottom: 20px;
}

.terms-header::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #0066cc, transparent);
  margin-top: 30px;
}

