body{
    font-family: 'Nunito', sans-serif;
    background-color: #FEFAF8;
    color: #402D21;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes softGlow {
    0%, 100% { box-shadow: 0 0.5vh 3.5vw rgba(108, 77, 56, 0.08); }
    50% { box-shadow: 0 0.8vh 4vw rgba(108, 77, 56, 0.15); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.upperCase{
    font-family: 'Playfair Display', serif;
    color: #402D21;
}
.slogan{
    color: #8B6F58;
}


@media (orientation: portrait) {
    * {
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }
    body {
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        background: #FDF9F6;
        color: #333;
        line-height: 1.5;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 7vh;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: linear-gradient(135deg, #CFB59E, #D4C0A8);
        padding: 0 4vw;
        box-shadow: 0 0.4vh 1.5vw rgba(108, 77, 56, 0.15);
        backdrop-filter: blur(10px);
    }
    #brandName{
        font-size: 3.3vw;
        background-color: #CFB59E;
        border: none;
        color: #6C4D38
    }


    #burger-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 12vw;
        height: 5.5vh;
        padding: 0;
        background: transparent;
        border: none;
        cursor: pointer;
        border-radius: 2vw;
        margin-left: auto;
        flex-shrink: 0;
        z-index: 1001;
        overflow: visible;
    }
    #burger-btn:active {
        background: rgba(255, 255, 255, 0.3);
    }
    .burger-line {
        width: 8vw;
        height: 0.6vh;
        background: #F8EADE;
        border-radius: 0.5vw;
        transition: all 0.3s ease;
        margin: 0.5vh 0;
        overflow: visible;
    }

    #burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(1.55vh) rotate(45deg);
        width: 11.5vw;
    }
    #burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    #burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-1.55vh) rotate(-45deg);
        width: 11.5vw;
    }

    #left {
        position: fixed;
        top: 7vh;
        width: 75%;
        max-width: 80vw;
        height: calc(100vh - 7vh);
        background: linear-gradient(180deg, #CFB59E, #E3CDB8);
        padding: 3vh 5vw;
        display: flex;
        flex-direction: column;
        gap: 1.8vh;
        z-index: 999;
        box-shadow: -1vw 0 5vw rgba(108, 77, 56, 0.2);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        visibility 0.3s ease;
    }

    #left.active {
        right: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    #left .ancor {
        height: 6vh;
        border: none;
        border-radius: 3vw;
        background: #F8EADE;
        color: #6C4D38;
        font-size: 4vw;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
        box-shadow: 0 0.3vh 2vw rgba(108, 77, 56, 0.1);
        letter-spacing: 0.02em;
    }
    #left .ancor:active {
        transform: scale(0.98);
        background: #fff;
    }
    #ancor2 {
        width: 100% !important;
    }

    .menu-overlay {
        position: fixed;
        top: 7vh;
        left: 0;
        width: 100%;
        height: calc(100vh - 7vh);
        background: rgba(30, 20, 10, 0.5);
        backdrop-filter: blur(0.3vh);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 998;
    }
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .content {
        padding: 2vh 3vw;
        display: flex;
        flex-direction: column;
        gap: 2.5vh;
    }

    #about, #me, #simple, #dialogue, .reg, .chansToAsk, .brand {
        background: #fff;
        border-radius: 4vw;
        padding: 3vh 4vw;
        box-shadow: 0 0.5vh 3.5vw rgba(108, 77, 56, 0.08);
        transition: box-shadow 0.3s ease;
    }

    .projectName {
        font-family: 'Playfair Display', serif;
        font-size: 6.5vw;
        color: #6C4D38;
        text-align: center;
        margin-bottom: 2.5vh;
        position: relative;
        padding-bottom: 1.5vh;
        letter-spacing: 0.02em;
        line-height: 1.2;
    }
    .projectName::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 13vw;
        height: 0.4vh;
        background: linear-gradient(90deg, transparent, #CFB59E, transparent);
        border-radius: 0.5vw;
    }

    #about {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .projectDescription {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.8vh;
    }
    .projectDescription ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .leftabout, .rightabout {
        background: #FDF9F6;
        border-radius: 3vw;
        padding: 1.8vh 3vw;
        border-left: 0.8vw solid #CFB59E;
    }
    .aboutBrand {
        font-size: 3.8vw;
        color: #555;
        margin: 0.8vh 0 0.8vh 0;
        padding-left: 3vw;
        position: relative;
        line-height: 1.5;
    }
    .aboutBrand::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #CFB59E;
        font-weight: bold;
    }
    .why {
        margin-top: 1vh;
        font-size: 4.2vw;
        color: #6C4D38;
        text-align: center;
        font-style: italic;
        line-height: 1.4;
        font-weight: 500;
    }
    .why.slogan {
        color: #8B6F58;
        font-size: 3.8vw;
        font-weight: 400;
        margin-top: 1.5vh;
    }
    #withoutBlock{
        text-align: center;
        color: #6C4D38;
        font-size: 4.5vh;
        margin-bottom: 1vh;
        margin-top: 3vh;
        font-family: 'Playfair Display', serif;
        letter-spacing: 0.03em;
    }

    #me, .brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5vh;
    }
    .brand{
        margin-top: 2vh;
    }

    .myPhoto {
        width: 100%;
        max-width: 70vw;
        aspect-ratio: 1;
        border-radius: 5vw;
        background: #DDE6ED;
        object-fit: cover;
        box-shadow: 0 1vh 5vw rgba(108, 77, 56, 0.15);
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }
    #pam {
        width: 100%;
        text-align: center;
    }
    #pam h1 {
        font-size: 5.5vw;
        color: #6C4D38;
        margin-bottom: 1vh;
    }
    #pam h3 {
        font-size: 3.8vw;
        color: #8B6F58;
        margin: 1.5vh 0 0.8vh;
        font-weight: 600;
        line-height: 1.4;
    }
    #pam ul {
        padding-left: 5vw;
        text-align: left;
        margin: 1vh 0;
        list-style: none;
    }
    #pam .lib {
        font-size: 3.5vw;
        color: #555;
        margin: 0.8vh 0;
        line-height: 1.6;
        position: relative;
        padding-left: 3vw;
    }
    #pam .lib::before {
        content: '—';
        position: absolute;
        left: 0;
        color: #CFB59E;
        font-weight: bold;
    }
    #asPam {
        width: 100%;
        text-align: center;
    }
    #asPam h1 {
        font-size: 5.5vw;
        color: #6C4D38;
        margin-bottom: 1vh;
    }
    #asPam h3 {
        font-size: 3.8vw;
        color: #8B6F58;
        margin: 1.5vh 0 0.8vh;
        font-weight: 600;
    }
    #asPam ul {
        padding-left: 5vw;
        text-align: left;
        margin: 1vh 0;
    }
    #asPam .lib {
        font-size: 3.5vw;
        color: #555;
        margin: 0.5vh 0;
        line-height: 1.5;
    }
    #asPam h4 {
        font-size: 3.8vw;
        color: #6C4D38;
        margin: 2vh 0 1vh;
        line-height: 1.4;
    }
    #iKnow {
        font-size: 3.5vw;
        color: #27478e !important;
        background: linear-gradient(135deg, #F8EADE, #FFF9F5);
        padding: 1.8vh 3vw;
        border-radius: 2.5vw;
        margin: 1.5vh 0;
        font-style: italic;
        line-height: 1.5;
        border-left: 0.6vw solid #CFB59E;
        text-align: justify-all;
    }
    #pam h4 {
        font-size: 3.8vw;
        color: #6C4D38;
        margin: 2vh 0 1vh;
        line-height: 1.4;
    }
    #rdbs {
        display: flex;
        flex-direction: column;
        gap: 1.5vh;
        width: 100%;
        max-width: 75vw;
    }
    .redirectButton {
        margin-left: 7vw;
        height: 5.8vh;
        border: none;
        border-radius: 3vw;
        background: #DDE6ED;
        color: #6C4D38;
        font-size: 4vw;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.2s;
    }
    .redirectButton:active {
        transform: scale(0.98);
    }

    #simple {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #fairs {
        display: flex;
        flex-direction: column;
        gap: 2.5vh;
        width: 100%;
    }
    .tarif {
        background: linear-gradient(135deg, #F8EADE, #FFF9F5);
        border-radius: 4vw;
        padding: 2.5vh 4vw;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0.4vh 3vw rgba(108, 77, 56, 0.1);
        border: 0.3vw solid rgba(207, 181, 158, 0.2);
    }
    .tName {
        font-family: 'Playfair Display', serif;
        font-size: 5vw;
        font-weight: 700;
        color: #6C4D38;
        margin-bottom: 1.5vh;
        letter-spacing: 0.02em;
    }
    .aboutTarif {
        display: flex;
        flex-direction: column;
        gap: 1vh;
        margin: 1vh 0 1.5vh;
        min-height: 10vh;
        justify-content: center;
        align-items: stretch;
        width: 100%;
    }
    .aspoect {
        font-size: 3.5vw;
        color: #555;
        text-align: left;
        padding-left: 5vw;
        position: relative;
        line-height: 1.5;
    }
    .aspoect::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #CFB59E;
        font-weight: bold;
    }
    .firFloor {
        font-weight: 600;
        color: #6C4D38;
        font-style: italic;
        margin-bottom: 0.5vh;
    }
    .prise {
        font-size: 5.5vw;
        font-weight: 800;
        color: #fff;
        background: linear-gradient(135deg, #CFB59E, #D4C0A8);
        padding: 1.2vh 6vw;
        border-radius: 8vw;
        margin-top: auto;
        letter-spacing: 0.05em;
        box-shadow: 0 0.4vh 2vw rgba(108, 77, 56, 0.2);
    }

    #dialogue {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .reg, .chansToAsk {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5vh;
    }
    .reg > div, .chansToAsk > div {
        display: flex;
        flex-direction: column;
        gap: 1.2vh;
        width: 80vw;
    }
    input {
        width: 100%;
        max-width: 80vw;
        height: 6vh;
        padding: 0 4vw;
        border: 0.3vh solid #E8D4C4;
        border-radius: 3vw;
        background: #fff;
        font-size: 3.9vw;
        outline: none;
        transition: border-color 0.2s, background 0.2s, transform 0.2s;
        font-family: 'Playfair Display', serif;
    }
    input:focus {
        border-color: #CFB59E;
        background: #FDF9F6;
    }
    input::placeholder {
        color: #999;
    }
    #long {
        min-height: 11vh;
        height: auto;
        padding: 1.8vh 4vw;
        resize: vertical;
    }
    .send {
        width: 100%;
        max-width: 75vw;
        height: 6.2vh;
        border-radius: 3vw;
        background-color: #DDE6ED;
        color: #071742;
        font-size: 4vw;
        font-weight: 700;
        cursor: pointer;
        transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
        margin-top: 1vh;
        letter-spacing: 0.03em;
        box-shadow: 0 0.4vh 2vw rgba(108, 77, 56, 0.15);
        border: 0.3vh solid #DDE6ED;
    }
    .send:active {
        filter: brightness(0.9);
    }

    textarea, #long {
        width: 80vw;
        height: 6.2vh;
        padding: 2vh 2.5vw;
        border: 0.3vh solid #E8D4C4;
        border-radius: 2vw;
        background: #fff;
        font-size: 3.9vw;
        line-height: 1.5;
        font-family: 'Playfair Display', serif;
        color: #333;
        outline: none;
        resize: none;
        transition: border-color 0.2s, box-shadow 0.2s;
        box-sizing: border-box;
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;

    }

    textarea::-webkit-scrollbar, #long::-webkit-scrollbar {
        display: none;
    }

    textarea:focus, #long:focus {
        border-color: #CFB59E;
        box-shadow: 0 0 0 0.4vh rgba(207, 181, 158, 0.3);
    }

    textarea::placeholder, #long::placeholder {
        color: #999;
        opacity: 1;
    }
    footer {
        background: #6C4D38;
        min-height: 10vh;
        margin-top: 3vh;
        border-radius: 4vw 4vw 0 0;
        padding: 2.5vh 5vw;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #F8EADE;
        font-size: 3.5vw;
    }
    .tarif {
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .tarif:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(108, 77, 56, 0.15);
    }

    .ancor, .redirectButton, .send {
        transition: all 0.2s ease;
        position: relative;
        overflow: hidden;
    }

    .ancor:hover, .redirectButton:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(108, 77, 56, 0.2);
    }

    .send:hover {
        background: linear-gradient(135deg, #D4C0A8, #CFB59E);
        transform: scale(1.02);
    }

    .send:active {
        transform: scale(0.98);
    }

    input:focus, textarea:focus {
        transform: scale(1.01);
        transition: transform 0.2s ease;
    }

    .myPhoto {
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }
    .myPhoto:hover {
        transform: scale(1.02) rotate(1deg);
    }
    .brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2vh;
        margin-top: 3vh;
        padding: 3vh 4vw;
    }

    .brand > h1 {
        font-family: 'Playfair Display', serif;
        font-size: 6vw;
        color: #6C4D38;
        text-align: center;
        margin-bottom: 2vh;
        font-weight: 700;
        position: relative;
        padding-bottom: 1.5vh;
        letter-spacing: 0.02em;
        line-height: 1.3;
    }

    .brand > h1::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 15vw;
        height: 0.4vh;
        background: linear-gradient(90deg, transparent, #CFB59E, transparent);
        border-radius: 0.5vw;
    }

    .brand > div {
        width: 100%;
        background: #FDF9F6;
        border-left: 1vw solid #CFB59E;
        border-radius: 3vw;
        padding: 2.5vh 3vw;
        margin: 1vh 0;
        box-shadow: 0 0.5vh 2vw rgba(108, 77, 56, 0.06);
    }

    .brand h3 {
        font-size: 4vw;
        color: #8B6F58;
        margin: 1.5vh 0 1vh;
        font-weight: 600;
        line-height: 1.4;
    }

    .brand ul {
        padding-left: 6vw;
        margin: 1vh 0;
        list-style: none;
    }

    .brand .lib {
        font-size: 3.6vw;
        color: #555;
        margin: 0.7vh 0;
        line-height: 1.6;
        position: relative;
        padding-left: 3vw;
    }
    .brand .lib::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #CFB59E;
        font-weight: bold;
    }

    .checkList {
        list-style: none;
        padding: 0;
        margin: 1.5vh 0;
    }

    .checkList li {
        position: relative;
        padding-left: 7vw;
        margin-bottom: 1.5vh;
        color: #555;
        line-height: 1.6;
        font-size: 3.6vw;
    }

    .checkList li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.5vh;
        width: 5vw;
        height: 5vw;
        max-width: 24px;
        max-height: 24px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C4D38' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
    }
    #trustBlock .block-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .trust-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 75vw;
        height: 6.5vh;
        margin-top: 3vh;
        background: linear-gradient(135deg, #CFB59E, #D4C0A8);
        color: #fff;
        border: none;
        border-radius: 3vw;
        font-size: 4vw;
        font-weight: 700;
        text-decoration: none;
        cursor: pointer;
        box-shadow: 0 0.5vh 2vw rgba(108, 77, 56, 0.15);
        transition: all 0.2s ease;
        letter-spacing: 0.02em;
        text-transform: lowercase;
    }

    .trust-button:active {
        transform: scale(0.96);
        background: linear-gradient(135deg, #bfa08a, #CFB59E);
        transition: transform 0.1s;
    }
    #trustBlock {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3vh;
        margin: 3vh 4vw;
        padding: 3vh 4vw;
        background: #fff;
        border-radius: 30px;
        border-top: 0.8vw solid #CFB59E;
        box-shadow: 0 0.5vh 3vw rgba(108, 77, 56, 0.08);
    }

    #trustBlock .block-image {
        width: 70vw;
        max-width: 350px;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: 20px;
        background-color: #DDE6ED;
        box-shadow: 0 1vh 4vw rgba(108, 77, 56, 0.12);
    }

    #trustBlock .block-content {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    #trustBlock h3 {
        font-family: 'Playfair Display', serif;
        font-size: 5.5vw;
        color: #071742;
        margin: 0 0 2vh 0;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: 0.02em;
    }

    #trustBlock p {
        font-size: 4vw;
        color: #555;
        line-height: 1.6;
        margin: 0;
    }
    #faq {
        display: flex;
        flex-direction: column;
        margin: 3vh 4vw;
        padding: 3vh 4vw;
        background: #fff;
        border-radius: 30px;
        box-shadow: 0 0.5vh 3vw rgba(108, 77, 56, 0.08);
    }

    .faq-title {
        font-family: 'Playfair Display', serif;
        font-size: 6vw;
        color: #6C4D38;
        text-align: center;
        margin: 0 0 3vh 0;
        font-weight: 700;
        position: relative;
        padding-bottom: 1.5vh;
        letter-spacing: 0.02em;
    }

    .faq-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 20vw;
        height: 0.6vw;
        background: linear-gradient(90deg, transparent, #CFB59E, transparent);
        border-radius: 1vw;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 2vh;
    }

    .faq-item {
        display: flex;
        flex-direction: column;
        padding: 2.5vh 3vw;
        background: #FDF9F6;
        border-radius: 3vw;
        border-left: 1vw solid #CFB59E;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .faq-item:active {
        transform: scale(0.99);
    }

    .faq-question {
        font-size: 4.2vw;
        color: #6C4D38;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 1.5vh;
        position: relative;
        padding-left: 7vw;
    }

    .faq-question::before {
        content: '?';
        position: absolute;
        left: 0;
        top: 0;
        width: 5.5vw;
        height: 5.5vw;
        background: linear-gradient(135deg, #CFB59E, #D4C0A8);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3.5vw;
        font-weight: 800;
        box-shadow: 0 0.3vh 1vw rgba(108, 77, 56, 0.15);
    }

    .faq-answer {
        font-size: 3.6vw;
        color: #555;
        line-height: 1.6;
        padding-left: 7vw;
    }
    #main-footer {
        background: #6C4D38;
        color: #F8EADE;
        padding: 4vh 5vw;
        margin-top: 3vh;
        border-radius: 4vw 4vw 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 4vh;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-title {
        font-family: 'Playfair Display', serif;
        font-size: 4.5vw;
        font-weight: 700;
        margin: 0 0 2.5vh 0;
        color: #CFB59E;
        letter-spacing: 0.02em;
    }

    .social-icons {
        display: flex;
        gap: 10vw;
    }

    .social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28vw;
        height: 28vw;
        max-width: 120px;
        max-height: 120px;
        background-color: #F8EADE;
        border-radius: 50%;
        transition: all 0.3s ease;
        box-shadow: 0 0.8vh 2vh rgba(0, 0, 0, 0.15);
    }

    .social-btn svg {
        width: 14vw;
        height: 14vw;
        max-width: 60px;
        max-height: 60px;
        transition: transform 0.3s ease;
    }

    .social-btn:active {
        transform: scale(0.95);
        background-color: #CFB59E;
        transition: transform 0.1s;
    }
    .social-btn:active svg {
        transform: scale(0.9);
    }

    .doc-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .doc-link {
        color: #F8EADE;
        text-decoration: none;
        font-size: 2.5vw;
        padding: 0 4vw;
        border: none;
        border-radius: 3vw;
        transition: all 0.2s ease;
        text-align: center;
        letter-spacing: 0.02em;
    }

    .doc-link:active {
        background-color: #F8EADE;
        color: #6C4D38;
        transform: scale(0.98);
        transition: transform 0.1s, background 0.1s, color 0.1s;
    }

    h1, h2, h3, h4 {
        font-family: 'Playfair Display', serif;
    }

    p {
        line-height: 1.6;
    }

    html {
        scroll-behavior: smooth;
    }

    .brand > h3:first-child {
        font-size: 4.5vw;
        color: #6C4D38;
        text-align: center;
        margin-bottom: 1.5vh;
        font-weight: 700;
    }

    .brand > div > h3:last-child {
        font-style: italic;
        color: #6C4D38;
        text-align: center;
        margin-top: 2vh;
        padding-top: 1.5vh;
        border-top: 0.3vw dashed rgba(207, 181, 158, 0.5);
    }

    .heading{
        color: #27478e !important;
        font-family: 'Playfair Display', serif !important;
    }
    .projectDescription{
        gap: 2vh;
    }
    #simple label{
        font-size: 5vw !important;
    }
    #simple h4{
        font-size: 7vw !important;
    }
    #simple h3{
        font-size: 7vw !important;
    }
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.4s ease;
        padding: 0 15px;
        color: #555;
        line-height: 1.5;
    }

    .faq-item.active .faq-answer {
        font-size: 4.2vw;
    }

    .faq-item {
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 10px;
    }

    .faq-question {
        cursor: pointer;

        padding-right: 45px;

        font-weight: bold;
        position: relative;

        display: flex;
        align-items: center;
        gap: 10px;
        transition: background-color 0.3s;
    }

    .faq-question:hover {
        background-color: #f9f9f9;
    }

    .faq-question::after {
        content: '';
        position: absolute;
        right: 15px;
        top: 50%;

        width: 14px;
        height: 14px;

        margin-top: -10px;

        border-right: 3px solid currentColor;
        border-bottom: 3px solid currentColor;

        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question::after {
        transform: rotate(-135deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.4s ease;
        padding: 0 15px;
        color: #555;
        line-height: 1.5;
    }

    .faq-item.active .faq-answer {
        padding: 15px;
    }
}