:root {
    --primary-color: #e50914; /* Netflix-like red */
    --secondary-color: #141414; /* Dark background */
    --text-color: #ffffff;
    --text-color-secondary: #b3b3b3;
    --background-color: #000000;
    --card-background: #1f1f1f;
    --border-color: #333333;
    --highlight-color: #e50914;
    --shadow-color: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #ff0a16; /* Brighter red on hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3);
}

.btn-plan {
    background-color: var(--primary-color);
    color: white;
    width: 80%;
    margin: 20px auto;
    display: block;
}

.btn-plan:hover {
    background-color: #ff0a16;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3);
}