p{
    margin-bottom: 1px;
}
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.hero-text {
    flex: 0 1 60%;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    align-items: flex-start; 
}

.hero-image-container {
    flex: 60% 40%;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
    max-width: 110%;
    transform: scale(1.1);
    margin-left: 40px;
}

.hero-image:hover {
    transform: scale(1.12);
}

.hero h1 {
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero h1 .diner {
    color: var(--white);
}

.hero h1 .bot-t10 {
    color: var(--turquoise);
}

.hero p {
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* .hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
} */

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--turquoise);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,169,165,0.3);
}

.rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.stars {
    color: var(--warning);
    font-size: 28px;
    margin-right: 15px;
}

.rating-text {
    font-weight: 500;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* A classe .visible provavelmente é adicionada por JS, por isso foi mantida */
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-benefits {
    padding: 60px 0 20px 0 ;
    background-color: var(--light);
}

.section-title {
    margin-bottom: 0px!important;
     display: flex;
    flex-direction: column; /* Para empilhar o h2 e o p (se houver) */
    align-items: center; 
}
.section-title p{
    margin-bottom: 30px;
     display: flex;
    flex-direction: column; /* Para empilhar o h2 e o p (se houver) */
    align-items: center; 
     white-space: nowrap;
}

.section-title h2 {
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    white-space: nowrap;
}


.business-environments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas por padrão */
    gap: 4rem 5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.business-environments-grid .feature-card {
    max-width: 462px;
}

.business-environments-grid .feature-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.business-environments-grid .feature-icon svg {
    width: 22px;
    height: 22px;
}

.business-environments-grid .feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
}

.business-environments-grid .feature-content > div:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    width: 100%;
}

.business-environments-grid .feature-content h3 {
    margin-top: 0;
    margin-bottom: 0;
}

.business-environments-grid .feature-content p {
    margin-top: 0;
}

.video-benefits-container {
    flex-direction: row-reverse;
    display: flex;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.benefits-list {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    /* gap: 18px; */
    justify-content: center;
    height: 100%;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 7px 10px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--turquoise);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.benefit-item-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(0,194,189,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-item-icon {
    background-color: var(--turquoise);
    transform: scale(1.1);
}

.benefit-item:hover .benefit-item-icon svg {
    fill: var(--white);
}

.benefit-item-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--turquoise);
    transition: all 0.3s ease;
}

.benefit-item-content h3 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.benefit-item-content p {
    color: var(--gray-dark);
    line-height: 1.5;
}

.video-container {
    position: relative;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 200px;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px;
    object-fit: cover;
}

.video-benefits .video-container {
    flex: 1.1;
    height: 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-color: transparent;
    box-shadow: none;
}

.video-benefits .video-container video {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.video-container.clickable {
    cursor: pointer;
    position: relative;
}



.features {
    padding: 100px 0 20px 0 ;
}

.awards-section {
    margin-bottom: 60px !important;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.features-grid.business-environments-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 4rem 5rem !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.feature-card {
    /* ALTERAÇÃO PRINCIPAL AQUI */
    /* Define a base para 50% para criar duas colunas, 
       e subtrai metade do 'gap' (30px / 2 = 15px) for um encaixe perfeito. */
    flex: 1 1 calc(50% - 15px); 
    
    min-width: 280px;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--gray);
    position: relative;
   display: flex;
  flex-direction: column;   /* menține layoutul actual */
}
/* mobil: textul înainte, apoi imaginea */
@media (max-width: 725px){
  .feature-card{
    flex-direction: column-reverse;  /* acum funcționează */
  }

  /* opțional, daca vrei spațiu între ele pe mobil */
  .feature-card .feature-video-container,
  .feature-card .feature-content{
    width: 100%;
  }

  .business-environments-grid {
    grid-template-columns: 1fr !important;
  }

  .features-grid.business-environments-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Hover effects removed - cards are not clickable */

.feature-video-container {
    position: relative;
    width: 100%;
    /* height: 200px; */
    overflow: hidden;
    background: linear-gradient(135deg,var(--light),var(--gray));
}

.feature-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.feature-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.feature-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* Hover scale effects removed - cards are not clickable */

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30,58,95,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.feature-card:hover .video-play-overlay {
    opacity: 1;
    background: rgba(30,58,95,0.7);
}

.play-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0,194,189,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.play-icon:hover,.feature-card:hover .play-icon {
    transform: scale(1.1);
    background-color: var(--turquoise);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.play-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
    margin-left: 2px;
}

.feature-content {
    padding: 25px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.feature-header .feature-icon {
    margin-bottom: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0,169,165,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Hover effects on icons removed - cards are not clickable */

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--secondary);
    transition: all 0.3s ease;
}

.feature-content h3 {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.feature-header h3 {
    margin-bottom: 0;
}

.feature-content p {
    color: var(--gray-dark);
    line-height: 1.5;
}

.specs {
    padding: 80px 0 20px 0;
    background-color: var(--light);
}

.specs-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.specs-image {
    flex: 1;
}

.specs-image img {
    max-width: 100%;
    border-radius: 15px;
}

.specs-content {
    flex: 1;
}

.specs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.spec-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    padding: 18px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary);
    min-height: 80px;
    justify-content: center;
}

.spec-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-left-color: var(--turquoise);
}

.spec-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 5px;
}

.spec-value {
    color: var(--gray-dark);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 16px;
    background-color: var(--white);
    color: var(--dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(45,206,204,0.15),0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* FAQ */
.faq-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.faq-column {
    flex: 1;
    min-width: 300px;
}

.faq-item {
    border: 1px solid var(--gray);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
     border-left: 4px solid var(--turquoise) !important;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
}

.faq-item h3, .faq-question, .faq-item button {
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin-bottom: 0.5rem !important;
}
@media (max-width: 992px) {
    .section-title h2,
    .section-title p {
        white-space: normal !important; 
        text-align: center;
    }
    .section-title h2 {
        line-height: 1.3; 
    }
    .hero-content {
        flex-direction: column-reverse;
        gap: 20px; /* Reduz o espaço quando empilhado */
    }

    .hero-image-container {
        justify-content: center;
        margin-bottom: 40px; 
        width: 100%; 
    }

    .hero-image {
        /* 3. Remove a margem que empurrava a imagem para a direita */
        margin-left: 0;
        /* 4. Reseta o tamanho para não estourar a tela */
        max-width: 100%; 
        transform: scale(1); /* Opcional: remove o efeito de zoom inicial */
    }
    /* --- FIM DAS ADIÇÕES --- */

    .video-benefits-container {
        flex-direction: column;
    }
    .features-grid {
        gap: 20px;
    }
    .feature-card {
        flex-basis: calc(50% - 10px);
    }
    .specs-container {
        flex-direction: column;
        align-items: center;
    }
    .specs-image img {
        width: 100%;
        margin: 0 auto;
        height: 400px;
    }
}

@media (max-width: 768px) {
     .section-title h2,
    .section-title p {
        white-space: normal !important; 
        text-align: center;
    }
     .hero-text {
        align-items: center;   /* Centraliza os botões e estrelas */
        text-align: center;    /* Centraliza os parágrafos e o título */
    }
    .video-benefits .video-container {
        min-height: 300px;
    }
    .feature-card {
        flex-basis: 100%;
    }
     .hero-buttons {
        flex-direction: column; 
        width: 100%; 
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .specs-grid {
        flex-direction: column;
        gap: 15px;
    }
   
    
}

@media screen and (max-width: 600px) {
     .section-title h2,
    .section-title p {
        white-space: normal !important; 
        text-align: center;
    }

}

/* Estilos de menu mobile e outros que não foram alterados */
/* NOTA: Mantive os estilos de menu mobile pois eles provavelmente são usados por um 'header.html' que não foi incluído. */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    padding-top: 100px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    display: block;
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

@media (max-width: 900px) {
     .section-title h2,
    .section-title p {
        white-space: normal !important; 
        text-align: center;
    }
    nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    body.mobile-menu-open {
        overflow: hidden;
    }
}@media (max-width: 1200px) {
    .section-title h2,
    .section-title p {
        white-space: normal !important; 
        text-align: center;
    }
}

.uClean-img{
    width: 80%;
}
/* AWARDS SECTION - SUPER ENKEL GRID LAYOUT */
.awards-section {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 40px auto;
    padding: 0 20px;
    
    /* Grid: tekst + logoer sentrert sammen */
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.awards-intro {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.awards-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.award-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.award-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Mobil: stack vertikalt */
@media (max-width: 768px) {
    .awards-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .awards-logos {
        justify-content: center;
        gap: 15px;
    }
    
    .award-logo {
        height: 35px;
    }
}

/* Mobile tweaks for awards row under "Avanserte funksjoner..." */
@media (max-width: 768px) {
  .features .awards-section {
    flex-direction: column;
    text-align: center;
  }

  .features .awards-section .awards-logos {
    margin-top: 8px;
  }

  .features .awards-section .award-logo {
    height: 32px !important;
    max-height: 32px !important;
  }
}

/* Customer Cases Section */
.customer-cases {
    padding: 80px 0;
    background: #f8f9fa;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.case-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.case-content-top {
    padding: 20px 24px 4px 24px;
    background: white;
    min-height: 90px;
    display: flex;
    align-items: flex-start;
}

.case-content-top h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    color: #1e3a5f;
    line-height: 1.3;
}

.case-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.case-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.video-overlay .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 194, 189, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.case-video-wrapper.clickable {
    cursor: pointer;
}

.case-video-wrapper.clickable video::-webkit-media-controls {
    display: none;
}

.case-video-wrapper.clickable video {
    pointer-events: none;
}

.case-video-wrapper:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgb(0, 194, 189);
    box-shadow: 0 8px 30px rgba(0, 194, 189, 0.5);
}

.play-icon svg {
    width: 30px;
    height: 30px;
    color: white;
    margin-left: 3px;
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.case-video-wrapper video::-webkit-media-controls-panel {
    z-index: 2;
}

.case-video-wrapper video[controls] ~ .video-overlay {
    display: flex;
}

.case-video-wrapper video:not([controls]) ~ .video-overlay .play-icon,
.case-video-wrapper video:not([controls]) ~ .video-overlay .video-duration {
    display: none;
}

.case-content-bottom {
    padding: 12px 24px 20px 24px;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-content-bottom p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

@media (max-width: 768px) {
    .customer-cases {
        padding: 60px 0;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .case-content-top h3 {
        font-size: 1.2rem;
    }
    
    .case-content-top,
    .case-content-bottom {
        padding: 16px 20px;
    }
    
    .case-content-bottom p {
        font-size: 0.9rem;
    }
}


/* Hover effects for feature cards */
.features-grid .feature-card {
    transition: all 0.3s ease !important;
}

.features-grid .feature-card:hover {
    transform: translateY(-5px) !important;
}

.features-grid .feature-card:hover .feature-icon {
    background-color: var(--turquoise) !important;
    transform: scale(1.1) !important;
}

.features-grid .feature-card:hover .feature-icon svg {
    fill: var(--white) !important;
}

.business-environments-grid .feature-card {
    transition: all 0.3s ease !important;
}

.business-environments-grid .feature-card:hover {
    transform: translateY(-5px) !important;
}

.business-environments-grid .feature-card:hover .feature-icon {
    background-color: var(--turquoise) !important;
    transform: scale(1.1) !important;
}

.business-environments-grid .feature-card:hover .feature-icon svg {
    fill: var(--white) !important;
}

/* Refactored Inline Styles */
.text-turquoise-color {
    color: var(--turquoise);
}

.text-white-color {
    color: white;
}

.awards-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 10px auto 20px;
}

.award-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin: 0 8px;
    position: static;
}

.gallery-image {
    width: 100%;
    border-radius: 12px;
}

.contact-intro-text {
    margin-bottom: 8px;
}

.hidden-section {
    display: none;
}
