.exo-2-font {
    font-family: 'Exo 2', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.2em;
    font-weight: normal;
}

:root {
    --primary: #95e891;
    --bg: #0b0b0b;
    --text: #fff;
    --muted: #aaa;
    --card: #1c1c1c;
    --border: #6f6f6f;
}

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

body {
    font-family: 'Inter', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: 0.04em;
    font-weight: 300;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.logo {
    font-weight: normal;
    font-size: 1.4rem;
    margin-top: -5px;
}

.logo a {
    text-decoration: none;
    color: #fff;
}

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

.green-label {
    color: var(--primary);
}

/* hero */

.hero {
    background: linear-gradient(to bottom, #1f2f23 50%, #0b0b0b 100%);
    /*background-image: url('img/background.png');*/
    padding-bottom: 100px;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -55px;
    padding: 0 0;
    gap: 40px;
}

.hero-header .cta {
    text-align: center;
    line-height: 1em;
}

@media (min-width: 769px) {
    .hero-header nav {
        display: flex;
        gap: 70px;
        flex-wrap: wrap;
    }
}

.line-break::after {
    content: '';
    display: block;
}

@media (max-width: 480px) {
    .hero-header nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem !important;
    }

    .hero-content {
        padding: 90px 0 0 0 !important;
    }

    .line-break::after {
        display: inline;
    }

    .hero {
        padding-bottom: 0;
    }

    section {
        padding-bottom: 0 !important;
    }
}

/* END hero */

.course-description-section div {
    width: 70%;
}

@media (max-width: 868px) {
    .course-description-section div {
        width: 100%;
    }

    .hero-header nav {
        display: none;
    }
}

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

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
}

.cta {
    background: white;
    color: black;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    border: 0px;
    font-size: 1.1em;
    font-weight: 400;
    text-decoration: none;
}

.hero-content {
    text-align: center;
    padding: 140px 20px 0 0;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-content .cta {
    background-color: var(--primary);
}

/* About Course */

.course-info-highlight {
    color: var(--primary);
}

/* END About Course*/

/* Features */

.features {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 60px;
    padding: 0 0 0;
}

.feature-item {
    flex: 1;
    padding: 20px;
    text-align: left;
    font-family: Inter;
}

.feature-item p {
    line-height: 1.5em;
}

.feature-item h3 {
    line-height: 2.4em;
    font-weight: 600;
}

@media (max-width: 480px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 100%;
        max-width: 100%;
    }
}

/* END Features */

section {
    padding: 90px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: normal;
}

/* Author */

.author-image {
    width: 100%;
    border-radius: 10px;
}

.card-section {
    border-radius: 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.card-section-photo {
    flex: 1;
    position: relative;
    min-width: 365px;
    max-width: 365px;
}

.current-job-title {
    color: var(--primary);
}

@media (max-width: 480px) {
    .card-section {
        flex-direction: column;
        align-items: center;
    }

    .card-section > div {
        width: 100%;
        max-width: 100%;
    }

    .card-section img {
        max-width: 100%;
        height: auto;
    }
}

/*END Author*/

.program-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.program-title {
    flex: 1;
}

.program-content {
    flex: 2;
}

/* Audience */

.audience-boxes {
    display: flex;
    gap: 20px;
    line-height: 1.3em;
}

.audience-box {
    flex: 1;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid var(--border);
}

.audience-box.active {
    background: var(--primary);
    color: black;
}

@media (max-width: 480px) {
    .audience-boxes {
        flex-direction: column;
    }

    .audience-box {
        width: 100%;
    }
}

/* End Audience */

.author {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Signup */

.signup-section {
    background: #fff;
    color: #000;
}

.signup-layout {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (max-width: 480px) {
    .signup-layout {
        padding-top: 0;
    }
}

.signup-text {
    flex: 1;
}

.signup-text h2 {
    margin-bottom: 20px;
}

.signup-text p {
    font-size: 1rem;
    color: #333;
}

.contact-form {
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.contact-form input {
    font-size: 0.95em;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 12px;
}

.contact-form label {
    font-size: 0.9rem;
}

.contact-form .cta {
    background: var(--primary);
}

.contact-form a {
    color: #000;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .signup-layout {
        flex-direction: column;
        align-items: stretch;
    }

    .signup-text,
    .contact-form {
        width: 100%;
    }
}

.form-feedback {
    margin-top: 10px;
}

.form-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #ccc;
    border-top: 3px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.form-message {
    font-size: 14px;
}

/* END Signup */

/* Feedbacks */

.feedback-boxes {
    display: flex;
    gap: 20px;
}

.feedback-box {
    flex: 1;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid #676767;
}

@media (max-width: 480px) {
    .feedback-boxes {
        flex-direction: column;
    }

    .feedback-box {
        width: 100%;
    }
}

/* End feedbacks */

footer {
    padding: 10px;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer div {
    padding-top: 40px;
    padding-bottom: 40px;

    font-size: 0.95rem;
}

footer a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: flex-start;
    }

    footer div {
        width: 100%;
        text-align: left !important; /* override any right-aligned ones */
    }
}

/* Accordion */

.accordion {
    border: 1px solid #333;
    border-radius: 20px;
    overflow: hidden;
}

.accordion-body {
    display: none;
    padding: 0 20px 20px 20px;
    background: #000;
}

.accordion-header {
    padding: 15px 20px;
    background: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: 400;
}

.accordion-body ul {
    padding: 0 20px;
}

.accordion-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.accordion-container {
    flex: 2;
}
.accordion-item {
    background: #000;
    margin-bottom: 10px;
    border-radius: 12px;
    border: 1px solid #444;
    overflow: hidden;
}

.accordion-header::after {
    content: '+';
    font-size: 1.2rem;
}
.accordion-item.active .accordion-header::after {
    content: '-';
}
.accordion-item.active .accordion-body {
    display: block;
}

.accordion-section-title {
    flex: 1;
}

@media (max-width: 480px) {
    .accordion-section {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .accordion-section-title,
    .accordion-container {
        width: 100%;
    }
}

/* END Accordion */

.linkedin {
    width: 24px;
    height: 20px;
}

.card-section a {
    color: #fff;
}

.price-box {
    padding-bottom: 100px;
}
