*{
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
body {
  min-height: 100vh; background: transparent; letter-spacing: 0.5px;
  font-family: Arial, Helvetica, sans-serif; margin: 0; padding: 0;
}

body::before {
  content: ""; position: fixed; inset: 0; z-index: -1;
  background: linear-gradient(
    to bottom,
    #081A2E,
    #0F2A44
  );
}

.container-main {
    width: 70%;
    margin: 10px auto;
    background: #4479e2;
    border-radius: 12px;
    overflow: visible;   /* ✅ FIX */
    padding: 2px;
}

.header {
    display: flex; justify-content: space-between; align-items: center;
    gap: 10px; padding: 8px 15px;
}

.header-left {
    display: flex; align-items: center; gap: 10px; color: white;
}

.logo{
    width: 45px; height: 45px; object-fit: contain;
    display: block; border-radius: 50%;
}

.app-text {
    display: flex; flex-direction: column; line-height: 1.2;
}

.app-name {
    font-size: 15px; font-weight: bold;
}

.tagline {
    font-size: 12px;
}

.header-right {
    display: flex; flex-direction: row;gap: 18px; align-items: center; justify-content: flex-end;
}


.header-right a {
    color: white; font-size: 12px; text-decoration: none; margin-top: 0; line-height: 1;
}

@media (max-width: 768px) {
.container-main { width: 100%; margin: 0 auto;
}

.logo{ width: 55px; height: 55px;
}

.app-name {
    font-size: 1.2rem; font-weight: bold;
}

.tagline {
    font-size: 1rem; font-weight: bold;
} 
}

.container-in {
    background: #f2f4f8; border-radius: 22px;
}

.header-center {
    padding-top: 10px; text-align: center; width: 90%; margin: 0 auto;
}

.header-center h1{
    font-size: 18px;

}
.header-center p {
    font-size: 12px; line-height: 1.5;
}

.top-note{
    text-align: center;
}

.stephead {
    text-align: center;
}


.left-text{
    font-size:.8rem;
}
.stephead h2,
.stephead p {
    width: 90%; margin: 0 auto;
}

.stephead h2 {
    padding-top: 10px; font-size: 16px;
}

.stephead p {
    font-size: 12px; line-height: 1.5;
}

@media (max-width: 768px) {
.header-center {
    width: 95%;
}


.header-center h1{
    font-size: 1.4rem;

}
.header-center p {
    font-size: 1rem;
}

.stephead h2,
.stephead p {
    width: 95%;
}

.stephead h2 {
    font-size: 1.2rem;
}

.stephead p {
    font-size: 1rem;
}

.left-text{
    font-size: 1rem;
}
}














.steps-area {
   width: 90%;
    margin: 10px auto;
    position: relative;
    padding: 10px;
    border: 2px solid #ffb6c1;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.3);
}

/* all corner emojis */
.corner {
    position: absolute;
    font-size: 1.1rem;
}

/* corners */
.top-left {
    top: -10px;
    left: -10px;
}

.top-right {
    top: -10px;
    right: -10px;
}

.bottom-left {
    bottom: -10px;
    left: -10px;
}

.bottom-right {
    bottom: -10px;
    right: -10px;
}














/* layout wrapper */
.step-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
    padding: 12px;
    background: #fff5f8;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ffd1dc;
}

/* LEFT */
.left-box {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 55%;
    text-align: center;
}

/* RIGHT */
.right-box {
    flex: 1;
    display: flex;
    justify-content: center;
        width: 40%;
}

@media (max-width: 768px) {
    .step-content {
        flex-direction: column;
    }

    .left-box,
    .right-box {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .left-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .steps-area {
   width: 98%;
}
}











/* FORM WRAPPER */
.top-form-wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

/* FORM BOX */
.form-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* LABEL */
.partner-label{
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

/* FORM (INPUT + BUTTON) */
#partner-form{
    display: flex;
    flex-direction: column;
    align-items: center;   /* centered */
    gap: 10px;
    margin-top: 10px;
}

/* INPUT */
#partner_name{
    width: 200px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 12px;
    outline: none;
    transition: 0.2s;
}

#partner_name:focus{
    border-color: #4479e2;
}

.button2 {
    padding: 6px 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;

    background: linear-gradient(135deg, #ff4d8d, #ff8fb3);
    color: white;

    font-size: 14px;
    font-weight: 600;

    box-shadow: 0 6px 15px rgba(255, 77, 141, 0.3);
    transition: all 0.25s ease;
}

.button2:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 77, 141, 0.4);
}

.button2:active {
    transform: scale(0.96);
}

/* SAVED NAME BOX */
#saved-name-box{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    width: 100%;
}

.saved-label{
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

/* SAVED NAME TEXT */
#saved-name-text{
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #ff4d8d;
    background: #fff0f5;
    color: #333;
    font-size: 15px;
    font-weight: 600;
}

















@media (max-width: 768px) {
.partner-label{
    font-size: 1rem;
}

#partner_name{
    padding: 14px 20px; border-radius: 20px; font-size: 1rem;
}

#partner_name:focus{
    border-color: #4479e2;
}

.button2 {
  padding: 14px 20px; font-size: 16px;
}

#saved-name-text{
    padding: 14px 20px; border-radius: 20px; border: 1px solid #4479e2;
}
}

.flower-container {
    display: flex; flex-direction: column; align-items: center;
    justify-content: flex-start; margin-top: 18px;
}

/* Top result text */
#result {
    margin-bottom: 10px; font-size: .8rem; margin-top: 0px;
}

.love-msg .heart{
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 50px;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    animation: heartbeat 0.6s ease-in-out;
    transform-origin: center;
}

@keyframes heartbeat{
    0%   { transform: scale(1); }
    30%  { transform: scale(1.3); }
    60%  { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.flower {
    position: relative;width: 300px;height: 153px;transform: scale(0.8);margin: 0;
}

.petal {
    position: absolute; width: 40px; height: 70px;
    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,0.12) 0%,
        rgba(0,0,0,0) 30%,
        rgba(0,0,0,0) 82%,
        rgba(0,0,0,0.14) 100%
    ),
    linear-gradient(145deg, #ff7eb9, #ff65a3);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 60px; left: 120px; cursor: pointer; transform-origin: center 1px;
    box-shadow: 2px 5px 10px rgba(0,0,0,0.2); transition: all 0.3s ease;
}

.petal::before{
    content: ""; position: absolute; top: 30px; left: 18px;
    width: 18px; height: 45px; background: rgba(255,255,255,0.28);
    border-radius: 50%; filter: blur(2px); transform: rotate(0deg);
}

.petal:hover {
    transform: scale(1.1); filter: brightness(1.2);
}

.flower-center {
    position: absolute; top: 40%; left: 47%; width: 43px; height: 43px;
    background: radial-gradient(circle, #FFD700 0%, #FFA500 70%);
    border-radius: 50%; transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 25px rgba(255, 165, 0, 0.3);
}

.flower.vanish {
    height: 0; width: 0; opacity: 0; margin-top: 20px; transition: all 0.5s ease; overflow: hidden;
}
















/* ===== STEP 2 LAYOUT ===== */
 .step2-content {
    display: flex;
    align-items: flex-start;   /* IMPORTANT (forces top alignment) */
    gap: 20px;
    margin-top: 20px;
    background: #fff5f8;
    padding: 0px;
    border-radius: 12px;
    border: 1px solid #ffd1dc;
}


/* LEFT SIDE (small + sticky) */
.step2-left {
    flex: 0 0 30%;
    width: 10%;
    position: sticky;
    top: 20px;
}

.step2-left p {
    font-size: 0.8rem;
    line-height: 1.6;
    text-align: center;
    padding-left: 10px;
}

/* RIGHT SIDE (questions area) */
.step2-right {
    flex: 1;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: flex-start;   /* IMPORTANT */
    margin: 18px;
}

.step2-right .quiz-container {
    width: 100%;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .step2-content {
        flex-direction: column;
        gap: 20px;
    }

    .step2-left {
        position: static; /* disable sticky */
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .step2-right {
        width: 100%;
        margin: 0 auto;
    }
    
    .step2-left p {
    font-size: 1rem;
}
}








/* QUIZ CONTAINER (optional slight control) */
.quiz-container {
    width: 100%;
    max-width: 600px;
    margin-top: 0;
}

/* ===== QUESTION CARD ===== */
.question-card {
    margin: 0px 0;
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;

}

.question-card h3 {
    grid-column: span 2;
    margin: 0 0 6px 0;
    font-size: 13px;
    color: #333;
}

.question-card label {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 12px;
    background: #fff5f8;
    transition: 0.2s;
}

.question-card label:hover {
    background: #ffe4ec;
    transform: scale(1.02);
}

input[type="radio"] {
    margin-right: 8px;
}

/* PLACEHOLDER */
.placeholder-text {
    text-align: center;
    padding: 10px;
    font-size: .8rem;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

    .step-content {
        flex-direction: column;
        gap: 20px;
    }

    .left-box {
        position: static;      /* remove sticky */
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .right-box {
        width: 100%;
        justify-content: center;
    }

    .quiz-container {
        width: 96%;
        padding: 5px;
    }

    .question-card {
        margin: 8px 5px;
        padding: 10px;
        border: 2px solid rgb(224, 224, 225);
    }

    .question-card h3 {
        font-size: 1rem;
    }

    .question-card label {
        font-size: 0.9rem;
    }
}














.result-summary {
    width: 100%; margin: 20px auto; padding: 10px;
    border-radius: 18px; background: #fff5f8;     border: 1px solid #ffd1dc;
}

.result-row {
    display: flex; justify-content: center; align-items: center; gap: 10px;
    flex-wrap: nowrap; margin: 20px 10px;
}

.result-card {
    flex: 1; max-width: 140px; min-width: 0; text-align: center;
    background: linear-gradient(145deg, #ffffff, #fff0f5);
    padding: 14px 10px; border-radius: 16px; box-shadow: 0 6px 15px rgba(0,0,0,0.08); transition: 0.25s;
}

/* hover effect */
.result-card:hover {
    transform: translateY(-4px) scale(1.03); box-shadow: 0 10px 20px rgba(233, 30, 99, 0.15);
}

/* ICON */
.result-icon {
    font-size: 32px; margin-bottom: 6px;
}

/* TITLE */
.result-title {
    font-size: 13px; font-weight: 600; color: #444; margin-bottom: 5px;
}

/* SCORE */
.result-score {
    font-size: 20px; font-weight: bold; color: #e91e63;
}

/* MATH SYMBOL */
.math-symbol {
    font-size: 22px; font-weight: bold; color: #888;
    display: flex; align-items: center; justify-content: center;
}



@media (max-width: 768px) {
.result-summary {
    width: 100%; padding: 10px 5px 10px 5px;
}

.result-row {
    gap: 5px;
}

/* ICON */
.result-icon {
    font-size: 40px; margin-bottom: 6px;
}

/* SCORE */
.result-score {
    font-size: 1.4rem;
}
}












.share-buttons{
  margin-top: 20px; display:flex; justify-content:center; gap:20px; flex-wrap:wrap;
}

.share-btn{
  display:flex; flex-direction:column; align-items:center; text-decoration:none;
  font-size:10px; color: black; gap:8px; transition:0.25s;
}

.icon{
  width:40px; height:40px; border-radius:50%; display:flex;
  align-items:center; justify-content:center; border:1px solid; transition:0.25s;
}

.icon svg{
  width:20px; height:20px;
}

.facebook .icon{
  border-color:#1877f2;
}
.facebook svg{
  color:#1877f2;
}
.facebook:hover{
  color:#1877f2; /* text becomes blue */
}
.facebook:hover .icon{
  background:#1877f2;
}
.facebook:hover svg{
  color:#e2e4e8;
}

.whatsapp .icon{
  border-color:#25d366;
}
.whatsapp svg{
  color:#25d366;
}
.whatsapp:hover{
  color:#25d366;
}
.whatsapp:hover .icon{
  background:#25d366;
}
.whatsapp:hover svg{
  color:#e2e4e8;
}

.twitter .icon{
  border-color:#1da1f2;
}
.twitter svg{
  color:#1da1f2;
}
.twitter:hover{
  color:#1da1f2;
}
.twitter:hover .icon{
  background:#1da1f2;
}
.twitter:hover svg{
  color:#e2e4e8;
}

.telegram .icon{
  border-color:#0088cc;
}
.telegram svg{
  color:#0088cc;
}
.telegram:hover{
  color:#0088cc;
}
.telegram:hover .icon{
  background:#0088cc;
}
.telegram:hover svg{
  color:#e2e4e8;
}

.share-btn:hover{
  transform:translateY(-3px);
}

@media (max-width: 768px) {
.share-btn{
  font-size:.9rem;
}

.icon{
  width:50px; height:50px;
}

.icon svg{
  width:30px; height:30px;
}

}



















/* SECTION WRAPPER */
.name-test-section {
    width: 90%;
    margin: 0px auto;
}

/* TITLE */
.name-test-title {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
}

/* MAIN LAYOUT */
.name-test-content {
    display: flex;
    gap: 30px;
    padding: 15px;
    align-items: flex-start;
    border: 2px solid #ffb6c1;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.3);
}

/* LEFT */
.name-test-left {
    flex: 1;
    font-size: 0.8rem;
    line-height: 1.6;
}

.name-test-left ul {
    margin-top: 10px;
    padding-left: 18px;
    font-size: .8rem;
}

/* RIGHT */
.name-test-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* FORM */
#name-test-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 250px;
    margin-top: 20px;
}

#name-test-form input {
    width: 100%;
    box-sizing: border-box; /* 🔥 important fix */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
}

#name-test-form input:focus {
    border-color: #ff4d6d;
}

#name-test-result {
    margin-top: 20px;
    width: 100%;
    max-width: 250px;
    text-align: center;
}

.test-result-item {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    background: #fff5f8;
    border: 1px solid #ffd1dc;
}

.score-box {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff4d6d;
    margin-top: 5px;
}

/* MOBILE */
@media (max-width: 768px) {
    .name-test-title {
    font-size: 1.2rem;
}
    .name-test-content {
        flex-direction: column;
    }

    .name-test-right {
        width: 100%;
    }

    /* FORM */
#name-test-form {
    margin-top: 0px;
}

    .name-test-left {
    font-size: 1rem;
}

.name-test-left ul {
    font-size: 1rem;
}

.name-test-section {
    width: 98%;
    margin: 0px auto;
}

#name-test-result {
    margin-top: 0px;
}
}




.how-title {
    width: 90%;
    margin: 30px auto 10px auto;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
}

/* MAIN BOX */
.how-it-works {
    width: 90%;
    margin: 0 auto 30px auto;
    padding: 10px 0;
    border: 2px solid #ffb6c1;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.3);
}

/* ROW */
.how-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 6px 20px;
    border-bottom: 1px solid #ffe0e8;
    flex-direction: row;
}

.how-row:last-child {
    border-bottom: none;
}

/* TEXT */
.how-text {
    flex: 1 1 auto;   /* allow full stretch */
    text-align: left;
}

.how-text h3 {
    margin-bottom: 8px;
    font-size: .9rem;
}

.how-text p {
    line-height: 1.6;
    font-size: 0.8rem;
}

/* IMAGE */
.how-img {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
}

.how-img img {
    width: 100%;
    max-width: 160px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* MOBILE */
@media (max-width: 768px) {

    .how-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }


/* MAIN BOX */
.how-it-works {
    width: 98%;
}

.how-text h3 {
    font-size: 1.1rem;
    text-align: center;
}

.how-text p {
    font-size: 1rem;
    text-align: center;
}

/* IMAGE */
.how-img {
    flex: 0 0 auto;   /* no extra space */
    display: flex;
    justify-content: flex-end; /* push image right */
}

.how-img img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

}















.project-row{
    display: flex; justify-content: space-between; gap: 15px; width: 90%; margin: 0 auto;
}

.other-projects h2{
    text-align: center; font-size: 16px;
}

.project-card{
    position: relative; width: 32%; height: 150px; display: block;
    border-radius: 12px; overflow: hidden; text-decoration: none;
}

.project-card img{
    width: 100%; height: 150px; object-fit: cover; display: block;
}

.overlay-text{
    position: absolute; bottom: 0; width: 100%; padding: 4px 4px;
    font-size: .8rem; color: white; text-align: center; background: rgba(0,0,0,0.45); backdrop-filter: blur(2px);
    box-sizing: border-box;
}

.project-card:hover img{
    transform: scale(1.03); transition: 0.3s ease;
}


@media (max-width: 768px) {
.project-row{
    gap: 10px; width: 96%;
}

.other-projects h2{
    font-size: 1.2rem;
}
}

.faq{
width:70%; margin:30px auto;
}

.faq h2{
text-align:center; margin-bottom:10px; font-size: 16px; font-weight: 600;
}

.faq-item{
border-bottom:1px solid #7f7d7d;
}

.faq-question{
width:100%; display:flex; justify-content:space-between; align-items:center;
text-align: left; background:none; border:none; font-size: 12px; padding:12px 0; cursor:pointer;
}

.faq-icon{
transition:transform 0.3s ease; font-size:14px;
}

.faq-answer{
max-height:0; overflow:hidden; transition:max-height 0.35s ease;
}

.faq-answer p{
padding-bottom:8px; line-height:1.6; font-size: 12px;
}

.faq-item.active .faq-icon{
transform:rotate(180deg);
}


@media (max-width: 600px) {
.faq{
width:90%;
}

.faq h2{
font-size: 1.2rem;
}

.faq-question{
font-size: 1rem; padding:12px 0;
}

.faq-icon{
font-size:1.2rem;
}

.faq-answer p{
font-size: 1rem;
}

.faq-item.active .faq-icon{
transform:rotate(180deg);
}
}

/* ===== Footer Styling ===== */
.site-footer {
  color: #ffffff; text-align: center; font-size: 12px; margin-top: 6px;
}

.site-footer a {
  color: #ffffff; text-decoration: none; font-weight: 600;
}

.site-footer a:hover {
  color: #ffd700;
}

.footer-copy {
  margin-top: 6px; font-size: 12px;
}

@media (max-width: 600px) {
.site-footer a {
  color: #ffffff; text-decoration: none; margin: 0 6px; font-weight: 600; font-size: 1rem;
}

.footer-copy {
  margin-top: 8px; font-size: 1rem;
}
}

/* menu icon hidden on desktop */
.menu-toggle{
    display: none; font-size: 28px; cursor: pointer; color: white;
}

/* overlay */
.menu-overlay{
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); display: none; z-index: 999;
}

.menu-wrapper{
    position: fixed; top: 0; right: -260px; width: 260px;
    height: 100%; background: #4479e2; padding: 20px; z-index: 1000; transition: right 0.3s ease;
}

.menu-wrapper.active{
    right: 0;
}

.mobile-menu{
    list-style: none; height: 30px; padding: 0; margin-top: 60px;
    display: flex; flex-direction: column; gap: 35px;
}

.mobile-menu li a{
    color: white; text-decoration: none; font-size: 1rem; font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px){

.header-right{
    display: none;
}

.menu-toggle{
    display: block;
}

.header{
    justify-content: space-between; align-items: center;
}
}


/* tab of seo and main page */
.tabs-grid{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 15px auto;
    padding-bottom: 20px;
}

.tabs-grid a{
    display: block;
    text-align: center;
    padding: 12px 10px;
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff, #fff5f8);
    border: 1px solid #ffd6e5;
    text-decoration: none;
    color: #e91e63;
    font-weight: bold;
    font-size: .8rem;
    transition: 0.2s ease;
}

.tabs-grid a:hover{
    transform: translateY(-3px);
    background: #ffe4ec;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px){
.tabs-grid{
        grid-template-columns: 1fr;
    }

    .tabs-grid a{
    font-size: 1rem;
}
}


/* tablet setting */
@media (min-width: 769px) and (max-width: 991px){
.container-main{
    width: 90%; margin: 10px auto;
}

.container-in{
    border-radius: 18px;
}

.header{
    padding: 12px 18px;
}

.logo{
    width: 50px; height: 50px;
}

.app-name{
    font-size: 18px;
}

.tagline{
    font-size: 14px;
}

.header-right a{
    font-size: 14px;
}

.header-center{
    width: 92%;
}

.header-center h1{
    font-size: 24px;
}

.header-center p{
    font-size: 15px;
}

.stephead h2{
    font-size: 20px;
}

.stephead p{
    font-size: 15px;
}

.partner-label{
    font-size: 15px;
}

#partner_name{
    width: 260px; padding: 12px 16px; font-size: 14px;
}

.button2{
    padding: 12px 18px; font-size: 14px;
}

.flower{
    transform: scale(0.9);
}

.quiz-container{
    width: 94%;
    padding: 12px;
}

.question-card{
    padding: 12px; gap: 10px;
}

.question-card h3{
    font-size: 15px;
}

.question-card label{
    font-size: 14px; padding: 10px;
}

.result-summary{
    width: 94%;
}

.result-card{
    max-width: 170px; padding: 16px 12px;
}

.result-icon{
    font-size: 36px;
}

.result-title{
    font-size: 14px;
}

.result-score{
    font-size: 22px;
}

.how-it-works,
.faq{
    width: 94%;
}

.how-it-works h2,
.faq h2,
.other-projects h2{
    font-size: 20px;
}

.test-box h3{
    font-size: 1.2rem;
}

.test-box p,
.faq-question,
.faq-answer p{
    font-size: 1rem;
}

.project-row{
    width: 94%; gap: 12px;
}

.project-card{
    height: 170px;
}

.project-card img{
    height: 170px;
}

.overlay-text{
    font-size: 14px;
}

.site-footer,
.footer-copy{
    font-size: 14px;
}
}