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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.nav-brand {
    width: 50%;
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 700;
}

.nav-content {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
}

.nav-menu a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #5E503F;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: #5E503F;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    position: fixed;
    top: 1.75rem;
    right: 1rem;
    z-index: 150;
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    height: 45vh;
}

.hero-slide {
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all 0.5s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 120px;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.hero-slide.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #5E503F;
    border: 2px solid #5E503F;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #3ea66a;
    border-color: #3ea66a;
}

.btn-secondary {
    background-color: #1a1a1a;
    border: 2px solid #1a1a1a;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: transparent;
    color: #1a1a1a;
}

/* Carousel dots */
.carousel-dots {
    position: absolute;
    bottom: 0.8em;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
}

.carousel-dot.active {
    background-color: #ffffff;
}

/* About Section with Image */
.about-section-split {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 60vh;
    background-image: url("img/about-image.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-content-box {
    padding-right: 40px;
}

.section-label {
    color: #5E503F;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-content-box h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 650;
    line-height: 1.3;
}

.about-content-box p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Link Section  */
.link-section-split {
    padding: 100px 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.link-split-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

.link-content-box {
    padding: 40px;
    text-align: center;
}

.link-content-box p {
    color: #1a1a1a;
    font-weight: 650;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-transform: none;
}

.link-box-image {
    width: 100%;
    height: auto;  
    border-radius: 6px; 
    transition: transform 0.3s ease; 
}

/* Icon List */
.icon-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.icon-list-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: #705E46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: x-large;
}

.icon-circle svg {
    width: 30px;
    height: 30px;
}

.icon-list-content h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.icon-list-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Warnings Grid */
.warnings-grid-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
    font-family: 'Arial', sans-serif;
    text-align: left;
}

.warnings-grid-section h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left; 
}

.warning-label {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left; 
}

.warnings-grid-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left; 
}

.warning-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.warning-list li {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.warning-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #5E503F;
    font-size: 1rem;
}

/* HTT Links */
.htt-link-section-split {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.htt-link-section-split .section-label {
    font-size: 1.1rem;
    color: #5E503F;
    margin-bottom: 15px;
}

.htt-link-section-split .section-label a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    transition: color 0.3s ease;
}

.htt-link-section-split .section-label a:hover {
    color: #555;
}

/* Location Grid */
.location-grid-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.location-box {
    background: white;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.location-box:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.location-icon-large {
    position: relative;
    width: 100%;
    height: 15vh;
    margin: -1vh 0px 2vh;
}

.location-icon-large iframe {
    width: 100%;
    height: 100%;
}

.location-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.location-box p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section-clean {
    padding: 80px 0;
    background-color: #ffffff;
}

.stats-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-box h3 {
    font-size: 4rem;
    color: #5E503F;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-box p {
    color: #666;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: #7dd5b8;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-subtitle {
    color: #1a1a1a;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    text-align: left;
    position: relative;
}

.quote-icon {
    width: 40px;
    height: 40px;
    background-color: #5E503F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.testimonial-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-info h4 {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    color: #666;
}

/* Page Header */
.page-header {
    background: #5E503F;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 80px 20px 60px;
    text-align: center;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
}

/* Staff Section */
.staff-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.staff-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f4f1ee;
    color: #5E503F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}

.staff-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #5E503F;
    margin-bottom: 15px;
}

.staff-details li {
    padding-left: 0;
}

.staff-details li:before {
    content: none;
}

.staff-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.staff-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.staff-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #1a1a1a;
    font-weight: 600;
}

.staff-title {
    color: #5E503F;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.staff-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.staff-details a {
    color: #92887C !important;
}

.staff-details li {
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.staff-details i {
    color: #5E503F;
    min-width: 18px; 
}

.staff-details a {
    color: #666;
    text-decoration: none;
}

.staff-details a:hover {
    text-decoration: underline;
}

/* News Section */
.news-section {
    padding: 100px 20px;
    background-color: #f8f8f8;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-8px);
}

.news-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.news-image svg,
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 30px;
}

.news-date {
    color: #5E503F;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card h3 {
    font-size: 1.4rem;
    margin: 15px 0 15px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
}

.news-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.read-more:hover {
    color: #5E503F;
}

/* Services Detail Section */
.services-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.service-item {
    display: flex;
    gap: 30px;
    background: white;
    padding: 40px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.service-item:hover {
    background-color: #fafafa;
}

.service-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    color: #5E503F;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5E503F;
    font-weight: bold;
    font-size: 1.1rem;
}

/* About Content */
.about-content {
    padding: 100px 20px;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-intro p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    margin-bottom: 80px;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 25px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    margin-top: 80px;
    background-color: #f8f8f8;
    padding: 80px 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #5E503F;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #5E503F;
}

textarea.form-input {
    resize: vertical;
    min-height: 150px;
}

/* CTA Section */
.cta-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border 0.3s;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #5E503F;
}

.contact-form button {
    padding: 15px 25px;
    font-size: 1.1rem;
    color: #fff;
    background-color: #5E503F;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #46382e;
}

/* Footer */
.footer {
    background-color: #252525;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-col p {
    color: #C6C0B9;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a, 
.footer-bottom a,
a[href^="mailto:"],
a[href^="tel:"] {
    color: #C6C0B9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover,
.footer-bottom a:hover,
a[href^="mailto:"]:hover,
a[href^="tel:"]:hover {
    color: #5E503F;
}

.footer-bottom {
    border-top: 1px solid #ffffff;
    padding-top: 25px;
    text-align: center;
    color: #C6C0B9;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-brand {
        width: 100%;
    }

    .nav-content {
        width: 100%;
    }
    
    .link-split-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .link-content-box {
        padding: 30px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 30px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

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

    .about-content-box {
        padding-right: 0;
    }

    .about-image {
        background-image: url("img/albia-team.jpg");
        height: 30vh;
    }

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

    .location-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .page-header {
        padding: 60px 20px 50px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .about-section-split,
    .staff-section,
    .news-section,
    .services-section,
    .about-content,
    .location-grid-section {
        padding: 60px 20px;
    }

    .cta-section,
    .stats-section-clean,
    .testimonials-section {
        padding: 60px 20px;
    }

    .about-intro h2,
    .values-section h2,
    .stats-section h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .service-item {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }

    .service-icon {
        margin: 0 auto 10px;
    }

    .stats-grid-clean {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-box h3 {
        font-size: 3rem;
    }

    .icon-list {
        gap: 20px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .icon-circle svg {
        width: 25px;
        height: 25px;
    }

    .icon-list-content h3 {
        font-size: 1.1rem;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .values-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mobile-menu-toggle {
        display: flex;
    }

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

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-label {
        font-size: 0.8rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.8rem;
    }

    .page-header {
        padding: 50px 15px 40px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    .about-section-split,
    .location-grid-section,
    .staff-section,
    .news-section,
    .services-section,
    .about-content {
        padding: 50px 15px;
    }

    .cta-section,
    .stats-section-clean,
    .testimonials-section {
        padding: 50px 15px;
    }

    .about-intro h2,
    .values-section h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .section-label {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .warnings-label {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        text-transform: none;
    }

    .about-intro p,
    .cta-section p {
        font-size: 1rem;
    }

    .about-image {
        height: 25vh;
    }

    .icon-list-item {
        gap: 15px;
    }

    .icon-circle {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .icon-circle svg {
        width: 22px;
        height: 22px;
    }

    .icon-list-content h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .icon-list-content p {
        font-size: 0.9rem;
    }

    .location-grid,
    .news-grid,
    .testimonials-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-box,
    .news-card,
    .testimonial-card,
    .value-card {
        padding: 25px 20px;
    }

    .location-box h3,
    .news-card h3,
    .value-card h3 {
        font-size: 1.2rem;
    }

    .service-item {
        padding: 25px 15px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .stats-grid-clean {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-box h3 {
        font-size: 2.5rem;
    }

    .stat-box p {
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .quote-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .news-image {
        height: 200px;
    }

    .contact-section {
        margin-top: 50px;
        padding: 60px 0;
    }

    .contact-grid {
        padding: 0 15px;
    }

    .contact-item {
        flex-direction: row;
        gap: 12px;
    }

    .form-input {
        padding: 12px;
        font-size: 0.95rem;
    }

    .footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 0.85rem;
    }
}