:root {
    --light-color: #F2FAFF;
    --white-color: #fff;
    --pink-color: #FFA996;
    --blue-color: #68BBD3;
    --gray-color: #D9D9D9;
    --dark-blue-color: #0B7FA1;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", "Montserrat";
}

.wrapper {
    max-width: 1134px;
    margin: 0 auto;
}

/* Buttons */

.btn {
    padding: 16px 32px;
    border-radius: 24px;
    color: #fff;
    display: inline-block;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
}

.btn.dark {
    background: var(--dark-blue-color);
}

.btn.light {
    background: var(--pink-color);
}

/* Header */

header {
    background: linear-gradient(180deg, #FFAEAE 0%, #1FC0F9 100%);
    height: 100vh;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 1134px;
    top: 36px;
    z-index: 100;
}

nav .logo {
    font-family: "Montserrat";
    font-weight: 900;
    font-size: 40px;
    color: #0B7FA1;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 60px;
    list-style: none;
    margin: 0;
}

nav ul li a {
    font-family: "Poppins";
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
}

/* Hero Section */

.hero-section {
    display: flex;
    height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding-top: 60px;
}

.hero-section .left h1 {
    font-family: "Montserrat";
    font-weight: 900;
    font-size: 43px;
    line-height: 125%;
    color: #FFFFFF;
    margin-bottom: 0;
}

.hero-section .left p {
    font-family: "Poppins";
    font-weight: 400;
    font-size: 16px;
    line-height: 200%;
    color: #070917;
    margin-bottom: 30px;
    width: 457px;
}

.hero-section .left {
    flex: 1;
}

.hero-section .right {
    align-self: flex-end;
}

.hero-section .right img {
    height: 390px;
    vertical-align: middle;
}

/* Achievement Cards */

.achievement-cards {
    position: relative;
}

.achievement-cards .content {
    border-radius: 24px;
    background-color: #FFA996;
    padding: 8px 32px;
    z-index: 10;
    position: relative;
}

.achievement-cards.A-Resource-Guide {
    left: 27%; 
    margin-bottom: 20%;
}

.achievement-cards.stress-level-test {
    left: 27%;
    top: 0;
}

.achievement-cards .content div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.achievement-cards h3 {
    font-family: "Poppins";
    font-weight: bold;
    font-size: 16px;
    color: var(--dark-blue-color);
    margin: 0;
    text-align: center;
    width: 100%;
}

.achievement-cards p {
    font-family: "Poppins";
    font-weight: normal;
    font-size: 16px;
    color: var(--gray-color);
    margin-top: -8px;
    margin-bottom: 8px;
}

.achievement-cards .bg {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, #68BBD3 0%, #0B7FA1 100%);
    border-radius: 24px;
    top: 8px;
    left: 8px;
    z-index: 1;
}

/* Mental Health Features Section */

section {
    margin-top: 100px;
}

h2 {
    font-family: "Montserrat";
    font-weight: 900;
    font-size: 50px;
    line-height: 120%;
    margin: 0;
    color: var(--pink-color);
}

h2.light {
    color: #FFA996;
}

section p {
    font-family: "Montserrat";
    font-weight: normal;
    font-size: 16px;
    line-height: 200%;
    color: var(--dark-blue-color);
    margin: 12px 0;
}

.features-section {
    display: flex;
    gap: 100px;
    align-items: center;
}

.features-section .mobile-btn {
    display: none;
}

.features-section .features-card {
    width: 442px;
    background: #68BBD3;
    box-shadow: 0px 9px 36px rgba(0, 0, 0, 0.2);
    border-radius: 24px;
    margin-bottom: 50px;
    position: relative;
}

.features-section .features-card::before {
    content: "";
    width: 28px;
    position: absolute;
    height: 40px;
    top: -40px;
    left: 60px;
    background: var(--dark-blue-color);
    border-radius: 24px 24px 0 0;
}

.features-section .features-card:last-child::before {
    left: 40px;
    top: -50px;
    border-radius: 0 0 24px 24px;
    height: calc(100% + 90px);
    z-index: -1;
}

.features-section .features-card .content {
    font-family: "Poppins";
    font-weight: 900;
    font-size: 18px;
    line-height: 250%;
    color: #FFFFFF;
    border-radius: 24px;
    padding: 24px 32px;
    background: var(--pink-color);
}

.features-section .features-card:last-child .content {
    background: var(--gray-color);
}

.features-section .features-card .info h4 {
    font-family: "Montserrat";
    font-weight: 900;
    font-size: 19px;
    line-height: 120%;
    margin: 0;
    color: #023047;
}

.features-section .features-card .info {
    padding: 24px 32px;
    background: #68BBD3;
    border-radius: 24px;

}

.features-section .features-card img {
    width: 120px;
    height: 120px;
    position: absolute; 
    right: 22px;
    bottom: 20px;
}

.features-section .features-card:last-child {
    transform: translateX(20px);
}

.features-section .features {
    margin-bottom: 30px;
}

/* Courses Section */

.courses-section {
    background: linear-gradient(180deg, rgba(255, 174, 174, 0.97) 0%, #1FC0F9 100%);
    padding: 70px 0;
}

.courses-section h2 {
    text-align: center;
}

.courses-section .course-cards {
    display: flex;
    gap: 70px;
}

.courses-section .course-cards img {
    width: 100%;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.25));
    border-radius: 24px;
}

.courses-section .course-cards {
    background: #fff;
    border-radius: 24px;
    padding: 0px 32px;
    margin: 40px 0;
}
    