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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

header h1 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

header .tagline {
    font-size: 1.3em;
    font-weight: 300;
    opacity: 0.9;
}

/* Main Content */
main {
    flex: 1;
    padding: 60px 20px;
}

/* Products Section */
.products {
    max-width: 800px;
    margin: 0 auto;
}

.products h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.product-logo {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-info {
    flex: 1;
}

.product-info h3 {
    font-size: 1.6em;
    margin-bottom: 5px;
    color: #2c3e50;
}

.product-subtitle {
    font-size: 1em;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.product-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-store-badge img {
    height: 44px;
    width: auto;
}

.learn-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.learn-more:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    font-size: 0.9em;
    opacity: 0.8;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    header {
        padding: 40px 20px;
    }

    header h1 {
        font-size: 2em;
    }

    header .tagline {
        font-size: 1.1em;
    }

    main {
        padding: 40px 15px;
    }

    .products h2 {
        font-size: 1.6em;
    }

    .product-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
    }

    .product-logo {
        width: 80px;
        height: 80px;
        border-radius: 18px;
    }

    .product-info h3 {
        font-size: 1.4em;
    }

    .product-links {
        justify-content: center;
    }
}
