/* Modern CSS with variables for easy theming */
:root {
    --primary-color: #05386B;     /* Dark blue */
    --secondary-color: #379683;   /* Teal */
    --accent-color: #5CDB95;      /* Bright green */
    --light-color: #EDF5E1;       /* Light mint */
    --dark-color: #333333;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #EDF5E1;
    --font-main: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 10px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background-color: white;
    box-shadow: var(--shadow-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.8em;
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
    color: var(--light-color);
    position: relative;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Header & Navigation */
header {
    position: relative;
}

.top-bar {
    background-color: white;
    padding: 1.2rem 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
}

.logo {
    width: 200px;
    height: 50px;
}

.logo-svg {
    width: 100%;
    height: auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 2rem;
    text-align: center;
    color: var(--light-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto;
    z-index: 2;
}

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

.hero-visual {
    width: 100%;
    max-width: 500px;
    z-index: 2;
}

.hero-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(92, 219, 149, 0.4);
    background-color: #4eca89;
    color: var(--primary-color);
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(92, 219, 149, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(92, 219, 149, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(92, 219, 149, 0.4);
    }
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background-color: white;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature {
    flex: 0 0 300px;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.feature h3 {
    margin-bottom: 1rem;
}

/* Process Section */
.process {
    padding: 5rem 2rem;
    background-color: #f9fbf7;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-info {
    flex: 1;
}

.step-info h3 {
    margin-bottom: 0.5rem;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Reviews Section */
.reviews {
    padding: 5rem 2rem;
    background-color: white;
}

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

.review {
    background: #f9fbf7;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

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

.reviewer {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

/* FAQ Section */
.faq {
    padding: 5rem 2rem;
    background-color: #f9fbf7;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.faq-item h3::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
}

.final-cta h2 {
    color: var(--light-color);
}

.final-cta h2::after {
    background: var(--accent-color);
}

.final-cta p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo-svg {
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: var(--light-color);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-info {
    text-align: center;
}

.footer-info p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .feature-list {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        width: 100%;
        max-width: 350px;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .review-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3.5rem 1.2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 2.5rem 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* Animation for better UX */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature, .step, .review, .faq-item {
    animation: fadeIn 0.5s ease-out forwards;
}
