:root {
    --bg-primary: #b0a084;
    --text-dark: #0a243a;
    --accent-brown: #583e23;
    --light-grey: #e0e0e0;
    --taupe: #9f9a90;
    cursor:default;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis,
html.lenis body {
    height: auto;
    width: 100%;
    overflow-x: hidden;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    background-color: var(--bg-primary);
    color: var(--light-grey);
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.main-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 4rem 4rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    position: absolute;
    left: 4rem;
    top: 1rem

}

.logo > img{
    width: 25%;
    height: auto;
}

.main-nav a {
    text-decoration: none;
    color: var(--light-grey);
    margin-left: 3rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.7s ease;
    font-weight: bold;
}

.main-nav a:hover {
    color: var(--bg-primary);
}

.btn-outline {
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 2px;
    max-width: 30%;
    text-align: center;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: var(--bg-primary);
    color: #ffffff;
    border-color: var(--bg-primary);
}

.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 4rem 4rem 4rem;
    gap: 4rem;
    min-height: 80vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 50%;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 400;
    color: var(--light-grey);
    overflow: hidden;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--light-grey);
    opacity: 0.85;
    max-width: 90%;
}

.section-about-us {
    display: flex;
    flex-direction: row;
    min-height: 100vh; 
    border-bottom: 2px solid var(--accent-brown);

}

.about-us-content {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    padding: 6rem 3rem; 
    gap: 1.5rem;
    color: var(--text-dark);
    width: 50%;
    background: radial-gradient(circle at 20% 30%, #6f4e2b 0%, var(--accent-brown) 100%);    
    box-shadow: 10px 0 50px 0 rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.about-us-content .sub-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bg-primary);
    align-self: flex-start;
}

.about-us-content h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--light-grey);
}

.about-us-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.75);
}

.about-stats-vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.about-btn {
    margin-top: 2rem;
    align-self: flex-start; 
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--light-grey);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-primary);
    font-weight: 600;
}

.about-us-images {
    width: 50%;
    display: flex;
}

.about-us-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-services {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 8rem 4rem;
    background-color: var(--bg-primary);
    color: var(--text-dark);
}

.services-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 5rem;
    max-width: 60%;
}

.services-header .sub-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-brown);
    margin-bottom: 1rem;
}

.services-header h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.services-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 2rem;
    width: 100%;
}

.service-item {
    display: flex;
    flex-direction: column;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(10, 36, 58, 0.2);
    transition: border-color 0.4s ease, transform 0.4s ease;
    cursor:pointer;
}

.service-item:hover {
    border-top: 1px solid var(--accent-brown);
    transform: translateY(-5px);
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.75;
}

.section-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 4rem;
    background: radial-gradient(circle at 80% 50%, #6f4e2b 0%, var(--accent-brown) 100%);
    position: relative;
    min-height: 100vh;
}

.showcase-image {
    width: 60%;
    height: 700px;
    position: absolute;
    left: 4rem;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.4);
    z-index: 1;
    border-radius: 10px;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    border-radius: 10px;
}

.showcase-content {
    width: 40%;
    margin-left: auto;
    background-color: var(--bg-primary);
    padding: 5rem 4rem;
    position: relative;
    z-index: 2;
    color: var(--text-dark);
    box-shadow: -20px 20px 60px rgba(0,0,0,0.3);
}

.showcase-content .sub-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-brown);
    display: block;
    margin-bottom: 1rem;
}

.showcase-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.showcase-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.showcase-btn {
    border-color: var(--text-dark);
    color: var(--text-dark);
    font-size: 1.1rem;
}

.showcase-btn:hover {
    background-color: var(--text-dark);
    color: var(--bg-primary);
    border-color: var(--text-dark);
}

.section-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8rem 4rem;
    background-color: var(--bg-primary);
    color: var(--text-dark);
    min-height: 100vh;
}

.gallery-header {
    text-align: center;
    margin-bottom: 5rem;
}

.gallery-header .sub-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-brown);
    margin-bottom: 1rem;
    display: block;
}

.gallery-header h2 {
    font-size: 5rem;
    font-weight: 400;
    color: var(--text-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px; 
    gap: 1.5rem;
    width: 90%;
    max-width: 1400px;
    justify-content: center;
    min-height: 100vh;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    width: 100%;
    height: 100%; 
}


.gallery-item:nth-child(6n + 1) {
    grid-column: 1 / 3;
    grid-row: span 2;
}
.gallery-item:nth-child(6n + 2) {
    grid-column: 3 / 4;
    grid-row: span 1;
}
.gallery-item:nth-child(6n + 3) {
    grid-column: 3 / 4;
    grid-row: span 1;
}

.gallery-item:nth-child(6n + 4) {
    grid-column: 2 / 4; 
    grid-row: span 2;
}
.gallery-item:nth-child(6n + 5) {
    grid-column: 1 / 2;
    grid-row: span 1;
}
.gallery-item:nth-child(6n + 6) {
    grid-column: 1 / 2;
    grid-row: span 1;
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-logo{
    position: absolute;
    left: 4rem;
    top: 1rem
}

.gallery-logo img{
    width: 25%;
    height: auto;

}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(88, 62, 35, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay span {
    color: #ffffff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 1s ease;
}


.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.section-reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8rem 4rem;
    background-color: var(--bg-primary);
    color: var(--light-grey);
    min-height: 100vh;

}

.reviews-header {
    text-align: center;
    margin-bottom: 5rem;
}

.reviews-header .sub-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-brown);
    margin-bottom: 1rem;
    display: block;
}

.reviews-header h2 {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    width: 100%;
    margin-bottom: 5rem;
}

.review-card {
    background-color: rgba(88, 62, 35, 0.3);
    padding: 3rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.review-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
}

.stars {
    color: var(--accent-brown);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
    opacity: 0.9;
}

.review-author {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--light-grey);
}

.review-source {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
}

.reviews-btn {
    border-color: var(--light-grey);
    color: var(--light-grey);
    width: 40%;
    font-size: 1.2rem;
}

.reviews-btn:hover {
    background-color: var(--light-grey);
    color: var(--text-dark);
}

.section-contact {
    display: flex;
    flex-direction: row;
    padding: 10rem 8rem;
    background-color: var(--bg-primary);
    color: var(--text-dark);
    min-height: 100vh;
    gap: 6rem;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info .sub-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-brown);
    margin-bottom: 1rem;
}

.contact-info h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 80%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.detail-item strong {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-brown);
    margin-bottom: 0.3rem;
}

.detail-item a {
    font-size: 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.detail-item a:hover {
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.social-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--text-dark);
    transition: width 0.3s ease;
}

.social-links a:hover::after {
    width: 100%;
}

.contact-form-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(10, 36, 58, 0.3);
    padding: 0.5rem 0;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-family: inherit;
    transition: border-color 0.3s ease;
    resize: none;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-bottom-color: var(--text-dark);
}

.input-group label {
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.6;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -1rem;
    font-size: 0.85rem;
    opacity: 1;
    color: var(--accent-brown);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn {
    border-color: var(--text-dark);
    color: var(--text-dark);
    align-self: flex-start;
    cursor: pointer;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: var(--text-dark);
    color: var(--bg-primary);
}

.main-footer {
    color: var(--light-grey);
    text-align: center;
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}
.main-footer a{
    text-decoration: underline;
    color: var(--light-grey);
}

.privacy-nav a{
    text-decoration: none;
    color: var(--light-grey);
    margin-left: 3rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.7s ease;
    font-weight: bold;
}

.privacy-nav a:hover{
    color: var(--accent-brown);
}

.section-text-page {
    background-color: var(--bg-primary);
    color: var(--text-dark);
    padding: 6rem 4rem 10rem;
    min-height: calc(100vh - 200px);
    display: flex;
    justify-content: center;
}
.privacy-logo{
    position: absolute;
    left: 4rem;
    top: 1rem
}

.privacy-logo img{
    width: 25%;
    height: auto;
}
.text-page-container {
    max-width: 80%;
    width: 100%;
}

.text-page-container h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 4rem;
    border-bottom: 2px solid var(--accent-brown);
    padding-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-brown);
}

.legal-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.legal-content ul {
    list-style-type: none;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-brown);
}

.legal-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
}

.legal-content a:hover {
    color: var(--accent-brown);
}

.wraper {
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("images/hero.jpeg");
}
.hero-content h1,
.hero-content p,
.hero-content .btn-outline {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    overflow: hidden;
}

.hero-content h1 {
    animation-delay: 0.1s;
}

.hero-content p {
    animation-delay: 0.3s;
}

.hero-content .btn-outline {
    animation-delay: 0.5s;
}

@keyframes fadeSlideUp {
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .main-header {
        padding: 4rem 3rem; 
    }

    .logo {
        left: 2rem; /* Przysuwamy logo bliżej krawędzi */
    }


    .main-nav a {
        margin-left: 1.5rem; /* Ściskamy linki, by się zmieściły */
        font-size: 1.1rem;
    }

    .hero {
        padding: 2rem 2rem 4rem 2rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem; 
    }

    .section-about-us {
        flex-direction: column; /* Łamiemy About Us na dwa wiersze */
        height: auto;
    }

    .about-us-content, .about-us-images {
        width: 100%; /* Obie połówki zajmują teraz całą szerokość */
    }

    .about-us-content {
        padding: 5rem 3rem;
    }

    .about-us-images {
        height: 50vh; /* Ustalamy wysokość zdjęcia poniżej tekstu */
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Kluczowe: 2 kolumny usług zamiast 4 */
        gap: 2rem;
    }

    .section-showcase {
        flex-direction: column;
        padding: 5rem 2rem;
        height: auto;
    }

    .showcase-image {
        position: relative;
        left: 0;
        width: 100%;
        height: 500px;
    }

    .showcase-content {
        width: 90%;
        margin: -5rem auto 0;
    }

.gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .gallery-item:nth-child(1n) {
        grid-column: span 1;
        grid-row: span 1;
    }
    

    .gallery-item:nth-child(3n + 1) {
        grid-column: 1 / 3;
        grid-row: span 2;
    } 
    .reviews-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 3rem;
    }
    
    .review-card {
        width: calc((100% - 3rem) / 2);
    }

    .section-contact {
        flex-direction: column; 
        padding: 5rem 3rem;
        height: auto;
        gap: 4rem;
    }

    .section-text-page {
        padding: 4rem 1.5rem;
    }
    .text-page-container h1 {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    :root{
        max-width: 100vw;
    }
    .main-header {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        height: auto;
    }
    .logo{
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 1rem;
    }
    .logo > img{
        width: 20%;
    }
    .main-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .main-nav a {
        margin-left: 0;
        font-size: 0.9rem;
    }

    .wraper {
        height: auto;
        min-height: auto;
        background-color: var(--accent-brown);
        background-position: center;
    }

    .hero {
        /* flex-direction: column; */
        align-items: flex-start;
        justify-content: center;
        padding: 2rem 1.5rem 4rem 1.5rem;
        min-height: 100vh;
        background-size: contain;
    }

    .hero-content {
        max-width: 100%;
        margin-top: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    .btn-outline {
        max-width: 100%;
        width: 100%;
    }

    .section-about-us {
        flex-direction: column;
        height: auto;
    }

    .about-us-content {
        width: 100%;
        padding: 4rem 1.5rem;
        box-shadow: none;
    }

    .about-us-content h2 {
        font-size: 2.8rem;
    }

    .about-us-images {
        width: 100%;
        height: 50vh;
    }

    .section-services {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .services-header {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .services-header h2 {
        font-size: 2.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-showcase {
        padding: 4rem 1.5rem;
        flex-direction: column;
        justify-content: flex-start;
        min-height: auto;
    }

    .showcase-image {
        position: relative;
        width: 100%;
        left: 0;
        height: 400px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .showcase-content {
        width: 95%;
        margin: -4rem auto 0;
        padding: 2.5rem 1.5rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
        align-items: center; /* Centruje przyciski i inne bloki na środku */
        text-align: center;  /* Centruje same napisy */
    }

    .showcase-content h2 {
        font-size: 2.2rem;
    }

    .section-gallery {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .gallery-header h2 {
        font-size: 2.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 1.5rem;
    }

    .gallery-item:nth-child(1n) {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .gallery-logo{
        width: 100%;
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 1rem;
    }

    .gallery-logo a {
        display: inline-block;
    }

    .gallery-logo img{
        width: 20vw;
        min-width: 80px;
        max-width: 120px;
        height: auto;
        display: block;
    }
    .section-reviews {
        padding: 4rem 1.5rem;
        height: auto;
    }

    .reviews-header h2 {
        font-size: 2.8rem;
    }

    .reviews-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .review-card {
        width: 100%;
        padding: 2rem;
    }
    .section-contact {
        flex-direction: column;
        padding: 4rem 1.5rem;
        height: auto;
        gap: 4rem;
    }

    .contact-info {
        width: 100%;
    }

    .contact-info h2 {
        font-size: 2.8rem;
    }

    .contact-info p {
        max-width: 100%;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .contact-form-wrapper {
        width: 100%;
    }
    .section-text-page {
        padding: 4rem 1.5rem;
    }
    
    .text-page-container h1 {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }

    .privacy-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .privacy-nav a {
        margin-left: 0;
        font-size: 0.9rem;
    }

    .privacy-logo{
        width: 100%;
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 1rem;
    }

    .privacy-logo a {
        display: inline-block;
    }
    .privacy-logo img{
        width: 20vw;
        min-width: 80px;
        max-width: 120px;
        height: auto;
        display: block;
    }

}

.form-status {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: none;
}

.form-status.success {
    color: var(--text-dark);
}

.form-status.error {
    color: #d9534f;
}