/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #071629;
    color: white;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.header img {
    height: 30px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Main Banner Section */
.banner {
    background:
        radial-gradient(85.9% 85.9% at 50% 14.1%, rgba(41, 48, 61, 0.0001) 0%, #071629 100%),
        url("img/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    background-blend-mode: normal, normal;
    min-height: 100vh;
    padding-top: 220px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.banner-content h1 {
    font-weight: 700;
    font-size: 120px;
    line-height: 151px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.banner-content p {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.banner-content button {
    background: #C271FF;
    border-radius: 22px;
    border: none;
    padding: 13px 32px;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    filter: drop-shadow(0px 2px 20px rgba(0, 0, 0, 0.5));
    cursor: pointer;
    margin-bottom: 80px;
}

/* Cards Section */
.card-container {
    margin-top: 100px;
    text-align: center;
}

.card-container h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 80px;
}

.card-container h2 span {
    color: #C271FF;
}

.card-content {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1009px;
    margin: 0 auto;
}

.card-item {
    text-align: center;
}

.card-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.card-item h3 {
    font-weight: 900;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.card-item p {
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

/* Quote Section */
.quote {
    background: #C271FF;
    height: 392px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-container {
    display: flex;
    align-items: center;
    max-width: 943px;
    gap: 50px;
}

.quote-container img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-content blockquote {
    font-weight: 400;
    font-size: 22px;
    line-height: 34px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.quote-content p {
    font-weight: 700;
    font-size: 22px;
    line-height: 34px;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.quote-content h3 {
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    line-height: 34px;
    color: #FFFFFF;
}

/* Video Section */
.video {
    background-color: white;
    padding: 80px 0;
    text-align: center;
}

.video h1 {
    font-weight: 300;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #071629;
    margin-bottom: 80px;
}

.video h1 span {
    color: #C271FF;
}

.video-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-content {
    width: 255px;
    background: transparent;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.video-content>img {
    width: 255px;
    height: 154px;
    object-fit: cover;
    border-radius: 0;
    position: relative;
}

.video-content::before {
    content: '';
    position: absolute;
    width: 64px;
    height: 64px;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border-radius: 50%;
    opacity: 0.86;
    z-index: 1;
}

.video-content::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid #C271FF;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.video-content h2 {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #071629;
    padding: 20px 13px 10px;
}

.video-content>p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: rgba(7, 22, 41, 0.501584);
    padding: 0 13px;
    margin-bottom: 20px;
}

.video-auteur {
    display: flex;
    align-items: center;
    padding: 0 13px;
    margin-bottom: 20px;
}

.video-auteur img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.video-auteur h3 {
    font-weight: 600;
    font-size: 14px;
    line-height: 27px;
    color: #C271FF;
}

.video-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 13px 20px;
}

.video-rating img {
    width: 107px;
    height: 15px;
}

.video-stat p {
    font-weight: 600;
    font-size: 14px;
    line-height: 27px;
    color: #C271FF;
}

/* Membership Section */
.membership {
    background: #071629;
    padding: 80px 0;
    text-align: center;
}

.membership h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #FFFFFF;
    margin-bottom: 80px;
}

.membership h1 span {
    color: #C271FF;
}

.membership-content {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.membership-item {
    width: 257px;
}

.membership-item img {
    width: 44px;
    height: 44px;
    margin-bottom: 30px;
}

.membership-item h2 {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.membership-item p {
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #FFFFFF;
}

.membership button {
    background: #C271FF;
    border-radius: 22px;
    border: none;
    padding: 13px 32px;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    filter: drop-shadow(0px 2px 20px rgba(0, 0, 0, 0.5));
    cursor: pointer;
}

/* FAQ Section */
.faq {
    background-color: white;
    padding: 80px 0;
}

.faq h1 {
    font-weight: 300;
    font-size: 60px;
    line-height: 75px;
    text-align: center;
    color: #071629;
    margin-bottom: 80px;
}

.faq-content {
    display: flex;
    gap: 80px;
    max-width: 920px;
    margin: 0 auto;
}

.faq-column {
    flex: 1;
}

.faq-item {
    margin-bottom: 60px;
}

.faq-item h2 {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #071629;
    margin-bottom: 20px;
}

.faq-item p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: rgba(7, 22, 41, 0.501584);
}

/* Footer */
.footer {
    background: #071629;
    height: 249px;
    display: flex;
    align-items: center;
}

.footer-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 165px;
    position: relative;
}

.footer-content img {
    height: 30px;
}

.social-link {
    display: flex;
    gap: 20px;
}

.social-link img {
    width: 30px;
    height: 30px;
}

.footer-copyright {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
    opacity: 0.35;
}
