/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.logo {
    height: 40px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(2000%) hue-rotate(350deg) brightness(0.8) contrast(1.2);
    transition: filter 0.3s ease;
}

.logo:hover {
    filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(2000%) hue-rotate(350deg) brightness(0.9) contrast(1.4);
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d32f2f;
}

.btn-primary {
    background: #d32f2f;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #b71c1c;
}

.btn-secondary {
    background: transparent;
    color: #d32f2f;
    padding: 12px 24px;
    border: 2px solid #d32f2f;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #d32f2f;
    color: white;
}

.btn-search {
    background: #d32f2f;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-search:hover {
    background: #b71c1c;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    padding: 0 2rem;
    width: 100%;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}


/* Klook Widget */
.klook-widget {
    margin-top: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
}

/* Hero Klook Widget - larger and more prominent */
.hero .klook-widget {
    margin-top: 2.5rem;
    padding: 2rem;
    max-width: 100%;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.search-form {
    margin-bottom: 2rem;
}

.search-row {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: visible;
    border: 1px solid #e0e0e0;
    height: 48px;
    max-width: 960px;
    margin: 0 auto;
}

.destination-field {
    flex: 3;
    position: relative;
}

.destination-field input {
    width: 100%;
    height: 48px;
    padding: 0 20px;
    border: none;
    font-size: 16px;
    background: transparent;
    outline: none;
    color: #333;
}

.destination-field input::placeholder {
    color: #999;
    font-size: 16px;
}

.passenger-field {
    position: relative;
    min-width: 140px;
    flex-shrink: 0;
}

.passenger-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 20px;
    cursor: pointer;
    border-left: 1px solid #e0e0e0;
    background: white;
    transition: background-color 0.2s ease;
}

.passenger-selector:hover {
    background: #f8f9fa;
}

.passenger-summary {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.dropdown-arrow {
    color: #666;
    font-size: 14px;
    transition: transform 0.2s ease;
    margin-left: 8px;
}

.passenger-selector.active .dropdown-arrow {
    transform: rotate(180deg);
}

.passenger-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 4px;
    min-width: 280px;
    max-height: 70vh;
    overflow-y: auto;
}

.passenger-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.passenger-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.passenger-option:last-child {
    border-bottom: none;
}

.passenger-option:hover {
    background-color: #f8f9fa;
}

.passenger-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.passenger-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.passenger-age {
    font-size: 12px;
    color: #666;
}

.passenger-stepper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stepper-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #c41e3a;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.stepper-btn:hover {
    background: #a0172e;
    transform: scale(1.05);
}

.stepper-btn:disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

.stepper-count {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.btn-search {
    height: 48px;
    padding: 0 20px;
    background: #ffd700;
    color: #333;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    width: auto;
}

.btn-search:hover {
    background: #ffed4e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-search:active {
    background: #e6c200;
    transform: translateY(0);
}


.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group select,
.form-group input {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #d32f2f;
}

/* Destinations Section */
.destinations {
    padding: 4rem 0;
    background: white;
}

.destinations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.card-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 0;
    background: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Travel Classes Section */
.travel-classes {
    padding: 4rem 0;
    background: white;
}

.travel-classes h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.class-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.class-card.featured {
    border-color: #d32f2f;
    transform: scale(1.05);
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.class-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.class-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.class-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.class-card li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.class-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-weight: bold;
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
    background: #f8f9fa;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.reviewer {
    color: #999;
    font-weight: 600;
}

/* Offers Section */
.offers {
    padding: 4rem 0;
    background: white;
}

.offers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.offer-card {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card img {
    width: 200px;
    height: 150px;
    object-fit: cover;
}

.offer-content {
    padding: 1.5rem;
    flex: 1;
}

.offer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.offer-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    text-align: center;
    margin: 3rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(212, 47, 47, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 1.2rem;
    background: white;
    color: #d32f2f;
}

.btn-primary.large:hover {
    background: #f8f9fa;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Environment Section */
.environment-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.environment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.environment-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
}

.environment-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #bdc3c7;
}

.environment-text ul {
    list-style: none;
    padding: 0;
}

.environment-text li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #bdc3c7;
}

.environment-text li:before {
    content: "🌱";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.environment-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #ecf0f1;
    font-weight: 500;
}

/* Travel Tips Section */
.travel-tips {
    padding: 4rem 0;
    background: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #c41e3a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.tip-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.tip-card ul {
    list-style: none;
    padding: 0;
}

.tip-card li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.tip-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c41e3a;
    font-weight: bold;
}

/* Testimonials Extended */
.testimonials-extended {
    padding: 4rem 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #c41e3a;
    font-family: serif;
    line-height: 1;
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card .reviewer {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

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

    .offer-card {
        flex-direction: column;
    }

    .offer-card img {
        width: 100%;
        height: 200px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

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

    .environment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .environment-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

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

    .search-row {
        flex-direction: column;
        height: auto;
        max-width: 100%;
    }
    
    .destination-field {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .destination-field input {
        height: 48px;
        font-size: 16px;
        padding: 0 16px;
    }
    
    .passenger-field {
        min-width: auto;
    }
    
    .passenger-selector {
        border-left: none;
        border-top: 1px solid #e0e0e0;
        height: 48px;
        padding: 0 16px;
    }
    
    .passenger-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        max-width: 400px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .passenger-dropdown.active {
        transform: translate(-50%, -50%);
    }
    
    .passenger-option {
        padding: 16px;
    }
    
    .stepper-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .stepper-count {
        min-width: 20px;
        font-size: 14px;
    }
    
    .btn-search {
        width: 100%;
        height: 44px;
        font-size: 15px;
        padding: 0 16px;
    }
}

/* Search Widget Styles */
.search-widget {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    margin: 2rem 0;
    border: 1px solid #f1f3f4;
    position: relative;
    overflow: visible;
    z-index: 2;
}

.search-widget:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c41e3a 0%, #e74c3c 50%, #c41e3a 100%);
}

.search-widget h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.search-widget p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .search-widget {
        padding: 1rem;
    }

    .destinations h2,
    .why-choose h2,
    .travel-classes h2,
    .reviews h2,
    .offers h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Main Content Styles */
.main-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.content-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #34495e;
    margin: 2.5rem 0 1.5rem 0;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-section ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.content-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.content-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c41e3a;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-content {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    color: #2c3e50;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.page-content h3 {
    color: #34495e;
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.page-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.cta-inline {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
    border-left: 4px solid #d32f2f;
}

.cta-inline h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-inline p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Login page styles */
.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.login-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.login-form h2 {
    margin-bottom: 2rem;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #d32f2f;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    color: #666;
}

.forgot-password {
    color: #d32f2f;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-primary.full-width {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.login-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.login-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.login-divider span {
    background: white;
    padding: 0 1rem;
    color: #666;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-social {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-social:hover {
    border-color: #d32f2f;
    color: #d32f2f;
}

.login-benefits {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.login-benefits h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.login-benefits ul {
    list-style: none;
    margin-bottom: 2rem;
}

.login-benefits li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.login-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-weight: bold;
}

/* Discount codes styles */
.discount-codes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.discount-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.discount-card:hover {
    border-color: #d32f2f;
    transform: translateY(-2px);
}

.discount-card h4 {
    font-size: 1.5rem;
    color: #d32f2f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.discount-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Contact info styles */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-item a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .discount-codes {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}
