:root {
    --accent-color: #F0A500;
    --bg-color: #000000;
    --text-color: #ffffff;
}

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

header {
    position: relative;
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

header h1 {
    font-size: 3.5rem;
    margin: 0.5rem 0;
}

header p {
    font-size: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
}

.cta-buttons a:not(:last-of-type) {
    margin-right: 16px;
}

.cta-button {
    background-color: var(--accent-color);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 1.5rem;
    cursor: pointer;
    text-decoration: none;
}

.cta-button-outline {
    background-color: transparent;
    border: 1px solid var(--accent-color) !important;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 1.5rem;
    cursor: pointer;
    text-decoration: none;
}

section {
    padding: 4rem 1rem;
}

section h3 {
    margin-top: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.split img {
    flex: 1;
    max-width: 100%;
    border-radius: 10px;
}

.split .text {
    flex: 1;
}

.hero-logo {
    max-width: 320px;
    width: 80%;
    height: auto;
    margin: 32px 16px;
}

.split .what-is-img,
.split .portrait-img {
    width: 100%;
    max-width: 360px;
    border-radius: 10px;
}

.testimonials {
    background-color: #1a1a1a;
    padding: 3rem 1rem;
}

.testimonials h3 {
    text-align: center;
}

.testimonial {
    max-width: 600px;
    margin: 1rem auto;
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.contact {
    background-color: #111111;
    text-align: center;
    padding: 3rem 1rem;
}

.contact a {
    text-decoration: none;
}

.bg-subtle {
    background-color: #0d0d0d;
}

footer {
    background: #000000;
    color: #ccc;
    text-align: center;
    padding: 1rem;
    font-size: 0.875rem;
}

ul {
    list-style: none;
    padding-left: 0;
}

li::before {
    content: "⚡";
    padding-right: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    header p {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .split {
        flex-direction: column;
        text-align: center;
    }

    .split ul {
        text-align: left;
    }

    .mobile-reverse .split {
        flex-direction: column-reverse;
    }

    .split img,
    .split .text {
        width: 100%;
    }

    .cta-buttons a:not(:last-of-type) {
        margin-right: 0;
    }


    .cta-button, .cta-button-outline {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }

    .testimonial {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 1rem;
    }

    .cta-button, .cta-button-outline {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}