:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --background-color: #F7FFF7;
    --text-color: #1A535C;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Poppins', sans-serif;
    --border-radius: 12px;
}

body {
    font-family: var(--body-font);
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.main-header {
    background: #fff;
    padding: 1rem 5%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav {
    color: #e0525255;
    text-decoration: none;
}

.nav:hover {
    color: #e05252;
}

.btn {
    font-family: var(--heading-font);
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

.btn-primary:hover {
    background-color: #e05252;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

main {
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    padding: 4rem 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-family: var(--heading-font);
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.features {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.feature-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.cta-section {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0 4rem;
}

.cta-section h2 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    margin-top: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-store {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.btn-store img {
    height: 50px;
    transition: transform 0.3s ease;
}

.btn-store:hover img {
    transform: scale(1.05);
}

.main-footer {
    background: #fff;
    padding: 2rem 5%;
    margin-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content .logo {
    font-size: 1.5rem;
}

.footer-content p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {

    .hero-content,
    .feature-item,
    .feature-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .feature-item .feature-image,
    .feature-item.reverse .feature-image {
        order: -1;
        /* Puts image on top */
    }

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

    .nav-buttons .btn-secondary {
        display: none;
    }
}