/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&family=Quicksand:wght@500;700&display=swap');

:root {
    --primary-color: #FFAB91;
    /* Soft Coral */
    --primary-dark: #FF8A65;
    --secondary-color: #A5D6A7;
    /* Sage Green */
    --secondary-dark: #81C784;
    --bg-color: #FFF9F5;
    /* Warm White */
    --text-color: #4E4E4E;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --radius-l: 25px;
    --radius-m: 15px;
}

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

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-top: 2rem;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 4rem 0;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-dark);
}

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

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 171, 145, 0.4);
}

/* Mobile Nav Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    text-align: left;
    /* Changed from center */
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #FFF3E0 0%, #E8F5E9 100%);
    border-radius: 0 0 50px 50px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    opacity: 0.15;
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    opacity: 0.15;
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    z-index: 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 0 2rem 0;
    /* Align left */
    position: relative;
}

.btn {
    display: inline-block;
    background: var(--primary-dark);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    transform: translateY(0);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 138, 101, 0.4);
    background: var(--primary-color);
}

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

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

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

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

/* Feature List */
.feature-list li {
    background: white;
    margin-bottom: 0.5rem;
    padding: 1rem;
    border-radius: var(--radius-m);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '✔';
    color: var(--secondary-dark);
    font-weight: bold;
    margin-right: 1rem;
    background: #E8F5E9;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Footer */
footer {
    background: white;
    padding: 3rem 0;
    margin-top: 4rem;
    text-align: center;
    border-radius: 50px 50px 0 0;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.02);
}

footer p {
    color: #888;
}

footer a {
    color: var(--primary-dark);
    margin: 0 0.5rem;
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

    .faq-section {
        flex-direction: column;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
    }

    .main-nav.active {
        clip-path: circle(150% at 100% 0);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

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