/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
}

.logo-img {
    height: 30px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-right: 20px;
    cursor: pointer;
    position: relative;
}

.arrow {
    font-size: 12px;
}

.header-buttons {
    display: flex;
    align-items: center;
}

.call-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
}

.banner {
    background-color: #FFD700;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-content {
    display: flex;
    align-items: center;
}

.fire-emoji {
    margin: 0 10px;
}

.discount {
    background-color: #FFA500;
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 10px;
    margin-right: 10px;
}

.countdown {
    margin-left: 10px;
    margin-right: 10px;
}

.claim-offer-button {
    background-color: #FFA500;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
}

.main-content {
    background-color: #1E90FF;
    color: #000;
    text-align: center;
    padding: 40px 20px;
}

.part-time {
    margin: 0;
    font-size: 14px;
    color: #000;
}

h1 {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: bold;
}

.subtext {
    font-size: 16px;
    margin-bottom: 20px;
}

.cohort-info {
    background-color: #FFD700;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Dropdown menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.why-switch {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.why-switch h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.highlight {
    display: block;
    font-size: 28px;
    color: #000;
    background-color: #ff7f50;
    display: inline-block;
    padding: 0 5px;
}

.salaries {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-top: 20px;
}

.salary-box {
    background-color: #32CD32;
    padding: 20px;
    border-radius: 10px;
    width: 150px;
    text-align: center;
}

.salary-box p {
    margin: 0;
    font-size: 16px;
    color: #000;
}

.salary {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}

.remote-friendly {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    background-color: #fff;
}

.text-content {
    flex: 1;
    padding-right: 20px;
}

.text-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.globe-emoji {
    font-size: 32px;
}

.text-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.image-content {
    flex: 1;
    position: relative;
}

.remote-img {
    width: 100%;
    border-radius: 20px;
}

.quote-box {
    background-color: #32CD32;
    padding: 20px;
    border-radius: 10px;
    width: 60%;
    position: absolute;
    bottom: -50px;
    left: 20%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.quote-box p {
    margin: 0;
    font-size: 16px;
    color: #000;
}

.paths-tech {
    text-align: center;
    padding: 40px 20px;
    background-color: #FF7F50;
}

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    margin-bottom: 40px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.card img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.card .duration {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

.card h3 {
    font-size: 22px;
    margin: 10px 0;
}

.card p {
    font-size: 16px;
    color: #333;
}

.card .price {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.card .original-price {
    text-decoration: line-through;
    color: #777;
    margin-left: 10px;
}

.guarantee {
    background-color: #FF7F50;
    padding: 40px 20px;
    color: #000;
    position: relative;
}

.guarantee-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.highlight {
    background-color: #000;
    color: #FF7F50;
    padding: 0 5px;
}

.conditions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.condition {
    text-align: center;
    flex: 1;
    margin: 0 10px;
}

.condition p:first-child {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.condition p:last-child {
    font-size: 16px;
}

.guarantee-box {
    background-color: #FFD700;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.guarantee-box p {
    margin: 0;
    font-size: 16px;
}

.guarantee-box a {
    color: #000;
    text-decoration: underline;
}

.student-success {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.student-success h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

.highlight {
    background-color: #FF7F50;
    padding: 0 5px;
    color:black;
    font-size: 30px;
}

.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.step {
    text-align: center;
    max-width: 600px;
}

.step-number {
    font-size: 24px;
    color: #FF7F50;
    font-weight: bold;
    margin-bottom: 10px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
    color: #333;
}

.individual-attention {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    position: relative;
}

.text-bubble {
    background-color: #FFD700;
    padding: 15px 20px;
    border-radius: 10px;
    width: 200px;
    position: absolute;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-bubble.top-left {
    top: 10px;
    left: 10px;
}

.text-bubble.top-right {
    top: 10px;
    right: 10px;
}

.text-bubble.bottom-left {
    bottom: 10px;
    left: 10px;
}

.text-bubble p {
    margin: 0;
    font-size: 14px;
}

.text-bubble .author {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

.individual-attention h2 {
    font-size: 36px;
    font-weight: bold;
    margin: 80px 0 40px;
}

.emoji {
    background-color: #32CD32;
    padding: 0 5px;
    border-radius: 5px;
}

.services {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.service {
    max-width: 300px;
    text-align: left;
}

.service h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service p {
    font-size: 16px;
    color: #333;
}

.testimonials {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.badges img {
    margin: 0 10px;
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header p {
    font-size: 16px;
    margin-top: 10px;
}

.section-header a {
    color: #32CD32;
    text-decoration: underline;
}

/* FAQ Section */
.faq {
    padding: 40px 20px;
    background-color: #fff;
}

.faq h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 16px;
    color: #333;
}
