main section {
    padding: 120px 0;
}


main h2 {
    font-size: 56px;
    line-height: 1.3;
}

main h3 {
    font-size: 36px;
    line-height: 1.3;
}

main p {
    font-size: 22px;
}

/* Banner */

.vh_banner {
    padding: 220px 0 400px;
    background-color: #084E91;
    background: #084E91 url("/static/images/home/banner.webp") no-repeat;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.vh_banner h1 {
    font-size: 78px;
    line-height: 1.25;
    margin: 0 auto 50px;
}

.vh_banner p {
    font-size: 28px;
}

/* Meaning Section */

.vhmean_wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
}

.vhmean_title {
    width: 500px;
}

.vhmean_title h2 {
    margin-bottom: 20px;
}

.vhmean_title h2 span {
    font-family: "Instrument Sans";
    background: #004a9c;
    background: -webkit-linear-gradient(175deg, #00519E 0%, #004a9c 100%);
    background: -moz-linear-gradient(175deg, #00519E 0%, #004a9c 100%);
    background: linear-gradient(175deg, #00519E 0%, #004a9c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}

.vhmean_description p span {
    font-style: italic;
    font-weight: 700;
}

.vhmean_title img {
    max-width: 200px;
}

.vhmean_description {
    width: 560px;
}

/* Orgin Story */

.vh_story {
    padding: 160px 0 400px;
    background-color: #484937;
    background: #484937 url("/static/images/home/plane-on-the-sky.webp") no-repeat;
    background-size: cover;
    color: #fff;
}

.vh_story_wrapper {
    color: #fff;
    max-width: 830px;
}

.vh_story_wrapper h2 {
    margin-bottom: 40px;
}


.vh_story_wrapper p {
    margin-bottom: 30px;
}

/* Vision and mistion */

.vaan_traj h2,
.vaan_traj p:not(.vaan_traj_wrapper p) {
    text-align: center;
}

.vaan_traj p:not(.vaan_traj_wrapper p) {
    margin: 20px auto 40px;
}

.vaan_traj_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}


.vh_vision {
    background:
        radial-gradient(700px 400px at 100% 0%, rgba(8, 78, 145, 0.22), transparent 60%),
        linear-gradient(160deg, #0B1E33 0%, #084E91 100%);
    color: #fafafa;
    border: 1px solid rgba(8, 78, 145, 0.35);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1.1);
    text-align: left;
}

.vh_mission {
    background:
        radial-gradient(800px 400px at 0% 0%, rgba(8, 78, 145, 0.12), transparent 60%),
        linear-gradient(160deg, #F5FAFF 0%, #EAF4FF 100%);
    border: 1px solid rgba(8, 78, 145, 0.18);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1.1);
    text-align: left;
}

.vh_mission,
.vh_vision {
    width: 515px;
    padding: 55px;
}

.vh_mission h3,
.vh_vision h3 {
    margin-bottom: 20px;
}

.vh_mission h3 {
    color: #084783;
}

.vh_vision h3 {
    color: #acc4df;
}

/* Focus Area's */
.vh_focusarea {
    background: #191919;
    color: #fff;
}
.vh_focusarea h2,
.vh_focusarea h3,
.vh_focusarea p {
    text-align: center;
}

.vh_focusarea p:not(.fa_card p) {
    margin: 20px auto 60px;
    max-width: 900px;
}

.vh_fa_wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 50px;
}


.vhfa_icons {
    display: block;
    background: url("/static/images/home/icons.svg") no-repeat;
    background-size: 170px auto;
    background-position: 2px 2px;
    height: 73px;
    width: 64px;
    margin: 0 auto 20px;
}

.fa_card {
    width: 280px;
}

.vh_focusarea h3 {
    margin-bottom: 20px;
}

.vhfa_icons.vi_tech {
    background-position: -90px 1px;
}

.vhfa_icons.vi_rd {
    background-position: -1px -107px;
    width: 69px;
}

.vhfa_icons.vi_sust {
    background-position: -95px -107px;
    width: 77px;
}

/* Closeup */

.vh_endup {
    padding: 150px 0 400px;
    background-color: #915108;
    background: #915108 url("/static/images/home/end-up.webp") no-repeat;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.vh_endup h1 {
    font-size: 78px;
    line-height: 1.25;
    margin: 0 auto 60px;
}

.vh_endup p span {
    font-family: "Instrument Serif";
}

.vh_endup p {
    font-size: 28px;
}

/* Fix: original CSS targets h1 but the markup uses h2 */
.vh_endup h2 {
    font-size: 78px;
    line-height: 1.25;
    margin: 0 auto 60px;
}

/* ==========================================================================
   RESPONSIVE — HOME PAGE
   ========================================================================== */

/* Large tablet (≤ 1199px) */
@media (max-width: 1199px) {
    main h2 { font-size: 48px; }
    main h3 { font-size: 30px; }

    .vh_banner { padding: 200px 0 320px; }
    .vh_banner h1 { font-size: 68px; }

    .vhmean_title { width: 360px; }
    .vhmean_description { width: 460px; }

    .vh_story { padding: 140px 0 320px; }

    .vh_vision,
    .vh_mission { width: 440px; padding: 44px; box-sizing: border-box; }

    .vh_endup { padding: 130px 0 320px; }
    .vh_endup h2 { font-size: 68px; }
}

/* Tablet landscape (≤ 1023px) */
@media (max-width: 1023px) {
    main section { padding: 100px 0; }
    main h2 { font-size: 42px; }
    main h3 { font-size: 26px; }
    main p { font-size: 19px; }

    .vh_banner { padding: 180px 0 240px; }
    .vh_banner h1 { font-size: 56px; }
    .vh_banner p { font-size: 22px; }

    .vhmean_wrapper { gap: 32px; }
    .vhmean_title { width: 300px; }
    .vhmean_description { width: auto; flex: 1; }

    .vh_story { padding: 120px 0 240px; }

    .vh_vision,
    .vh_mission { width: calc(50% - 10px); min-width: 280px; padding: 40px; box-sizing: border-box; }

    .vh_endup { padding: 120px 0 240px; }
    .vh_endup h2 { font-size: 56px; }
    .vh_endup p { font-size: 24px; }
}

/* Tablet portrait (≤ 767px) */
@media (max-width: 767px) {
    main section { padding: 80px 0; }
    main h2 { font-size: 34px; }
    main h3 { font-size: 22px; }
    main p { font-size: 17px; }

    /* Banner */
    .vh_banner { padding: 160px 0 180px; background-position: center top; }
    .vh_banner h1 { font-size: 46px; margin: 0 auto 28px; }
    .vh_banner p { font-size: 20px; }

    /* Meaning */
    .vhmean_wrapper { flex-direction: column; gap: 28px; }
    .vhmean_title { width: 100%; }
    .vhmean_description { width: 100%; }
    .vhmean_title img { max-width: 150px; }

    /* Origin story */
    .vh_story { padding: 100px 0 180px; background-position: center; }
    .vh_story_wrapper { max-width: 100%; }
    .vh_story_wrapper h2 { margin-bottom: 24px; }
    .vh_story_wrapper p { margin-bottom: 18px; }

    /* Vision / Mission */
    .vaan_traj_wrapper { flex-direction: column; align-items: stretch; }
    .vh_vision,
    .vh_mission { width: 100%; padding: 36px; box-sizing: border-box; min-width: unset; }

    /* Focus area */
    .vh_fa_wrapper { gap: 28px; }
    .fa_card { width: calc(50% - 14px); }

    /* End-up */
    .vh_endup { padding: 100px 0 180px; background-position: center; }
    .vh_endup h2 { font-size: 46px; margin-bottom: 24px; }
    .vh_endup p { font-size: 22px; }
}

/* Mobile (≤ 479px) */
@media (max-width: 479px) {
    main section { padding: 60px 0; }
    main h2 { font-size: 28px; }
    main h3 { font-size: 20px; }
    main p { font-size: 16px; }

    /* Banner */
    .vh_banner { padding: 130px 0 120px; }
    .vh_banner h1 { font-size: 36px; margin: 0 auto 22px; }
    .vh_banner p { font-size: 18px; }

    /* Meaning */
    .vhmean_wrapper { gap: 22px; }
    .vhmean_title img { max-width: 130px; }

    /* Story */
    .vh_story { padding: 80px 0 120px; }
    .vh_story_wrapper h2 { margin-bottom: 18px; }
    .vh_story_wrapper p { margin-bottom: 14px; }

    /* Vision / Mission */
    .vh_vision, .vh_mission { padding: 26px 22px; }

    /* Focus area — single column */
    .fa_card { width: 100%; }

    /* End-up */
    .vh_endup { padding: 80px 0 120px; }
    .vh_endup h2 { font-size: 34px; margin-bottom: 18px; }
    .vh_endup p { font-size: 18px; }
}

/* Extra small (≤ 359px) */
@media (max-width: 359px) {
    .vh_banner h1 { font-size: 28px; }
    main h2 { font-size: 24px; }
    .vh_endup h2 { font-size: 28px; }
    .vh_banner p,
    .vh_endup p { font-size: 16px; }
}