/* Global Styles */
:root {
    --primary: #c2a278;
    --primary-light: #d4b995;
    --primary-dark: #9c7e53;
    --secondary: #f6ad55;
    --secondary-light: #fbd38d;
    --neutral-dark: #2d3748;
    --neutral-medium: #718096;
    --neutral-light: #e2e8f0;
    --white: #ffffff;
    --success: #48bb78;
    --warning: #ed8936;
    --danger: #e53e3e;
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --gradient-secondary: linear-gradient(135deg, var(--secondary), #f6ad55);
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 6px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--neutral-dark);
    line-height: 1.6;
    background-color: #f8fafc;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
    color: var(--neutral-medium);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background-color: var(--white);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--primary-dark);
}

.logo span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    margin-bottom: 0;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-menu a {
    color: var(--neutral-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--neutral-dark);
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 6rem;
    background: linear-gradient(135deg, #f8f5f0 0%, #f0e6d2 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Changed from center to stretch */
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--neutral-medium);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.special-offer {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px dashed var(--secondary);
    border-radius: var(--border-radius);
    padding: 1rem;
    display: inline-block;
    margin-top: 1rem;
    position: relative;
}

.special-offer p {
    margin-bottom: 0;
    font-weight: 500;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.strike {
    text-decoration: line-through;
    color: var(--neutral-medium);
    margin-right: 5px;
}

.highlight {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Hero Image Carousel */
.hero-image {
    position: relative;
    width: 45%;
    height: auto; /* Ensure height is flexible */
    display: block;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%; /* Changed from fixed height to 100% */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
    background-color: rgba(0, 0, 0, 0.05); /* Light background to see container */
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: opacity 1s ease, visibility 1s ease, transform 1.2s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%; /* Ensure image fills the container height */
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
    transition: transform 7s ease; /* Slow zoom effect for active slide */
}

.carousel-slide.active img {
    transform: scale(1.1); /* Slow zoom effect */
}

.carousel-nav {
    position: absolute;
    bottom: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 3;
    transform: translateY(50%);
}

.carousel-nav button {
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-dark);
    font-size: 1rem;
    transition: var(--transition);
    opacity: 0.7;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.carousel-nav button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .hero-image {
        width: 80%; /* Changed from max-width to width */
        max-width: 600px; /* Added max-width for very large screens in column layout */
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .carousel-nav button {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .carousel-nav button {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

.hero-content .official-program {
    margin-top: 1.5rem;
}

.hero-content .official-program a {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: underline;
}

.hero-content .official-program a i {
    margin-right: 8px;
}

.hero-content .official-program a:hover {
    color: var(--primary-dark);
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(194, 162, 120, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

/* Comparison Section */
.comparison-table {
    overflow-x: auto;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    background-color: var(--white);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th {
    background-color: var(--primary);
    color: var(--white);
    padding: 1.2rem 1.5rem;
    font-weight: 500;
}

th:first-child {
    border-top-left-radius: var(--border-radius);
}

th:last-child {
    border-top-right-radius: var(--border-radius);
}

td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--neutral-light);
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:nth-child(even) {
    background-color: rgba(226, 232, 240, 0.3);
}

.positive {
    color: var(--success);
    margin-right: 8px;
}

.negative {
    color: var(--danger);
    margin-right: 8px;
}

.neutral {
    color: var(--warning);
    margin-right: 8px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary);
    box-shadow: var(--box-shadow-lg);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

/* Process Section */
.process-steps {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 4px;
    background-color: var(--primary-light);
    left: 35px;
    transform: translateX(-50%);
    z-index: -1;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: var(--box-shadow);
    z-index: 2;
}

.step-content {
    background-color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex-grow: 1;
}

.step-content h3 {
    color: var(--primary);
}

/* Testimonials */
.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2.5rem 3rem;
    margin-bottom: 2rem;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-dark);
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--neutral-medium);
}

.testimonial-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--neutral-light);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
}

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

.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -56px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.5rem 3rem;
    font-weight: 600;
    transform: rotate(38deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    background-color: var(--primary);
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.pricing-price {
    text-align: center;
    padding: 2.5rem 1rem;
    background: linear-gradient(135deg, #f8f5f0 0%, #f0e6d2 100%);
}

.original-price {
    font-size: 1.8rem;
    color: var(--neutral-medium);
    text-decoration: line-through;
    margin-right: 1rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

/* Special styling for "Price on Request" text */
.current-price:only-child {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    padding: 1rem 0;
    line-height: 2.2;
}

/* Ensure all pricing sections have the same background */
.pricing-price {
    background: linear-gradient(135deg, #f8f5f0 0%, #f0e6d2 100%) !important;
}

.pricing-features {
    padding: 2rem;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-features ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.pricing-features ul li i {
    color: var(--success);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pricing-cta {
    text-align: center;
    padding: 1.5rem;
    margin-top: auto;
    border-top: 1px solid var(--neutral-light);
}

.pricing-cta .btn {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
}

.pricing-guarantee {
    background-color: #f7fafc;
    text-align: center;
    padding: 1rem;
    border-top: 1px solid var(--neutral-light);
}

.pricing-guarantee p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--neutral-medium);
}

.pricing-guarantee i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.faq-toggle {
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    border-top: 1px solid var(--neutral-light);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    text-align: center;
    padding: 5rem 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: var(--neutral-light);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-note {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--neutral-dark);
    color: var(--white);
    padding: 5rem 0 0;
}

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

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-logo span {
    color: var(--secondary);
}

.footer-logo p {
    color: var(--neutral-light);
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-contact p {
    color: var(--neutral-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 0.8rem;
    color: var(--secondary);
}

.footer-contact a {
    color: var(--neutral-light);
}

.footer-contact a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-light);
    transform: translateY(-5px);
}

.social-links a i {
    color: var(--white);
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--neutral-light);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--neutral-light);
    font-size: 0.9rem;
}

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

.footer-bottom-links a {
    color: var(--neutral-light);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .hero-image {
        width: 80%; /* Changed from max-width to width */
        max-width: 600px; /* Added max-width for very large screens in column layout */
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .pricing-plans {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mobile-hidden {
        display: none;
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .process-steps::before {
        left: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .btn {
        width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 0.8rem;
    }
}

/* Terms of Service */
.terms-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
}

.terms-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.terms-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.last-updated {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.terms-content {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.terms-document {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section h2 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.terms-section h3 {
    color: var(--neutral-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.terms-section h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.terms-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--neutral-medium);
}

.terms-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--neutral-medium);
}

.warning-box {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 4px solid var(--danger);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.warning-box i {
    color: var(--danger);
    margin-right: 0.5rem;
}

.warning-box p {
    margin-bottom: 0;
    color: var(--neutral-dark);
}

.no-refund-box {
    background-color: #fef2f2;
    border: 2px solid var(--danger);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.no-refund-box h4 {
    color: var(--danger);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.no-refund-box h4 i {
    margin-right: 0.5rem;
}

.no-refund-box p {
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.no-refund-box ul {
    margin-bottom: 1rem;
}

.no-refund-box li {
    color: var(--neutral-dark);
}

.acceptance-box {
    background-color: #f0f9ff;
    border: 1px solid #bae6fd;
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.acceptance-box p {
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.acceptance-box ul {
    margin-bottom: 0;
}

.acceptance-box li {
    color: var(--neutral-dark);
}