* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.2;
}

.description {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.6;
    font-size: 24px;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.store-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.apple-store {
    background-color: #000;
    color: #fff;
}

.google-play {
    background-color: #01875f;
    color: #fff;
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
}

.store-button img {
    height: 24px;
    margin-right: 10px;
}

.features {
    padding: 3rem 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.5;
}

footer {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.3);
    margin-top: auto;
}

.home-link {
    display: block;
    margin-bottom: 20px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        width: 300px;
        margin-bottom: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .store-buttons {
        justify-content: center;
    }

    .store-buttons {
        display: flex;
        gap: 1.5rem;
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .store-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        min-width: 200px;
    }

    .apple-store {
        background-color: #000;
        color: #fff;
    }

    .google-play {
        background-color: #01875f;
        color: #fff;
    }

    .store-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
    }

    .store-button img {
        height: 30px;
        margin-right: 10px;
    }

    .store-button span {
        font-size: 16px;
    }
}
