* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Netflix Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    ),
    url('CO-en-20251110-TRIFECTA-perspective_f378aedd-7c6e-4a39-b404-57b6f310448b_large.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: relative;
    z-index: 10;
}

.netflix-logo {
    width: 150px;
    height: auto;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-select {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
    outline: none;
}

.language-select:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

.signin-btn {
    background-color: #e50914;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.signin-btn:hover {
    background-color: #f40612;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 950px;
    width: 100%;
    padding: 0 20px;
    z-index: 5;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Membership Action */
.membership-action {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.membership-btn {
    display: inline-block;
    background-color: #e50914;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 20px 60px;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.membership-btn:hover {
    background-color: #f40612;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.6);
}

/* Reasons Section */
.reasons {
    padding: 70px 50px;
    background: #000;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.reason-card {
    background: linear-gradient(135deg, rgba(33, 13, 66, 0.8) 0%, rgba(58, 16, 85, 0.6) 100%);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.reason-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    flex-grow: 1;
}

.reason-icon {
    margin-top: auto;
    padding-top: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.reason-icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .netflix-logo {
        width: 100px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .membership-btn {
        font-size: 20px;
        padding: 16px 40px;
    }

    .reasons {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .reason-card {
        min-height: 250px;
        padding: 25px;
    }

    .reason-card h3 {
        font-size: 20px;
    }

    .reason-card p {
        font-size: 14px;
    }
}

/* FAQ Section */
.faq {
    padding: 70px 50px;
    background: #000;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: transparent;
}

.faq-question {
    width: 100%;
    background: #2d2d2d;
    border: none;
    padding: 24px;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    margin-bottom: 1px;
}

.faq-question:hover {
    background: #414141;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-question .icon-plus {
    d: path("M11 18H25");
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    background: #2d2d2d;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 24px;
    font-size: 24px;
    line-height: 1.5;
    margin: 0;
}

.faq-answer p + p {
    padding-top: 0;
}

/* Footer */
.footer {
    background: #000;
    padding: 70px 50px 30px;
    border-top: 8px solid #222;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    color: #737373;
}

.footer-contact {
    margin-bottom: 30px;
    font-size: 16px;
}

.footer-contact a {
    color: #737373;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: #737373;
    text-decoration: none;
    font-size: 13px;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-language {
    margin-bottom: 20px;
}

.footer-country {
    margin-bottom: 20px;
    font-size: 13px;
}

.footer-legal {
    font-size: 13px;
    color: #737373;
}

.footer-legal a {
    color: #0071eb;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* FAQ & Footer Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 40px 20px;
    }

    .faq-question {
        font-size: 18px;
        padding: 18px;
    }

    .faq-question svg {
        width: 24px;
        height: 24px;
    }

    .faq-answer p {
        font-size: 18px;
        padding: 18px;
    }

    .footer {
        padding: 50px 20px 20px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-text {
        font-size: 14px;
    }

    .language-select,
    .signin-btn {
        font-size: 14px;
        padding: 6px 12px;
    }
}