:root {
    --pistons-blue: #1D428A;
    --pistons-red: #C8102E;
    --pistons-white: #FFFFFF;
    --pistons-black: #000000;
    --bg-dark: #0a1120;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --card-bg-front: #1D428A;
    --card-bg-back: #C8102E;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    /* Fallback is white, but requested 'white' swoop suggests main content might be white or the swoop handles the transition */
    background-color: var(--pistons-white);
    /* Let's start with white content area as per swoop logic usually going from video to white */
    color: var(--pistons-black);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography Overrides */
h1,
h2,
h3 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    /* Not full 100vh to show a bit of content peek or for the swoop to eat into it */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--pistons-blue);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    /* Let background color bleed through or darken */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 66, 138, 0.8) 0%, rgba(200, 16, 46, 0.4) 100%);
    z-index: 2;
}

.pistons-logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 80px;
    height: auto;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--pistons-white);
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
}

@media (min-width: 769px) {
    .hero-content {
        text-align: left;
        padding-left: 1rem;
    }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.main-title {
    font-size: 4rem;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--pistons-red);
}

.smText {
    font-size: .85rem !important;
    /* font-weight: 400; */
    color: #919191;
    letter-spacing: 0.1em;
    /* color: var(--pistons-white); */
    margin-top: 1rem;
}

/* Swoop Divider */
.swoop-container {
    position: relative;
    margin-top: -280px;
    /* Pull it up into the video area */
    z-index: 4;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    /* Create no space around svg */
}

.swoop-svg {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 -5px 10px rgba(0, 0, 0, 0.1));
}

/* Main Content */
.content-section {
    background-color: var(--pistons-white);
    padding: 2rem 1rem 6rem;
    min-height: 60vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.intro-text {
    max-width: 1000px;
    margin: 0 auto 5rem;
    text-align: center;
}

.intro-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.intro-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.intro-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 769px) {
    .intro-content-wrapper {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .intro-image {
        max-width: 300px;
        margin: 0;
    }
}

.cta-button {
    display: inline-block;
    align-self: center;
    background-color: var(--pistons-red);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 10px 30px;
    border-radius: 50px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4);
    letter-spacing: 0.1em;
}

@media (min-width: 769px) {
    .cta-button {
        align-self: flex-start;
    }
}

.cta-button:hover {
    background-color: #a30e26;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.6);
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--pistons-blue);
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.25rem;
    color: #444;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    margin-top: 30px;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pistons-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--pistons-red);
}

.faq-question .icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.answer-content {
    padding-bottom: 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: var(--pistons-blue);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .swoop-container {
        margin-top: -86px;
    }

    .intro-text h2 {
        font-size: 1.8rem;
    }
}