body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    background: #fafafa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 4rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 4rem;
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 4rem;
}

.logo {
    width: 100px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

h1 {
    font-size: 2.8rem;
    color: #1a73e8;  /* Changed to a streaming-friendly blue */
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

/* Main Content */
.info {
    margin-bottom: 4rem;
}

h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 0 0 1rem 0;
}

.features {
    margin: 2rem 0;
}

.features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.features li {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.features li:hover {
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    text-align: center;
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 12px;
    margin-top: 4rem;
}

.contact p {
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: #1a73e8;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

/* Services Section */
.services {
    margin-top: 4rem;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #1a73e8;
}

.services p {
    margin: 0;
    font-size: 1.1rem;
    color: #444;
}

.services a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.services a:hover {
    color: #1557b0;
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    color: #666;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

footer a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #1a73e8;
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        margin: 0;
        padding: 2rem;
        border-radius: 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    .features ul {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 2rem;
        margin-top: 2rem;
    }

    .features li {
        padding: 1rem;
    }
} 