/* Global Styles */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #e50914;
    --text-color: #333;
    --max-width: 1200px;
}

body {
    color: var(--text-color);
    background-color: var(--secondary-color);
}

h1, h2, h3 {
    font-weight: bold;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

section {
    padding: 5rem 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff0f1a;
}