/* Fontes Manrope */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/manrope-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/manrope-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    src: url('fonts/manrope-800.woff2') format('woff2');
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    height: 120px;
    border-bottom: 1px solid #dedede;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container {
    align-content: center;
    align-items: center;
    display: flex;
    flex: 1 0 0px;
    flex-direction: row;
    flex-wrap: nowrap;
    height: min-content;
    justify-content: space-between;
    max-width: 1920px;
    overflow: hidden;
    padding: 32px 48px;
    position: relative;
    width: 1px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.menu {
    display: flex;
    gap: 40px;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-weight: 100;
}

.botao-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.botao {
    padding: 16px 32px;
    color: #000000;
    text-decoration: none;
    border: 1px solid #dedede;
    font-weight: 100;
    transition: all 0.3s ease;
}

.botao:hover {
    background: #0A3642;
    color: #fff;
    border-color: #0A3642;
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px - 200px);
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1920px;
    width: 100%;
    min-height: 100%;
    padding: 0;
    gap: 0;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 48px;
    position: relative;
    overflow: visible;
    background: #fff;
    min-height: 400px;
}

.hero-content > * {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 30px;
    font-weight: 200;
    line-height: 1.2;
    color: #000;
}

.hero-content h1 .highlight {
    color: #0A3642;
    font-weight: 200;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    font-weight: 200;
}

.hero-button {
    display: inline-block;
    padding: 16px 32px;
    background: #0A3642;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    font-weight: 100;
    width: fit-content;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1a4a5a;
    transition: left 0.3s ease;
    z-index: 0;
}

.hero-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 100%;
    background: #1a4a5a;
    z-index: 1;
}

.hero-button span {
    position: relative;
    z-index: 2;
}

.hero-button:hover::before {
    left: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    width: 100%;
    background: #fff !important;
    margin-top: auto;
    padding: 30px 0;
    border-top: 1px solid #dedede;
    z-index: 10;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 48px;
    border-right: 1px solid #dedede;
}

.stat-item:first-child {
    padding-left: 48px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h3 {
    font-size: 35px;
    font-weight: 200;
    color: #000;
}

.stat-item p {
    font-size: 16px;
    color: #666;
    font-weight: 200;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Clients Section */
.clients-section {
    background: #0A3642;
    padding: 20px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.clients-container {
    max-width: 1920px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.clients-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.clients-title {
    font-size: 16px;
    font-weight: 200;
    color: #fff;
}

.clients-subtitle {
    font-size: 14px;
    font-weight: 200;
    color: #ccc;
    line-height: 1.6;
}

.clients-carousel {
    display: flex;
    gap: 80px;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.clients-carousel-track {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: scrollInfinite 20s linear infinite;
    width: max-content;
}

.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
    filter: brightness(0) invert(1);
    min-width: 100px;
}

.client-logo img {
    max-width: 120px;
    max-height: 60px;
}

@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about-section {
    background: #fff;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    max-width: 1920px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 140px 48px 140px 48px;
    justify-content: center;
}

.about-label {
    font-size: 16px;
    font-weight: 200;
    color: #0A3642;
    text-transform: capitalize;
}

.about-title {
    font-size: 39px;
    font-weight: 200;
    line-height: 1.2;
    color: #000;
}

.about-title .highlight {
    color: #0A3642;
    font-weight: 200;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
}

.about-button {
    display: inline-block;
    padding: 16px 32px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    text-decoration: none;
    font-size: 16px;
    font-weight: 100;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-button:hover {
    background: #0A3642;
    border: 1px solid #0A3642;
    color: #fff;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid #dedede;
    border-left: 1px solid #dedede;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding: 60px 40px;
    border-right: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}

.feature-card:nth-child(3),
.feature-card:nth-child(4) {
    border-bottom: none;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A3642;
    font-size: 32px;
}

.feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-weight: 200;
}

/* Testimonial Section */
.testimonial-section {
    background: #fff;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}

.testimonial-container {
    max-width: 1920px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 400px;
}

.testimonial-image {
    background: linear-gradient(135deg, #e8f1f5 0%, #d4e4eb 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 60px;
    justify-content: center;
    background: #fff;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.6;
    color: #000;
    font-weight: 200;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-name {
    font-size: 18px;
    line-height: 2;
    font-weight: 200;
    color: #000;
}

.testimonial-title {
    font-size: 16px;
    font-weight: 200;
    color: #0A3642;
}

/* Specialisations Section */
.specialisations-section {
    background: #fff;
    padding: 70px 48px 0px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.specialisations-container {
    max-width: 1920px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.specialisations-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.specialisations-label {
    font-size: 16px;
    font-weight: 200;
    color: #0A3642;
}

.specialisations-title {
    font-size: 39px;
    font-weight: 200;
    color: #000;
    line-height: 1.2;
}

.specialisations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.specialisation-card {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.specialisation-card:nth-child(1),
.specialisation-card:nth-child(3) {
    border-right: 1px solid #dedede;
}

.specialisation-card:nth-child(1),
.specialisation-card:nth-child(2) {
    border-bottom: 1px solid #dedede;
}

.specialisation-card:nth-child(2n+1) {
    padding-left: 0;
}

.specialisation-number {
    font-size: 18px;
    font-weight: 200;
    color: #0A3642;
}

.specialisation-name {
    font-size: 32px;
    font-weight: 200;
    color: #000;
    line-height: 1.3;
}

.specialisation-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    font-weight: 200;
}

/* Reviews Section */
.reviews-section {
    background: #f0f2f5;
    padding: 70px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.review-corner-block {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #d9dde1;
}

.review-corner-block.top-left {
    top: 0;
    left: 0;
}

.review-corner-block.bottom-right {
    bottom: 0;
    right: 0;
}

.reviews-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    text-align: left;
}

.review-slide {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.review-label {
    font-size: 14px;
    font-weight: 200;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.review-text {
    font-size: 22px;
    line-height: 1.6;
    color: #000;
    font-weight: 200;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-author-name {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.review-author-title {
    font-size: 14px;
    font-weight: 200;
    color: #666;
}

.review-pagination {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.pagination-dot {
    width: 40px;
    height: 4px;
    background: #ccc;
}

.pagination-dot.active {
    background: #000;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.reviews-slides {
    display: flex;
    transition: transform 0.3s ease;
    width: 200%;
}

.review-slide {
    width: 50%;
    flex-shrink: 0;
}

.reviews-nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
}

.review-nav-dot {
    width: 40px;
    height: 4px;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.review-nav-dot.active {
    background: #000;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 70px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-container {
    max-width: 1920px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-label {
    font-size: 16px;
    font-weight: 200;
    color: #0A3642;
}

.faq-title {
    font-size: 39px;
    font-weight: 200;
    color: #000;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
}

.faq-contact-btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 14px;
    background: #0A3642;
    color: #fff;
    text-decoration: none;
    font-weight: 200;
    width: fit-content;
    transition: background 0.3s ease;
}

.faq-contact-btn:hover {
    background: #1a4a5a;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    background: #fff;
    border-bottom: 1px solid #dedede;
    overflow: hidden;
    margin-bottom: 1px;
}

.faq-item:first-child {
    background: #f5f5f5;
    margin-bottom: 16px;
    border: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 200;
    color: #000;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-item:first-child .faq-question:hover {
    background: none;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 24px 24px 24px;
}

/* Footer Section */
.footer-section {
    background: #fff;
    padding: 60px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #dedede;
}

.footer-container {
    max-width: 1920px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.footer-bottom {
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #dedede;
}

.footer-pages {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-section-title {
    font-size: 14px;
    font-weight: 300;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-pages-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-page-link {
    font-size: 16px;
    font-weight: 300;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-page-link:hover {
    color: #0A3642;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    font-size: 16px;
    font-weight: 300;
    color: #333;
}

.footer-slogan-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
    text-align: right;
}

.footer-slogan {
    font-size: 32px;
    font-weight: 300;
    color: #333;
    line-height: 1.2;
}

.footer-cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    font-size: 14px;
    font-weight: 100;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-cta-button:hover {
    background: #0A3642;
    color: #fff;
    border: 1px solid #0A3642;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-addresses {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.footer-address-item {
    font-size: 12px;
    font-weight: 300;
    color: #666;
    line-height: 1.4;
}

.footer-address-item span {
    text-align: left !important;
    text-justify: unset !important;
}

/* Classe para logo no header e footer */
.logo img {
    width: 210px;
    display: block;
}

/* Classe para ícones SVG */
.feature-icon svg {
    width: 32px;
    height: 32px;
}

/* Classe para título das cidades no footer */
.footer-city-name {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Classe para copyright no footer */
.footer-copyright-section {
    margin-top: 35px;
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    font-weight: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-circle {
    width: 32px;
    height: 32px;
    background: #830000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.footer-address {
    font-size: 14px;
    font-weight: 300;
    color: #666;
    line-height: 1.4;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-social-icon:hover {
    background: #f5f5f5;
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
    fill: #333;
}

.footer-credit {
    font-size: 12px;
    font-weight: 100;
    color: #999;
}

.mobile-br {
    display: none;
}

/* Menu Hamburguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1000;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Media Queries */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .header-container {
        padding: 24px 32px;
    }

    .hero-content {
        padding: 32px;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-stats {
        padding: 20px 0;
        position: relative;
    }

    .stat-item {
        padding: 0 32px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .about-content {
        padding: 80px 32px;
    }

    .about-title {
        font-size: 32px;
    }

    .feature-card {
        padding: 40px 24px;
    }

    .testimonial-content {
        padding: 40px;
    }

    .specialisations-section {
        padding: 60px 32px 0 32px;
    }

    .specialisations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specialisation-card:nth-child(2),
    .specialisation-card:nth-child(4) {
        border-right: none;
    }

    .reviews-section {
        padding: 60px 32px;
    }

    .faq-section {
        padding: 60px 32px;
    }

    .faq-container {
        gap: 40px;
    }

    .footer-section {
        padding: 50px 32px;
    }

    .footer-addresses {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    /* Header Mobile */
    header {
        height: 80px;
    }

    .header-container {
        padding: 16px 24px;
    }

    .menu-toggle {
        display: flex;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        transition: left 0.3s ease;
        z-index: 999;
        border-top: 1px solid #dedede;
        justify-content: flex-start;
    }

    .menu.active {
        left: 0;
    }

    .menu a {
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .botao-container {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 16px 24px;
        background: #fff;
        border-top: 1px solid #dedede;
        z-index: 1000;
        display: none;
    }

    .botao-container.active {
        display: flex;
    }

    .botao {
        width: 100%;
        text-align: center;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Hero Mobile */
    .hero-section {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        padding: 40px 24px;
        order: 1;
        align-items: flex-start;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-image {
        order: 2;
        height: 300px;
    }

    .hero-stats {
        position: relative;
        grid-template-columns: 1fr;
        order: 3;
        padding: 20px 0;
    }

    .stat-item {
        padding: 20px 24px;
        border-right: none;
        border-bottom: 1px solid #dedede;
    }

    .stat-item:first-child {
        padding-left: 20px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    .stat-item p {
        font-size: 14px;
    }

    /* Clients Mobile */
    .clients-section {
        height: auto;
        min-height: 150px;
        padding: 30px 24px;
    }

    .clients-title {
        font-size: 14px;
    }

    .clients-subtitle {
        font-size: 12px;
    }

    .client-logo {
        min-width: 80px;
    }

    .client-logo img {
        max-width: 100px;
        max-height: 50px;
    }

    /* About Mobile */
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 60px 24px;
    }

    .about-title {
        font-size: 26px;
    }

    .about-button {
        width: auto;
        text-align-last: center;
    }

    .about-text {
        font-size: 14px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .feature-card {
        border-right: 1px solid #dedede;
    }

    .feature-card:nth-child(3) {
        border-bottom: 1px solid #dedede;
    }

    /* Testimonial Mobile */
    .testimonial-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .testimonial-image {
        height: 300px;
    }

    .testimonial-content {
        padding: 40px 24px;
    }

    .testimonial-text {
        font-size: 18px;
    }

    /* Specialisations Mobile */

    .specialisations-container {
        gap: 30px;
    }

    .specialisations-section {
        padding: 60px 24px 0 24px;
    }

    .specialisations-title {
        font-size: 26px;
    }

    .specialisations-grid {
        grid-template-columns: 1fr;
    }

    .specialisation-card {
        padding: 40px 0;
        border-right: none !important;
    }

    .specialisation-card:nth-child(2n+1) {
        padding-left: 0;
    }
    
    .specialisation-card:nth-child(3) {
        border-bottom: 1px solid #dedede;
    }

    .specialisation-name {
        font-size: 24px;
    }

    /* Reviews Mobile */
    .reviews-section {
        padding: 60px 24px;
    }

    .review-corner-block {
        display: none;
    }

    .review-text {
        font-size: 18px;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 60px 24px;
    }

    .faq-contact-btn {
        width: unset;
        text-align-last: center;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-title {
        font-size: 26px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-answer {
        font-size: 14px;
        padding: 0 20px;
    }

    .faq-answer.active {
        padding: 0 20px 20px 20px;
    }

    /* Footer Mobile */
    .footer-section {
        padding: 40px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-slogan-section {
        display: none;
        align-items: flex-start;
        text-align: left;
    }

    .footer-slogan {
        font-size: 24px;
    }

    .footer-addresses {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-address-item {
        font-size: 13px;
    }

    .footer-copyright-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-copyright-section > div:first-child {
        width: 100%;
    }

    .footer-copyright-section > div:last-child {
        width: 100%;
        text-align: left;
    }

    .logo img {
        width: 150px;
    }

    .mobile-br {
        display: inline;
    }
    
    .footer-copyright-section {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px;
    }
    
    .footer-credit {
        width: 100%;
        text-align: left;
    }
}

