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; /* Troca a ordem dos elementos */
    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);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--turquoise);
    border: 2px solid var(--turquoise);
}

.btn-secondary:hover {
    background-color: var(--turquoise);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.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: 40px 0 30px 0 !important;
    background-color: var(--light);
}

.section-title {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center; 
}
.section-title p{
    margin-bottom: 25px;
    display: block;
    text-align: center;
    white-space: normal;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

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


.award-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.award-text {
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.award-logo-features:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.video-benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.benefits-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    height: 100%;
    justify-self: start;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 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 {
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    box-shadow: none;
    border-radius: 15px;
    overflow: hidden;
}

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

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

.video-container.clickable::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 194, 189, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.video-container.clickable::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    z-index: 11;
    transition: all 0.3s ease;
}

.video-container.clickable:hover::before {
    background-color: var(--turquoise);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 194, 189, 0.5);
}

.video-container.clickable:hover::after {
    transform: translate(-40%, -50%) scale(1.1);
}

.video-container.clickable.playing::before,
.video-container.clickable.playing::after {
    display: none;
}

.video-container.clickable-autoplay {
    cursor: pointer;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-content: center;
}

.feature-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 350px;
    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);
    /* cursor: pointer; */
    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%;
  }
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--secondary);
}

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

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

.feature-card:hover .feature-video {
    transform: scale(1.05);
}

.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: 15px;
    margin-bottom: 15px;
}

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

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

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

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

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

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

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

/* Tighter spacing ONLY for "Tekniske spesifikasjoner" section */
.specs .section-title {
    margin-bottom: 18px;   /* mindre luft under heading-blokken */
}

.specs .section-title h2 {
    margin-bottom: 8px;    /* tettere mellom H2 og sub-heading */
}

.specs .section-title p {
    margin-bottom: 6px;    /* mindre luft under sub-heading-teksten */
}

.specs-container {
       flex-wrap: wrap;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.specs-image {
    flex: 0 0 650px;
    max-width: 650px;
    align-self: stretch;
    display: flex;
}

.specs-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.specs-image img:hover {
    transform: scale(1.02);
}

.specs-content {
    flex: 1;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 12px 14px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 3px solid var(--turquoise);
    min-height: auto;
}

.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: 13px;
    margin-bottom: 3px;
}

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

/* Responsive specs section for mobile */
@media (max-width: 968px) {
    .specs-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .specs-image {
        flex: 1 1 auto;
        max-width: 100%;
        align-self: center;
    }
    
    .specs-image img {
        height: auto;
        max-height: 400px;
    }
}

@media (max-width: 640px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .specs {
        padding: 40px 0 30px 0;
    }
}

.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;
}

.scroll-left {
    left: -5px;
}
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/*VIDEO CARD*/
.video-scroll-container {
    position: relative;
    padding: 0 25px; 
}

.video-grid {
    display: flex;
    gap: 30px;
    overflow-y: hidden;
    overflow-x: auto; 
    scroll-behavior: smooth;
    padding: 20px 0;
}

.video-grid::-webkit-scrollbar {
  height: 8px; 
}
.video-grid::-webkit-scrollbar-track {
  background: var(--gray); 
  border-radius: 10px;
  margin: 0 50px; 
}
.video-grid::-webkit-scrollbar-thumb {
  background-color: var(--secondary); 
  border-radius: 10px;
  border: 2px solid var(--gray); 
}

.video-grid::-webkit-scrollbar-thumb:hover {
  background-color: var(--turquoise); 
}
.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.video-info p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.4;
    margin: 0;
}

.scroll-arrow:hover {
    background-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.scroll-arrow:hover svg {
    fill: var(--white);
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary);
    transition: fill 0.3s ease;
}

.scroll-right {
    right: -5px;
}

.video-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 0 0 350px;
    min-width: 350px;
}

/* 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-section {
    padding: 30px 0 !important;
}

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

.faq-question, .faq-item button {
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

/* --- Media Queries ajustadas para Flexbox --- */
@media (max-width: 992px) {
    .section-title h2,
    .section-title p {
        white-space: normal !important; 
        text-align: center;
    }
    /* Empilha as seções principais que são de duas colunas */
    .hero-content,
    .video-benefits-container,
    .specs-container {
        flex-direction: column-reverse; /* Imagem/vídeo no topo, texto abaixo */
        text-align: center; /* Centraliza o texto */
        gap: 40px;
    }
    
    .hero-text,
    .specs-content {
        align-items: center; /* Centraliza os itens internos como botões e texto */
        padding-right: 0;
    }
    
    .hero-image {
        margin-left: 0;
        transform: scale(1); /* Reseta o zoom da imagem */
        max-width: 100%;
    }

    /* Ajusta a grade de funcionalidades para 2 colunas */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Faz a imagem das especificações ocupar a largura total */
    .specs-image {
        flex-basis: 100%;
    }
}

/* Para celulares e tablets em modo retrato (até 768px) */
@media (max-width: 768px) {
    .section-title h2,
    .section-title p {
        white-space: normal !important; 
        text-align: center;
    }
    /* Reduz o espaçamento vertical de todas as seções principais */
    .hero, .video-benefits, .features, .specs, .restaurant-videos, .faq-section, .contact {
        padding: 40px 0;
    }

    /* Ajusta o tamanho das fontes para melhor legibilidade em telas menores */
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 18px;
    }
    .section-title h2 {
        font-size: 28px;
    }

    /* Empilha os botões da seção hero */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 40px auto 0;
    }
    .btn {
        width: 100%; /* Faz os botões ocuparem a largura do contêiner */
    }

    /* Centraliza os elementos de avaliação */
    .rating {
        justify-content: center;
    }

    /* Transforma a grade de funcionalidades em uma única coluna */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gjør videoboksene til én kolonne på mobil */
    .video-benefits-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Otimiza o carrossel de vídeos para mobile */
    .video-card {
        flex-basis: 300px; /* Reduz a largura dos cards de vídeo */
        min-width: 300px;
    }
    
 
   
    /* Empilha as colunas do FAQ */
    .faq-container {
        flex-direction: column;
        gap: 0;
    }

    /* Empilha os campos do formulário */
    .form-row {
        flex-direction: column;
        gap: 0; /* Remove o espaçamento horizontal */
        margin-bottom: 0;
    }
    .form-group {
        margin-bottom: 20px;
    }
}

/* Ajustes finos para telas muito pequenas (até 480px) */
@media (max-width: 480px) {
    .section-title h2,
    .section-title p {
        white-space: normal !important; 
        text-align: center;
    }
    .container {
        padding: 0 15px; /* Reduz o espaçamento lateral */
    }

    /* Reduz ainda mais as fontes */
    .hero h1 {
        font-size: 32px;
    }
    .section-title h2 {
        font-size: 24px;
    }
    
    /* Ajusta o tamanho dos cards de vídeo */
    .video-card {
        flex-basis: 280px;
        min-width: 280px;
    }

    /* Reduz o padding interno dos cards */
    .feature-content, 
    .video-info {
        padding: 20px;
    }

}

/* Estilos de menu mobile (mantidos por precaução) */
@media (max-width: 900px) {
    nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .section-title h2,
    .section-title p {
        white-space: normal !important; 
        text-align: center;
    }
}
@media (max-width: 1200px) {
    .section-title h2,
    .section-title p {
        white-space: normal !important; 
        text-align: center;
    }
}

.video-caption {
    padding: 20px;
    background-color: var(--white);
    text-align: center;
}

.video-caption h3 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.video-caption p {
    color: var(--gray-dark);
    line-height: 1.5;
    margin: 0;
}


/* --- TIGHTER SPACING FOR THE LAST VIDEO SECTION (Vacuum 40 hotel/industry videos) --- */
.video-benefits:last-of-type {
    /* slightly tighter padding around this specific section */
    padding-top: 30px !important;
    padding-bottom: 10px !important;
}

/* Let the video cards sit closer to the subtitle instead of floating in a 600px tall box */
.video-benefits:last-of-type .video-benefits-container {
    align-items: stretch;   /* gjør at begge kortene får samme høyde i grid-raden */
    min-height: 0;            /* remove artificial minimum height for this section */
}

/* Reduce video container height and ensure equal sizing for hotel/industry videos */
.video-benefits:last-of-type .video-container {
    height: auto;
}

/* Limit width on desktop, keep full width on mobile */
@media (min-width: 992px) {
    .video-benefits:last-of-type .video-container {
        max-width: 480px;  /* litt smalere = litt lavere video */
        width: 100%;
        margin: 0 auto;      /* sentrer hver boks i sin kolonne */
    }
}

/* Ensure equal total height for both video cards on desktop */
@media (min-width: 992px) {
    .video-benefits:last-of-type .video-caption {
        min-height: 120px;   /* sikrer lik høyde på tekstdelen under videoen */
    }
}

/* ========================================================================== */
/* NEW CLASSES FOR UCLEAN-VACUUM40.HTML - Removed Inline Styles */
/* ========================================================================== */

.vacuum40-video {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16/9;
    display: block;
    object-fit: cover;
    margin: 0 auto;
}

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

.hidden-seo-content {
    display: none;
}

.rating-text {
    color: white;
}


/* ========================================================================== */
/* NEW CLASSES FOR UCLEAN-VACUUM40.HTML - Removed Inline Styles */
/* ========================================================================== */

.vacuum40-video {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16/9;
    display: block;
    object-fit: cover;
    margin: 0 auto;
}

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

.hidden-seo-content {
    display: none;
}

.rating-text {
    color: white;
}
