@font-face {
    font-family: 'Aeonik-Regular';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/aeonik-regular.ttf') format('ttf');
    src: url('fonts/aeonik-regular.woff') format('woff');
}

@font-face {
    font-family: 'Aeonik-Medium';
    font-style: medium;
    font-weight: 600;
    src: url('fonts/aeonik-medium.ttf') format('ttf');
    src: url('fonts/aeonik-medium.woff') format('woff');
}

:root {
    --blue: #0062FB;
    --black: #131315;
    --black-rgb: 19, 19, 21;
    --neon-green: #D8FF00;
    --grey: #EDEDEB;
    --dark-grey: #cacaca;
    --darker-grey: #505050;
    --white: #FFFFFF;
    --white-rgb: 255, 255, 255;

    --max-height: 2000px
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: fit-content;
    min-width: 220px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background: transparent; /*var(--black);*/
}

body::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Aeonik-Regular', sans-serif;
    color: var(--blue);
    line-height: 1.6;
    justify-content: center;
    padding-bottom: 0px;
    height: fit-content;
    background: transparent;
    background-color: transparent;
}

.page-container {
    width: 100%;
    min-width: 220px;
    height: fit-content;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

h1,
h2,
h3,
h4 {
    padding: 0;
    margin: 0;
}

h1 {
    color: var(--blue);
    font-size: clamp(4rem, 15vw + 1rem, 12.5rem);
    font-weight: 400;
    line-height: 0.75;
}

h2 {
    color: var(--blue);
    font-size: clamp(2.5rem, 8vw + 1rem, 5.25rem);
    font-weight: 500;
    line-height: 1;
}

h3 {
    color: var(--blue);
    font-size: clamp(2rem, 6vw + 1rem, 3.875rem);
    font-weight: 500;
    line-height: 0.9;
}

h4 {
    color: var(--grey);
    font-size: clamp(1.5rem, 4vw + 1rem, 2.75rem);
    font-weight: 500;
}

p {
    color: var(--blue);
    font-family: 'Aeonik-Regular', sans-serif;
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.3125rem);
}

.pill p {
    font-family: 'Aeonik-Medium', sans-serif;
    font-size: 18px;
}

textarea {
    border: none;
    overflow: auto;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    resize: none;
}

textarea:focus {
    box-shadow: 0 0 8px rgba(0, 98, 251, 0.2);
}

textarea.textarea-error {
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.25);
}

.main-content {
    max-width: 90vw;
    margin: 0 auto;
    margin-top: 0;
    height: fit-content;
}

.questions-section {
    display: flex;
    flex-direction: column;
    gap: 0px;
    overflow: hidden;
}

.question-block {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin-top: 0px;
    visibility: hidden;
    transition: max-height 0.5s ease-in-out,
        opacity 0.3s ease,
        visibility 0s linear 0.5s,
        margin-top 0.5s ease-in-out,
        margin-bottom 0.5s ease-in-out,
        padding-top 0.5s ease-in-out,
        padding-bottom 0.5s ease-in-out;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.question-block.active {
    max-height: var(--max-height);
    opacity: 1;
    overflow: visible;
    visibility: visible;
    margin-top: 56px;
    transition:
        overflow 0s linear 0s,
        max-height 0.5s ease-in-out,
        opacity 0.3s ease 0.1s,
        visibility 0s linear 0s,
        margin-top 0.5s ease-in-out,
        margin-bottom 0.5s ease-in-out,
        padding-top 0.5s ease-in-out,
        padding-bottom 0.5s ease-in-out;
}

.question-block.active:nth-child(1) {
    margin-top: 0;
}

#section2 {
    margin-left: 80px;
}

#section3 {
    margin-left: 180px;
}

.question-block .question-number-wrapper {
    display: flex;
    align-items: stretch;
}

.question-block .question-number-wrapper .question-number {
    margin-right: 60px;
    align-self: flex-start;
}

.question-block .question-number-wrapper .vertical-line {
    display: none;
}

.question-block.active .question-details::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background-color: var(--blue);
    display: block;
}

.question-block .question-details::before {
    display: none;
    bottom: 100%;
}

.question-block .question-details {
    position: relative;
    padding-left: 32px;
    overflow-y: visible;
}

.question-block[style*="display: none"] .question-details::before {
    display: none;
}

.horizontal-line {
    display: none;
    height: 1.25px;
    width: 100%;
    border: solid 1.15px var(--blue);
}

.question-details h4 {
    margin-bottom: 32px;
    line-height: 44px;
    max-width: 550px;
    color: var(--grey);
}

.question-details h4 span {
    color: var(--blue);
}

.question-details p {
    padding-bottom: 8px;
    color: var(--grey);
}

.options-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.options-pills .loader {
    padding: 10px;
    text-align: center;
    color: var(--grey);
}

.question-block .pill {
    opacity: 0;
    transform: translateY(15px);
    transition-property: opacity, transform, background-color;
    transition-duration: 0.3s, 0.3s, 0.15s;
    transition-timing-function: ease, ease, ease-in-out;
    transition-delay: 0s, 0s, 0s;
    background-color: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 60px;
    padding: 18px 30px;
    cursor: pointer;
}

.question-block.active .pill {
    opacity: 1;
    transform: translateY(0);
    transition-property: opacity, transform, background-color;
    transition-duration: 0.4s, 0.4s, 0.15s;
    transition-timing-function: ease-out, ease-out, ease-in-out;
}

.question-block.active .pill p {
    color: var(--white);
    padding-bottom: 0px;
    transition: color 0.35s ease-in-out;
}

.question-block.active .pill:hover {
    background-color: var(--white);
    transform: translateY(0);
    transition-property: background-color, transform;
    transition-duration: 0.25s, 0.1s;
    transition-timing-function: ease-in-out, ease-out;
    transition-delay: 0s, 0s !important;
}

.question-block.active .pill:hover p {
    color: var(--blue);
}

.question-block.active .pill.active {
    background-color: var(--neon-green);
}

.question-block.active .pill.active p {
    color: var(--blue);
}

.question-block.active .pill:nth-child(1) { transition-delay: 0.20s, 0.20s, 0s; }
.question-block.active .pill:nth-child(2) { transition-delay: 0.28s, 0.28s, 0s; }
.question-block.active .pill:nth-child(3) { transition-delay: 0.36s, 0.36s, 0s; }
.question-block.active .pill:nth-child(4) { transition-delay: 0.44s, 0.44s, 0s; }
.question-block.active .pill:nth-child(5) { transition-delay: 0.52s, 0.52s, 0s; }
.question-block.active .pill:nth-child(6) { transition-delay: 0.60s, 0.60s, 0s; }
.question-block.active .pill:nth-child(7) { transition-delay: 0.68s, 0.68s, 0s; }
.question-block.active .pill:nth-child(8) { transition-delay: 0.76s, 0.76s, 0s; }

.showcase-section {
    display: flex;
    flex-direction: column;
    gap: 64px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    max-height: 0;
    margin-left: -5vw;
    margin-right: -5vw;
    padding-left: 5vw;
    padding-right: 5vw;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
    transition: opacity 0.4s ease,
        visibility 0s linear 0.4s,
        transform 0.4s ease,
        max-height 0.5s ease-in-out,
        margin-top 0.5s ease-in-out,
        margin-bottom 0.5s ease-in-out;
}

.showcase-section.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 2000px;
    margin-top: 56px;
    overflow: hidden;
    transition: opacity 0.4s ease 0.2s,
        visibility 0s linear 0s,
        transform 0.4s ease 0.2s,
        max-height 0.5s ease-in-out,
        margin-top 0.5s ease-in-out,
        margin-bottom 0.5s ease-in-out;
}

.showcase-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.showcase-section.active .showcase-cards {
    display: flex;
    justify-content: center;
    gap: 14px;
    width: 100%;
    perspective: 1000px;
}

.content-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex: 1;
    min-width: 600px;
    height: 560px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1);
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s ease-out;
    will-change: transform, box-shadow;
    box-shadow: 0 6px 12px rgba(var(--black-rgb), 0.15);
    cursor: pointer;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--content-card-bg);
    background-size: cover;
    background-position: var(--bg-pos-x, 50%) var(--bg-pos-y, 50%);
    transform: scale(var(--bg-scale, 1));
    border-radius: inherit;
    z-index: 0;
    transition: transform 0.4s ease-out, background-position 0.4s ease-out;
    will-change: transform, background-position;
}

.content-card:hover {
    box-shadow: 0 16px 32px rgba(var(--black-rgb), 0.3);
}

.image-card-overlay {
    display: flex;
    z-index: 5;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;

    grid-column: 1;
    grid-row: 1;

    background-color: var(--white);
    border-radius: 12px;
    padding: 20px;

    transform: translateZ(30px) translateX(0px);
    position: relative;
    overflow: hidden;

    transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-card-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--image-card-overlay-bg);
    background-size: cover;
    background-position: center;
    z-index: 0;
    border-radius: inherit;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-card-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--white-rgb), 0);
    z-index: 1;
    border-radius: inherit;
    transition: background-color 0.4s ease-in-out;
    pointer-events: none;
}

.content-card:hover .image-card-overlay:hover {
    box-shadow: 0 6px 18px rgba(var(--black-rgb), 0.35);
    transform: translateY(-5px);
}

.content-card .image-card-overlay:hover::before {
    transform: scale(1.1) rotate(1.5deg);
}

.content-card .image-card-overlay:hover::after {
    background-color: rgba(var(--white-rgb), 0.80);
}

.image-card-overlay .image-card-title {
    font-family: 'Aeonik-Medium', sans-serif;
    font-size: 2.8rem;
    color: var(--black);
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.image-card-overlay .image-card-title::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 12px;
    background-color: var(--neon-green);
    transition: width 0.35s cubic-bezier(0.65, 0.05, 0.36, 1) 0.1s;
}

.content-card .image-card-overlay:hover .image-card-title::after {
    width: 100%;
}

.card-details-text {
    display: -webkit-box;
    position: relative;
    z-index: 2;

    width: 100%;
    flex-grow: 1;

    overflow: hidden;

    font-family: 'Aeonik-Regular', sans-serif;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--darker-grey);
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;

    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.4s ease-out 0.15s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.content-card .image-card-overlay:hover .card-details-text {
    opacity: 1;
    transform: translateX(0);
}

.cta-button {
    z-index: 2;
    background-color: var(--neon-green);
    border: none;
    border-radius: 20px;
    padding: 10px 14px;
    text-transform: uppercase;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.35s ease-in-out, transform 0.15s ease-out, box-shadow 0.15s ease-out;
    position: relative;
}

.cta-button p {
    color: var(--black);
    font-family: 'Aeonik-Medium', sans-serif;
    font-size: 19px;
    font-weight: 400;
    transition: color 0.35s ease-in-out;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: var(--black);
    box-shadow: 0 6px 12px rgba(var(--black-rgb), 0.12);
}

.cta-button:hover p {
    color: var(--neon-green);
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin: 0;
}

.contact-text {
    text-align: left;
    color: var(--grey);
}

.contact-form {
    height: fit-content;
    max-height: 80px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    align-content: stretch;
    justify-content: space-between;
    gap: 32px;
    margin: auto 15vw;
}

.contact-container textarea {
    background-color: var(--white);
    border-radius: 8px;
    padding: 15px;
    font-family: 'Aeonik-Regular';
    font-size: 16px;
    min-height: 120px;
    width: 100%;
    margin-top: 16px;
}

.email-input-wrapper {
    background-color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    flex-grow: 3;
}

.email-input-wrapper input[type="email"] {
    border: none;
    background-color: transparent;
    width: 100%;
    font-family: 'Aeonik-Regular', sans-serif;
    font-size: 16px;
    outline: none;
    color: var(--black);
}

.email-input-wrapper.focused {
    box-shadow: 0 0 8px rgba(0, 98, 251, 0.2);
}

.email-input-wrapper.textarea-error {
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.25);
}

.email-input-wrapper input[type="email"]::placeholder {
    color: var(--darker-grey);
}

.form-submit-area {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.submit-button {
    width: auto;
    flex-grow: 1;
    min-width: 280px;
    min-height: 80px;
    max-height: 80px;
    display: inline-block;
    text-align: center;
    background-color: var(--neon-green);
    color: var(--black);
    border: none;
    padding: 18px 40px;
    border-radius: 64px;
    cursor: pointer;
    transition: background-color 0.35s ease, transform 0.35s ease;
}

.submit-button p {
    color: var(--black);
    font-size: clamp(2.4rem, 2vw + 0.4rem, 1.875rem);
    font-family: 'Aeonik-Medium', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    transition: color 0.25s ease-in-out;
}

.submit-button:hover {
    background-color: var(--black);
    transform: scale(1.03);
    border: var(--neon-green) solid 2px;
    margin: 0px -2px;
}

.submit-button:hover p {
    color: var(--neon-green);
}

.alert-icon {
    background-color: var(--black);
    border: var(--neon-green) solid 2px;
    min-width: 80px;
    min-height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-icon p {
    color: var(--neon-green);
    font-size: 48px;
}

.notification-popup {
    position: fixed;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%) scale(0.5);
    background-color: var(--darker-grey);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(var(--black-rgb), 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        opacity 0.3s ease-out, visibility 0s linear 0.3s;
    font-family: 'Aeonik-Regular', sans-serif;
    font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
    text-align: center;
    min-width: 250px;
    max-width: 90%;
}

.notification-popup p {
    color: var(--black);
}

.notification-popup.show {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease-out, visibility 0s linear 0s;
}

.notification-popup.success {
    background-color: var(--white);
    border: solid 2px var(--neon-green);
}

.notification-popup.error {
    background-color: var(--white);
    border: solid 2px #f44336;
}

@media (max-width: 1200px) {
    .contact-form {
        max-height: 60px;
    }

    .form-submit-area {
        max-width: auto;
    }

    .submit-button {
        min-width: 240px;
        min-height: 60px;
        max-height: 60px;
        padding: 0px 26px;
    }

    .submit-button p {
        font-size: 34px;
    }

    .alert-icon {
        min-width: 60px;
        min-height: 60px;
        max-height: 60px;
    }

    .alert-icon p {
        font-size: 32px;
    }

    .contact-container {
        gap: 30px;
    }

    .email-input-wrapper {
        height: 60px;
    }

    .email-input-wrapper input {
        height: 50%;
    }
    .email-input-wrapper input[type="email"]::placeholder {
        font-size: 14px;
    }

    .email-input-wrapper input[type="email"] {
        font-size: 14px;
    }

    .contact-form {
        gap: 30px;
        margin: auto 5vw;
    }

    .form-submit-area {
        gap: 15px;
    }

    .email-input-wrapper {
        width: 60%;
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .showcase-container {
        gap: 48px;
    }

    .content-card {
        min-width: auto;
        width: 90%;
        height: auto;
        min-height: 480px;
        grid-template-columns: repeat(2, 1fr);
    }

    .image-card-overlay {
        width: 100%;
        height: auto;
        min-height: 300px;
        gap: 24px;
    }

    .alert-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .question-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .question-block .question-number-wrapper {
        margin-bottom: 10px;
    }

    .question-block .question-details {
        padding-left: 0;
    }

    .question-block .question-details::before {
        display: none;
    }

    .showcase-container {
        gap: 32px;
    }

    .showcase-cards {
        flex-direction: column;
        align-items: center;
    }

    .content-card {
        width: 100%;
        min-height: 340px;
        max-height: 340px;
    }

    .image-card-overlay {
        padding: 15px;
        height: auto;
        gap: 16px;
    }

    .image-card-overlay .image-card-title {
        font-size: 2rem;
    }

    .card-details-text {
        font-size: 0.9rem;
    }

    .showcase-section.active h2 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .horizontal-line {
        display: block;
    }

    #section2,
    #section3 {
        margin-left: 0;
    }

    .question-block {
        padding-left: 15px;
        padding-right: 15px;
    }

    .question-block.active .question-details::before {
        width: 0;
    }

    .question-details h4 {
        margin-bottom: 16px;
    }

    .options-pills {
        gap: 10px;
    }

    .showcase-section.active {
        gap: 40px;
    }

    .contact-container {
        margin: 0;
    }
}

@media (max-width: 580px) {

    .pill,
    .cta-button {
        padding: 12px 18px;
    }

     .cta-button p {
        font-size: 16px;
    }

    .question-block .pill {
        padding: 14px 20px;
    }

    .pill p {
        font-size: 16px;
    }

    .showcase-container {
        gap: 16px;
    }
    
    .content-card {
        max-width: 100%;
        min-height: 240px;
        max-height: 240px;
        padding: 12px;
    }

    .image-card-overlay {
        min-height: calc(240px - 12px * 2);
        max-height: calc(240px - 12px * 2);
        gap: 12px;
    }

    .image-card-overlay .image-card-title {
        font-size: 1.6rem;
    }

    .image-card-overlay .cta-button {
        padding: 10px 15px;
    }

    .image-card-overlay .cta-button p {
        font-size: 14px;
    }

    .card-details-text {
        font-size: 0.8rem;
    }

    .submit-button {
        min-width: 200px;
        max-width: 200px;
        padding: 0px 18px;
    }

    .submit-button p {
        font-size: 28px;
    }
}

@media (max-width: 475px) {
    .question-block.active {
        margin-top: 32px;
    }

    .question-block .pill {
        padding: 10px 15px;
    }

    .question-details h4 {
        font-size: 28px;
        line-height: 34px;
    }

    .contact-container .contact-text {
        margin: 0;
        text-align: justify;
    }

    .showcase-section.active {
        margin-top: 32px;
    }

    .content-card {
        min-height: 220px;
        max-height: 220px;
        padding: 8px;
    }

    .image-card-overlay {
        min-height: calc(220px - 8px * 2);
        max-height: calc(220px - 8px * 2);
        gap: 8px;
    }

    .image-card-overlay::before {
        content: none;
    }

    .image-card-overlay .image-card-title {
        font-size: 1.4rem;
    }

    .card-details-text {
        font-size: 0.7rem;
        opacity: 1;
        transform: translateX(0);
    }

    .submit-button {
        min-width: 160px;
        max-width: 160px;
        padding: 0px 14px;
    }

    .submit-button p {
        font-size: 22px;
    }
}

@media (max-width: 375px) {
    .question-details h4 {
        font-size: 24px;
        line-height: 30px;
    }

    .question-block .pill {
        padding: 8px 12px;
    }

    .question-block .pill p {
        font-size: 14px;
    }

    .showcase-container {
        gap: 20px;
    }
    
    .content-card {
        min-height: 180px;
        max-height: 180px;
        padding: 6px;
    }

    .image-card-overlay {
        min-height: calc(180px - 6px * 2);
        max-height: calc(180px - 6px * 2);
    }

    .image-card-overlay .image-card-title {
        font-size: 1.2rem;
    }

    .image-card-overlay .cta-button {
        padding: 8px 12px;
    }

    .image-card-overlay .cta-button p {
        font-size: 12px;
    }

    .contact-container {
        gap: 20px;
    }

    .contact-form {
        gap: 20px;
    }

    .email-input-wrapper {
        height: 40px;
        min-height: 40px;
        padding: 6px 15px;
    }

    .email-input-wrapper input[type="email"] {
        height: 100%;
        min-height: 100%;
        font-size: 14px;
    }

    .email-input-wrapper input[type="email"]::placeholder {
        font-size: 14px;
    }

    .submit-button {
        min-height: 40px;
        min-width: 140px;
        max-width: 140px;
        padding: 0px 12px;
    }

    .submit-button p {
        font-size: 18px;
    }
}

@media (max-width: 320px) {
    .question-details h4 {
        font-size: 20px;
        line-height: 28px;
    }

    .question-block .pill {
        padding: 6px 10px;
    }

    .question-block .pill p {
        font-size: 12px;
    }

    .submit-button {
        min-height: 40px;
        min-width: 100px;
        max-width: 100px;
        padding: 0px 10px;
    }

    .submit-button p {
        font-size: 14px;
    }
}