body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
}
    
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: #222;
    margin-bottom: 0.6em;
}
 
/* Navbar */
 
.navbar {
    background-color: #1F3A93;
    height: 150px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    padding: 0 50px;
}
 
.logo {
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: bold;
    color: rgb(232, 136, 2);
    white-space: nowrap;
    line-height: 1.2;
}
 
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 1.8vw, 30px);
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    margin-left: auto;
    padding: 0;
}
 
.nav-links a, .search-icon {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.nav-links a {
    white-space: nowrap;
}
 
.nav-links a:hover,
.search-icon:hover {
    color: rgb(232, 136, 2);
}
 
.nav-links a:active,
.nav-links a.active {
    color: rgb(232, 136, 2);
}
 
.search-icon {
    color: rgb(232, 136, 2);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    flex: 0 0 auto;
    transition: color 0.2s ease;
}

/* Dropdown */
 
.dropdown {
    position: relative;
}
 
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1F3A93;
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    z-index: 1000;
}
 
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
}
 
.dropdown-menu li a:hover {
    background-color: #162f6b;
}
 
.dropdown:hover .dropdown-menu {
    display: block;
}
 
/* Buttons */
 
.btn {
    background-color: #1f3c88;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
}
 
/* Footer */
 
.footer {
    background-color: white;
    color: black;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    text-align: center;
}
 
.footer-social a {
    display: inline-block;
    margin: 0 8px;
    transition: transform 0.3s;
}
 
.footer-social a img {
    width: 30px;
    height: auto;
}
 
.footer-social a:hover img {
    transform: scale(1.2);
}
 
.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid #555;
    padding-top: 15px;
    font-size: 14px;
}
 
/* Responsive */
 
@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
 
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
 
    .hero-home {
        flex-direction: column;
        padding: 40px;
    }
}
/*  INDEX */
.hero-home {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px 60px 60px;
    gap: 80px;
}
 
.hero-home-text {
    max-width: 500px;
}
 
.hero-home-text h1 {
    font-size: 56px;
    line-height: 1.2;
}
 
.hero-home-text p {
    font-size: 20px;
    color: #555;
}
 
.hero-home-image {
    width: 650px;
    height: 500px;
    overflow: hidden;
    border-radius: 6px;
}
 
.hero-home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.home {
    padding: 80px 20px;
    text-align: center;
}
 
.home h2 {
    font-size: 42px;
    margin-bottom: 70px;
}
 
.home-cards {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;         
    margin: 0 auto;
}
 
.home-card {
    width: 260px;
    border: 1.5px solid black;
    height: 300px;
    padding: 40px 30px;
    text-align: left;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
 
.home-card h3 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 20px;
}
 
.home-card p {
    font-size: 15px;
    line-height: 1.6;
}
 
/* Home CTA */
 
.home-cta{
    background-image: url("images/homepageyourchoice.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    position: relative;
    color: rgb(0, 0, 0);
}
 
.home-cta-content {
    text-align: left;
    padding-left: 80px;
}
 
.home-cta-content h2 {
    font-size: 48px;
}
 
.home-cta-content p {
    font-size: 20px;
}
 
.home-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 40px;
    background-color: #1F3A93;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: bold;
    border-radius: 0;
    margin-top: 30px;
}
 
.home-cta-btn:hover {
    background-color: #1F3A93;
}
 
/*  GUIDE  */
.guide-section {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 60px 20px;
}
 
.guide-card {
    max-width: 300px;
    text-align: center;
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
 
.guide-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 25px;
}
 
.guide-card h3 a {
    color: #1F3A93;
    text-decoration: underline;
    font-weight: 600;
}
 
.guide-card h3 a:hover {
    color: rgb(232, 136, 2);
}
 
.guide-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}
 
.guide-hero {
    background: #f2f2f7;
    padding: 100px 20px;
    text-align: center;
}

.guide-hero-content {
    max-width: 900px;
    margin: 0 auto;
}
 
.guide-hero h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1c1c1c;
}
 
.steps-section {
    background: #f2f2f7;
    padding: 100px 15%;
    text-align: center;
}
 
.step {
    max-width: 800px;
    margin:0 auto 60px auto;
}
 
.step h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1c1c1c;
}
 
.step p {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
}
 
.guide-cta {
    text-align: center;
    padding: 100px 20px;
    background: #f2f2f7;
}
 
.guide-cta h2 {
    font-size: 28px;
    margin-bottom: 30px;
}
 
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #1F3A93;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
}
 
.cta-button:hover {
    background: #1F3A93;
}
 
/*  6 STEP GUIDE  */
.sixstep-hero {
    height: 500px;
    background-image: url("images/sixstepguide.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
 
    display: flex;
    justify-content: center;
    align-items: center;
 
    text-align: center;
    padding: 0 20px;
}
 
.sixstep-hero-content {
    max-width: 900px;
}
 
.sixstep-hero h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #000;
}
 
.sixstep-hero p {
    font-size: 20px;
    line-height: 1.8;
    color: #222;
}
 
 
/*  STUDY TEST  */ 
.start-test-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    background-color: #1F3A93;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
 
.start-test-btn:hover {
    background-color: #1F3A93;
}
 
.study-difference {
    background: #ffffff;
    padding: 80px 15%;
    text-align: center;
}

.study-difference-content {
    max-width: 960px;
    margin: 0 auto;
}
 
.study-difference h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1c1c1c;
}
 
.study-difference p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: #000;
}
 
 
/*  STUDY TEST TEST */ 
.test-hero {
    background: #f2f2f7;
    text-align: center;
    padding: 80px 15%;
}

.test-hero-content {
    max-width: 900px;
    margin: 0 auto;
}
 
.test-hero h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1c1c1c;
}
 
.test-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}
 
#test-questions {
    background: #ffffff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}
 
#question {
    max-width: 800px;
    width: 100%;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
 
#question h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
 
#question label {
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}
 
button.start-test-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 18px;
    background-color: #1F3A93;
    color: #fff;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}
 
button.start-test-btn:hover {
    background-color: #1F3A93;
}
 
 
/*  STUDY TEST RESULTS  */ 
.results-hero {
    background: #f2f2f7;
    text-align: center;
    padding: 80px 15%;
}

.results-hero-content {
    max-width: 900px;
    margin: 0 auto;
}
 
.results-hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1F3A93;
}
 
.results-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #1F3A93;
}
 
.results-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 50px 15%;
}
 
.results-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}
 
.results-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1F3A93;
}
 
.results-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}
 
.card-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #1F3A93;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
 
.card-btn:hover {
    background-color: #1F3A93;
}

.card-btn:visited {
    color: #fff;
    background-color: #1F3A93;
}
 
@media (max-width: 768px) {
    .results-cards {
        padding: 40px 5%;
    }
}
 
 /* ================= STUDENT STORIES =================== */ 
.student-stories-intro {
    background: #f2f2f7;
    text-align: center;
    padding: 80px 15%;
}

.student-stories-content {
    max-width: 960px;
    margin: 0 auto;
}
 
.student-stories-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
 
.student-stories-intro p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px auto;
}
 
.share-story-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 18px;
    background-color: #1F3A93;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
 
.share-story-btn:hover {
    background-color: #1F3A93;
}
 
.stories-slider {
    max-width: 800px;
    margin: 50px auto;
    position: relative;
}
 
.stories-slider input {
    display: none;
}
 
.slides {
    overflow: hidden;
    position: relative;
}
 
.story {
    display: none;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
}
 
#slide1:checked ~ .slides #s1,
#slide2:checked ~ .slides #s2,
#slide3:checked ~ .slides #s3 {
    display: block;
}
 
.slider-controls {
    text-align: center;
    margin-top: 20px;
}
 
.slider-controls .control {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 6px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
 
#slide1:checked ~ .slider-controls label[for="slide1"],
#slide2:checked ~ .slider-controls label[for="slide2"],
#slide3:checked ~ .slider-controls label[for="slide3"] {
    background: #1F3A93;
}
 
 
/*  SHARE STORY  */ 
.share-story {
    text-align: center;
    padding: 60px 20px;
}
 
.story-form {
    max-width: 500px;
    margin: 0 auto;
}
 
.story-form input,
.story-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}
 
.story-form button {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    background-color: #1F3A93;
    color: white;
    cursor: pointer;
}
 /*  FOR PARENTS AND ADVISORS  */
.pa-page {
    background: #ffffff;
}

.pa-container {
    width: min(960px, 88%);
    margin: 0 auto;
}

.pa-hero {
    background: #d8d8d8;
    padding: 88px 0 82px;
}

.pa-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(34px, 3.5vw, 44px);
    color: #111;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.pa-hero p {
    margin: 0 auto;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.85;
    color: #1f1f1f;
    text-align: left;
}

.pa-divider {
    width: 72px;
    height: 2px;
    background: #202020;
    margin: 0 0 34px;
}

.pa-hero .pa-divider {
    margin-left: auto;
    margin-right: auto;
}

.pa-grid-section {
    background: #f3f3f3;
    padding: 86px 0 70px;
}

.pa-grid-section .pa-container,
.pa-vision .pa-container {
    max-width: 820px;
}

.pa-block {
    max-width: 820px;
    margin: 0 auto 60px;
}

.pa-block:last-child {
    margin-bottom: 0;
}

.pa-block h2 {
    margin: 0 0 14px;
    color: #111;
    font-size: clamp(30px, 3.1vw, 38px);
    line-height: 1.05;
    font-weight: 700;
}

.pa-block h3 {
    margin: 0 0 8px;
    color: #111;
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.2;
    font-weight: 700;
}

.pa-block p {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.9;
    color: #2a2a2a;
}

.pa-block ul {
    margin: 0 0 24px 24px;
    padding: 0;
    color: #333;
    line-height: 1.85;
    font-size: 16px;
}

.pa-block li {
    margin-bottom: 6px;
}

/* Vision + CTA section */
.pa-vision {
    background: #ffffff;
    text-align: left;
    padding: 82px 0 68px;
    border-bottom: 1px solid #d5d5d5;
}

@media (min-width: 1201px) and (max-width: 1600px) {
    .pa-container {
        width: min(920px, 86%);
    }

    .pa-hero {
        padding: 76px 0 70px;
    }

    .pa-hero h1 {
        font-size: clamp(32px, 2.9vw, 40px);
    }

    .pa-block h2 {
        font-size: clamp(27px, 2.5vw, 33px);
    }

    .pa-block h3 {
        font-size: clamp(16px, 1.35vw, 19px);
    }

    .pa-block p,
    .pa-block ul {
        font-size: 16px;
        line-height: 1.8;
    }
}
 
.start-exploring-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    background-color: #1F3A93;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
}
 
.start-exploring-btn:hover {
    background-color: #1F3A93;
}
 
 /*  ABOUT  */

.about-hero {
    height: 85vh;
    background-image: url("images/aboutpage.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 90px;
}
.about-content {
    padding: 100px 60px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}
.about-section { max-width: 850px; text-align: center; }
.about-section h2 { font-size: 36px; margin-bottom: 25px; color: #1F3A93; }
.about-section p { font-size: 18px; line-height: 1.8; color: #444; margin-bottom: 20px; }
.about-textbox {
    background-color: white;
    width: 75%;
    max-width: 900px;
    padding: 70px 80px;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0,0,0,0.18);
}
.about-textbox h1 { font-size: 48px; margin-bottom: 30px; }
.about-textbox p { font-size: 18px; line-height: 1.7; color: #333; }
 
/*  TEAM SECTION  */
.team-section { padding: 100px 80px; background-color: #f9f9f9; }
.team-intro { max-width: 800px; margin: 0 auto 60px auto; text-align: left; }
.team-intro h2 { font-size: 32px; color: #1F3A93; margin-bottom: 20px; }
.team-intro p { font-size: 16px; line-height: 1.8; color: #444; }
.team-cards { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.team-card {
    max-width: 280px;
    padding: 20px;
    text-align: center;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.team-card:hover { transform: translateY(-10px); }
.team-card img { width: 100%; height: auto; border-radius: 6px; margin-bottom: 20px; display: block; }
.team-card h3 { font-size: 22px; color: #1F3A93; margin-bottom: 15px; }
.team-card p { font-size: 15px; line-height: 1.7; color: #555; }
 
 
/* Explore Section */
.explore {
    padding: 34px 20px 46px;
    max-width: 1080px;
    margin: 0 auto;
}

.explore-header {
    text-align: center;
    margin-bottom: 22px;
}

.explore-header h1 {
    margin: 0;
    font-size: 38px;
    line-height: 1.1;
    color: #1F3A93;
    font-weight: 800;
}

/* Explore Search Section */
.search-container {
    margin-bottom: 18px;
}

.search-box {
    max-width: 620px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #1F3A93;
    border-radius: 12px;
    padding: 6px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    box-shadow: none;
}

.search-box input {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 15px;
    background: #fff;
}

.search-box input:focus {
    outline: none;
    border-color: #1F3A93;
}

.search-box button {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background-color: #1f3c88;
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.search-box button:hover {
    background-color: #1b2f78;
}

/*Filters*/

.filter-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.filter-actions button {
    padding: 9px 12px;
    border: none;
    border-radius: 8px;
    background: #1f3c88;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.filter-actions button:hover {
    background: #1b2f78;
}

.clear-filters {
    text-align: center;
    display: inline-block;
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    color: #374151;
    background: #fff;
    text-decoration: none;
    font-weight: 600;
}

.clear-filters:hover {
    border-color: #1F3A93;
    color: #1F3A93;
}

.results-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 6px 0 0;
    box-shadow: none;
}

.results {
    margin-top: 0;
}

.results-count {
    margin: 0 0 14px;
    color: #4b5563;
    font-weight: 700;
    font-size: 14px;
}

/*Study's explore page*/

.study-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.study-card,
.study-detail-card {
    background: #fff;
    border: 1px solid #1F3A93;
    border-radius: 10px;
    padding: 14px;
    box-shadow: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.study-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(17, 24, 39, 0.08);
}

.study-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.study-chip {
    display: inline-block;
    background: #ffffff;
    color: #1F3A93;
    border: 1px solid #1F3A93;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
}

.study-chip-soft {
    background: #ffffff;
    color: #1F3A93;
    border-color: #1F3A93;
}

.study-card h3,
.study-detail-card h1 {
    margin: 0 0 8px;
    color: #1F3A93;
    font-size: 22px;
}

.study-card p,
.study-detail-card p {
    margin: 0;
    color: #333;
    line-height: 1.5;
    font-size: 14px;
}

.study-description {
    color: #334155;
}

.study-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #1F3A93;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}

.study-link:hover {
    opacity: 0.9;
}

/*  EXPLORE MEDIA  */

@media (max-width: 980px) {
    .explore-header h1 {
        font-size: 34px;
    }

    .study-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 640px) {
    .search-box {
        grid-template-columns: 1fr;
    }

    .study-grid {
        grid-template-columns: 1fr;
    }

}

.explore-header h1 {
    font-size: 72px;
}

.search-container {
    margin-bottom: 10px;
}

.search-box {
    max-width: 460px;
    margin: 0 auto;
    border-radius: 999px;
    padding: 6px;
}

.search-box input {
    display: block;
    padding: 12px 14px;
    border-radius: 999px;
}

.search-box button {
    border-radius: 999px;
    padding: 12px 22px;
}

.explore-content {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 24px;
    align-items: start;
}

.filters-side {
    position: sticky;
    top: 18px;
}

.filter-block {
    margin-bottom: 12px;
}

.filter-block label {
    display: block;
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.filter-block select {
    width: 100%;
    border: 2px solid #1F3A93;
    padding: 8px 10px;
    border-radius: 0;
    background: #fff;
}

.filter-actions {
    justify-content: flex-start;
    margin-top: 8px;
}

.simple-reset {
    margin-top: 0;
}

.study-grid-simple {
    grid-template-columns: 1fr;
}

.study-card-simple {
    display: block;
    border-radius: 0;
    border: 1px solid #1F3A93;
    box-shadow: none;
    padding: 24px;
}

.study-card-content {
    display: block;
}

.study-meta-simple {
    margin-bottom: 8px;
}

.study-card-simple h3 {
    font-size: 46px;
    line-height: 1.05;
    margin-bottom: 10px;
}

.study-card-simple .study-description {
    font-size: 18px;
    max-width: 760px;
}

.study-card-simple .study-link {
    margin-top: 14px;
    color: #1F3A93;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

@media (max-width: 1100px) {
    .explore-header h1 {
        font-size: 50px;
    }

    .explore-content {
        grid-template-columns: 1fr;
    }

    .filters-side {
        position: static;
    }

    .study-card-simple h3 {
        font-size: 34px;
    }
}

/* Login Section */
.auth-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.3);
    width: 300px;
    margin: 50px auto;
}

.login-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.login-form button {
    width: 100%;
    padding: 10px;
    background-color: #1F3A93;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-form button:hover {
    background-color: rgb(232, 136, 2);
}

.login-form p {
    text-align: center;
    margin-top: 15px;
}

.login-form a {
    color: rgb(232, 136, 2);
    text-decoration: none;
}

.login-form a:hover {
    text-decoration: underline;
}
/* Study Hero Section */
.study-hero {
    display: flex;
    height: 90vh;
    width: 100%;
    padding-bottom: 60px;
}

.study-hero-image {
    flex: 1;
    max-width: 50%;
    height: 100%;
    overflow: hidden;
}

.study-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.study-hero-text {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 60px 0 60px;
}
.study-hero-text h1 {
    font-size: 48px;
    margin-bottom: 5px;
    color: rgb(232, 136, 2);
    font-weight: 700;
}

.study-hero-text h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px;
    color: rgb(232, 136, 2);
    font-weight: 700;
}
.study-hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.section-divider {
    width: 85%;
    height: 4px;
    background-color: rgb(232, 136, 2);
    margin: 30px auto 10px auto;    border-radius: 3px;
}
/* Study Overview Section */
.study-overview {
    width: 100%;
    padding: 30px 100px;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

.overview-content {
    max-width: 1200px;
    margin: 0 auto;
}

.study-overview h2 {
    font-size: 34px;
    margin-bottom: 10px;
    color: rgb(232, 136, 2);
}

.study-overview p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.study-overview .highlight {
    font-weight: 700;
    font-size: 19px;
}

.study-info {
    background-color: #f9f9f9;
    padding: 50px 100px;
}

.info-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.info-column {
    flex: 1;
    padding: 0 20px;
    position: relative;
}
.info-column:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background-color: #1F3A93;
}

.info-column h3 {
    color: rgb(232, 136, 2);
    font-size: 26px;
    margin-bottom: 15px;
}

.info-column p,
.info-column li {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.info-column ul {
    padding-left: 20px;
}

@media (max-width: 900px) {
    .info-container {
        flex-direction: column;
        gap: 30px;
    }
    .info-column:not(:last-child)::after {
        display: none;
    }
}
/* Important Dates Section */
.important-dates {
    padding: 50px 100px;
    background-color: #f9f9f9;
}

.important-dates-container {
    max-width: 1200px;
    margin: 0 auto;
}

.important-dates-header {
    text-align: left;
    margin-bottom: 30px;
}

.important-dates-header h2 {
    font-size: 34px;
    color: rgb(232, 136, 2);
    margin-bottom: 10px;
}

.important-dates-header p {
    font-size: 17px;
    color: #555;
    margin: 0;
}

.dates-timeline {
    border-left: 3px solid #1F3A93;
    padding-left: 24px;
}

.date-card {
    position: relative;
    background-color: transparent;
    border-radius: 0;
    padding: 0 0 22px 0;
    box-shadow: none;
    border: none;
}

.date-card::before {
    content: "";
    position: absolute;
    top: 4px;
    left: -32px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgb(232, 136, 2);
    box-shadow: none;
}

.date-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #1F3A93;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 6px;
}

.date-card h3 {
    margin: 0 0 6px 0;
    color: #202020;
    font-size: 23px;
}

.date-card p {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .important-dates {
        padding: 45px 28px;
    }

    .important-dates-header h2 {
        font-size: 30px;
    }

    .date-card {
        padding-bottom: 20px;
    }
}
/* Future and Stories Section */
.future-stories {
    padding: 52px 80px 16px;
    background-color: #f3f4f6;
}

.future-stories-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.future-column h2,
.stories-column h2 {
    font-size: 34px;
    margin: 0 0 20px;
    color: #111;
}

.future-intro,
.stories-intro {
    margin: 0 0 22px;
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}

.future-item {
    margin-bottom: 24px;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

.future-item h3 {
    margin: 0 0 8px;
    font-size: 26px;
    color: rgb(232, 136, 2);
}

.future-item p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #2b2b2b;
}

.story-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.story-item.reverse {
    flex-direction: row-reverse;
}

.story-image-frame {
    width: 200px;
    height: 140px;
    background-color: #e0e0e0;
    padding: 12px;
    box-sizing: border-box;
    flex-shrink: 0;
    border-radius: 0;
}

.story-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-text h3 {
    margin: 0 0 6px 0;
    font-size: 24px;
    color: #222;
}

.story-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #2f2f2f;
    max-width: 440px;
}

@media (max-width: 900px) {
    .future-stories {
        padding: 45px 28px;
    }

    .future-stories-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .future-column h2,
    .stories-column h2 {
        font-size: 30px;
    }

    .story-item.reverse {
        flex-direction: row;
    }

    .story-image-frame {
        width: 200px;
        height: 180px;
    }
}
button {
    background-color: #2d2d2d;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

button:hover {
    background-color: #444;
}
.dashboard-v2 {
    max-width: 1140px;
    margin: 36px auto 56px;
    padding: 0 20px;
}

/*Dashboard*/
.dash-welcome {
    background: linear-gradient(135deg, #1F3A93 0%, #2743a5 55%, #304fb3 100%);
    color: #fff;
    border-radius: 18px;
    padding: 28px 28px 24px;
    box-shadow: 0 18px 38px rgba(31, 58, 147, 0.24);
}

.dash-kicker {
    margin: 0 0 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.9;
}

.dash-welcome h1 {
    margin: 0;
    font-size: 38px;
    color: #fff;
}

.dash-welcome p {
    margin: 10px 0 0;
    max-width: 700px;
    opacity: 0.95;
}

.dash-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.dash-pills span {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 600;
    font-size: 13px;
}

.dash-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.dash-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.dash-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.dash-card-head h2 {
    margin: 0;
    font-size: 22px;
    color: #1F3A93;
}

.dash-card-head h2 i {
    color: #1F3A93;
    margin-right: 6px;
}

.dash-card-head a {
    color: #1F3A93;
    font-weight: 700;
    text-decoration: none;
}

.dash-card-head a:hover {
    text-decoration: underline;
}

.dash-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.dash-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #d8deea;
    border-radius: 12px;
    padding: 10px 12px;
    background: #f8fbff;
}

.dash-list li span {
    background: #eaf0ff;
    border: 1px solid #bfd0ff;
    color: #1F3A93;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 9px;
}

.dash-note-text {
    flex: 1;
}

.dash-remove-btn {
    border: 1px solid #ccd5e5;
    background: #fff;
    color: #1F3A93;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.dash-remove-btn:hover {
    background: #edf2ff;
}

@media (max-width: 900px) {
    .dash-grid {
        grid-template-columns: 1fr;
    }

    .dash-welcome h1 {
        font-size: 30px;
    }

}
/* Study Schools Section */
.school-section {
    width: 100%;
    padding: 20px 0 76px;
    background-color: #f4f4f4;
    text-align: center;
}

.school-section-header {
    max-width: 900px;
    margin: 0 auto 26px;
    padding-top: 12px;
}
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    box-sizing: border-box;
}
.school-section h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 30px;
}
.section-text {
    font-size: 19px;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555;
    line-height: 1.6;
}
.school-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
}
.school-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
}
.school-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.school-card img:hover {
    transform: scale(1.05);
}
.school-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}
.btn {
    padding: 9px 24px;
    background-color: #1F3A93;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn:hover {
    background-color: #1F3A93;
}

.school-link {
    display: inline-block;
    padding: 9px 24px;
    background-color: #1F3A93;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.school-link:hover {
    background-color: #1F3A93;
    transform: translateY(-1px);
}
/* Study Map Section */
.study-schools-map {
    padding: 0;
    margin: 0;
    line-height: 0;
    background: transparent;
}

.study-schools-map iframe {
    display: block;
    width: 100vw;
    height: 430px;
    margin-left: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
}

@media (max-width: 900px) {
    .study-schools-map iframe {
        height: 300px;
    }
}

/* TU Delft Page Section */
.tu-simple-page {
    background: #f2f2f2;
}

.tu-simple-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.tu-simple-banner {
    padding: 42px 0 24px;
}

.tu-simple-banner-image {
    padding: 0;
}

.tu-simple-banner-image img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.tu-simple-banner .tu-simple-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 34px;
    align-items: start;
}

.tu-simple-content {
    padding: 12px 0 38px;
}

.tu-program-head {
    padding: 28px 0 18px;
    background: linear-gradient(180deg, #ffffff 0%, #eaf0ff 100%);
}

.tu-program-head .tu-simple-inner h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.02;
    color: #1F3A93;
}

.tu-program-head .tu-simple-inner .tu-program-subtitle {
    margin: 8px 0 0;
    color: #1F3A93;
    font-size: clamp(18px, 2.4vw, 28px);
    font-weight: 800;
}

.tu-program-lead {
    margin: 12px 0 0;
    max-width: 760px;
    color: #1F3A93;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.tu-simple-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
}

.tu-simple-text p,
.tu-simple-text li {
    font-size: 16px;
    line-height: 1.5;
    color: #222;
}

.tu-simple-text h3 {
    margin: 18px 0 4px;
    font-size: 30px;
    line-height: 1.1;
    color: rgb(232, 136, 2);
}

.tu-simple-text ul {
    margin: 0;
    padding-left: 26px;
}

.tu-simple-map {
    padding: 0;
    margin: 0;
    line-height: 0;
}

.tu-simple-map iframe {
    display: block;
    width: 100vw;
    height: 360px;
    margin-left: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
}

@media (max-width: 1100px) {
    .tu-simple-banner .tu-simple-inner,
    .tu-simple-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 700px) {
    .tu-simple-banner {
        padding-top: 34px;
    }

    .tu-simple-text p,
    .tu-simple-text li {
        font-size: 15px;
    }

    .tu-simple-text h3 {
        font-size: 26px;
    }

    .tu-simple-map iframe {
        height: 280px;
    }

    .tu-simple-banner-image img {
        height: 170px;
    }
}
/* Auth Override Section */
.auth-container {
    width: min(360px, calc(100% - 40px)) !important;
    max-width: 360px !important;
    margin: 40px auto !important;
    box-sizing: border-box !important;
    display: block !important;
}
/* Explore Override Section */
.explore {
    max-width: 1120px !important;
    margin: 0 auto !important;
    padding: 52px 20px 52px !important;
}

.explore-header {
    text-align: center !important;
    margin-bottom: 24px !important;
}

.explore-header h1 {
    margin: 0 auto !important;
    width: 100%;
    text-align: center !important;
    font-size: clamp(34px, 5.2vw, 60px) !important;
    line-height: 1.05 !important;
}

.search-container {
    margin-bottom: 24px !important;
}

.search-box {
    max-width: 520px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 8px !important;
    border-radius: 999px !important;
    border: 1px solid #1F3A93 !important;
    padding: 6px !important;
    background: #fff !important;
}

.search-box input {
    display: block !important;
    padding: 12px 14px !important;
    border-radius: 999px !important;
    border: 1px solid transparent !important;
    font-size: 15px !important;
}

.search-box button {
    padding: 12px 20px !important;
    border-radius: 999px !important;
}

.explore-content {
    display: grid !important;
    grid-template-columns: 280px 1fr !important;
    gap: 24px !important;
    align-items: start !important;
}

.results-panel {
    min-width: 0;
}

.filters-side {
    position: sticky;
    top: 16px;
    background: #fff;
    border: 1px solid #1F3A93;
    border-radius: 8px;
    padding: 18px;
    box-sizing: border-box;
    margin-top: 40px;
}

.filter-block {
    margin-bottom: 12px !important;
}

.filter-block label {
    display: block;
    margin: 0 0 6px;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.filter-block select {
    width: 100%;
    border-radius: 8px !important;
    border: 1px solid #1F3A93 !important;
    padding: 10px !important;
    background: #fff !important;
}

.filter-actions {
    margin-top: 12px;
}

.filter-actions button,
.clear-filters {
    border-radius: 8px !important;
    padding: 10px 14px !important;
}

.explore .study-grid,
.study-grid.study-grid-simple {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
}

.study-card.study-card-simple {
    border: 1px solid #1F3A93 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    padding: 18px !important;
}

.study-card.study-card-simple h3 {
    font-size: clamp(22px, 3.3vw, 32px) !important;
    margin: 0 0 8px !important;
}

.study-card.study-card-simple .study-description {
    font-size: 15px !important;
    line-height: 1.55 !important;
    max-width: 780px !important;
}

@media (max-width: 980px) {
    .explore-content {
        grid-template-columns: 1fr !important;
    }

    .filters-side {
        position: static !important;
        margin-bottom: 14px;
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .search-box {
        grid-template-columns: 1fr !important;
        border-radius: 12px !important;
    }

    .search-box input,
    .search-box button {
        border-radius: 10px !important;
    }

    .study-card.study-card-simple {
        padding: 14px !important;
    }
}
.study-action-btn {
    border: 1px solid #1F3A93;
    background: #fff;
    color: #1F3A93;
    border-radius: 8px;
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.study-action-btn:hover {
    background: #eef2ff;
}

.study-action-btn.favorite-btn.active {
    background: rgb(232, 136, 2);
    color: #fff;
}

.dash-empty-item {
    color: #64748b;
    font-style: italic;
}

/* Page Actions Section */
.page-actions-wrap {
    padding: 20px 20px 28px;
    background: linear-gradient(180deg, #27378c 0%, #2e3f9f 45%, #3149b0 100%);
}

.page-actions-card {
    max-width: 1060px;
    margin: 0 auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    color: #fff;
}

.page-actions-header {
    margin-bottom: 24px;
}

.page-actions-header h2 {
    margin: 0 0 4px;
    color: #fff;
    font-size: clamp(24px, 3.2vw, 32px);
    line-height: 1.05;
}

.page-actions-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.page-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.action-block h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(20px, 2.7vw, 26px);
    line-height: 1.02;
}

.action-block .study-action-btn {
    width: min(100%, 280px);
    min-width: 0;
    display: inline-block;
    border: 0;
    background: #0f1d57;
    color: #fff;
    border-radius: 2px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.action-block .study-action-btn:hover {
    background: #132771;
}

.action-block .study-action-btn.favorite-btn.active {
    background: rgb(232, 136, 2);
    color: #fff;
}

.action-block-note label {
    display: block;
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 700;
}

.action-note-input {
    width: min(100%, 360px);
    min-height: 86px;
    background: #0b1848;
    border: 0;
    color: #fff;
    border-bottom: 3px solid #050b22;
    padding: 10px 12px;
    box-sizing: border-box;
    resize: vertical;
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 10px;
}

.action-block-note .note-save-btn {
    width: min(100%, 360px) !important;
}

.action-note-input::placeholder {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 980px) {
    .page-actions-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .action-block .study-action-btn {
        width: 100%;
        min-width: 0;
    }
}

/* Laptop Layout Adjustments */
@media (max-width: 1440px) {
    .navbar {
        padding: 0 28px;
        height: 120px;
    }

    .logo {
        font-size: 22px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .search-icon {
        font-size: 18px;
    }

    .hero-home {
        padding: 72px 30px 48px;
        gap: 38px;
    }

    .hero-home-image {
        width: min(48vw, 560px);
        height: min(36vw, 420px);
    }

    .hero-home-text h1 {
        font-size: clamp(38px, 4.2vw, 50px);
    }

    .home h2 {
        font-size: clamp(32px, 3vw, 40px);
        margin-bottom: 42px;
    }

    .home-cards {
        gap: 24px;
        max-width: 1120px;
        flex-wrap: wrap;
    }

    .home-card {
        width: min(100%, 250px);
        height: auto;
        min-height: 280px;
        padding: 28px 22px;
    }

    .home-cta-content {
        padding-left: 28px;
    }

    .home-cta-content h2 {
        font-size: clamp(34px, 4vw, 46px);
    }

    .guide-section {
        gap: 30px;
    }

    .steps-section,
    .study-difference,
    .test-hero,
    .results-hero,
    .student-stories-intro,
    .pa-hero,
    .pa-grid-section,
    .pa-vision {
        padding-left: 9%;
        padding-right: 9%;
    }
}

@media (max-width: 1200px) {
    .navbar {
        padding: 0 20px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .search-icon {
        font-size: 15px;
    }

    .hero-home {
        gap: 24px;
    }

    .hero-home-image {
        width: min(47vw, 500px);
        height: min(34vw, 360px);
    }

    .home-cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 20px;
    }

    .home-card {
        width: auto;
    }

    .about-content {
        padding: 70px 24px;
    }

    .pa-hero h1 {
        font-size: clamp(36px, 8vw, 52px);
    }

    .pa-hero p,
    .pa-block p,
    .pa-block ul {
        font-size: 17px;
    }

    .pa-block h2 {
        font-size: 38px;
    }

    .pa-block h3 {
        font-size: 28px;
    }

    .team-section {
        padding: 70px 28px;
    }
}

@media (max-width: 1080px) {
    .navbar {
        height: auto;
        padding: 16px 20px;
        flex-wrap: wrap;
        row-gap: 12px;
    }

    .logo {
        font-size: 19px;
    }

    .search-icon {
        margin-left: auto;
    }

    .nav-links {
        order: 3;
        flex: 1 0 100%;
        margin-left: 0;
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 8px;
        gap: 14px;
    }

    .nav-links a {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .hero-home {
        flex-direction: column;
        text-align: center;
    }

    .hero-home-text {
        max-width: 760px;
    }

    .hero-home-image {
        width: min(100%, 760px);
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .home-cta-content {
        padding-left: 0;
        text-align: center;
    }

    .home-cta-btn {
        margin: 24px auto 0;
    }

    #test-questions {
        padding: 42px 18px;
    }

    #question {
        padding: 24px 18px;
    }
}
