:root {
    --primary-color: #007aff;
    --text-color: #333;
    --gray-light: #f5f5f7;
    --gray-dark: #6e6e73;
    --font-family: 'Inter', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
}

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

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

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

/* Hero Section */
.hero-section {
    background-color: var(--gray-light);
    text-align: center;
    padding: 100px 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Sections */
.feature-section {
    padding: 80px 0;
}

.gray-bg {
    background-color: var(--gray-light);
}

.feature-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

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

.feature-text,
.feature-media {
    flex: 1;
}

.feature-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

.feature-media {
    text-align: center;
    position: relative;
    max-width: 500px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Download Section */
.download-section {
    background-color: var(--text-color);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.download-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.app-store-badge {
    height: 60px;
    width: auto;
    margin-top: 20px;
    transition: transform 0.3s ease-in-out;
}

.app-store-badge:hover {
    transform: scale(1.05);
}

.download-section p {
    margin-top: 10px;
    color: var(--gray-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .feature-container {
        flex-direction: column;
        gap: 30px;
    }

    .feature-container.reverse {
        flex-direction: column;
    }

    .feature-text {
        text-align: center;
    }

    .feature-media {
        max-width: 100%;
    }
}