:root {
    /* Kleuren - Licht thema (standaard) */
    --header-height: 80px;
    --bg-primary: #f8f9fa;
    --bg-secondary: #e9ecef;
    --bg-accent: #dee2e6;
    --text-primary: #212529;
    --text-secondary: #495057;
    --accent: #25a5d4;
    --accent-hover: #1e8ab9;
    --card-bg: rgba(255, 255, 255, 0.8);
    --shadow: rgba(0, 0, 0, 0.1);
    --nav-bg: rgba(245, 245, 245, 0.95);
    --border-color: #d0d0d0;
}

.dark-theme {
    /* Kleuren - Donker thema */
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --bg-accent: #2d2d2d;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --accent: #25a5d4;
    --accent-hover: #1e8ab9;
    --card-bg: rgba(45, 51, 67, 0.7);
    --shadow: rgba(0, 0, 0, 0.3);
    --nav-bg: rgba(26, 29, 36, 0.95);
    --border-color: #3a4152;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s, color 0.3s;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    padding-top: var(--header-height); /* belangrijk: compenseert de fixed header */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background-color: var(--nav-bg);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height); /* zó wordt de hoogte voorspelbaar */
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
    /* verwijder padding-top/bottom hier zodat de hoogte klopt */
}

/* Responsive fix voor mobiel menu (header vaak iets groter) */
@media (max-width: 768px) {
    :root {
        --header-height: 120px; /* grotere waarde voor mobiel (pas zonodig aan) */
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent);
}

.cta-button {
    background-color: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--accent-hover);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Desktop: nav naast elkaar */
nav ul {
    display: flex;
    list-style: none;
}

/* Mobiel menu */
@media (max-width: 768px) {
    nav ul {
        display: none; /* standaard verborgen */
        flex-direction: column;
        position: absolute;
        top: var(--header-height); /* direct onder de topbar */
        left: 0;
        width: 100%;
        background-color: var(--nav-bg); /* zelfde donkere achtergrond */
        box-shadow: 0 4px 10px var(--shadow);
        padding: 15px 0;
        z-index: 999;
    }

    nav ul.active {
        display: flex; /* zichtbaar wanneer je toggle drukt */
    }

    .mobile-menu-btn {
        display: block; /* hamburger button tonen */
    }
}

/* Hero Sectie */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1770&q=80') no-repeat center center/cover;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding-top: 0; /* verwijder oude 80px */
}


.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff !important; /* Altijd wit */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff !important; /* Altijd wit */
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--accent);
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: #ffffff !important;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff !important; /* Force wit */
    border: 2px solid #ffffff !important; /* Rand ook wit */
}

.btn-secondary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #ffffff !important;
}

.stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #ffffff !important; /* Altijd wit */
}

.contact-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--accent);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-method:hover {
    color: var(--accent);
}

/* Secties */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.section-title p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Scroll naar boven knop */
.scroll-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 998;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
}

/* Pas de positie van de thema toggle aan */
.theme-toggle {
    bottom: 20px;
    right: 20px;
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 999;
    font-size: 1.2rem;
}

/* Diensten */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    background-color: var(--accent);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Projecten */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.project-card {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.project-info p {
    color: var(--text-secondary);
}

/* Proces */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 30px;
    position: relative;
}

.process-step:not(:last-child):after {
    content: "";
    position: absolute;
    top: 40px;
    right: -10%;
    width: 20%;
    height: 2px;
    background-color: var(--accent);
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--text-secondary);
}

/* Reviews */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
    position: relative;
}

.review-card:before {
    content: "\"";  /* Correct escaped citaat teken */
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.review-text {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.review-author {
    font-weight: bold;
    color: var(--accent);
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}
.contact-form {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-accent);
    color: var(--text-primary);
}
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.submit-btn {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}
.submit-btn:hover {
    background-color: var(--accent-hover);
}
.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-info-card {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px var(--shadow);
}
.contact-info-card h3 {
    margin-bottom: 20px;
    color: var(--accent);
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-detail i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 3px;
}
.contact-detail div {
    flex: 1;
}
.contact-detail h4 {
    margin-bottom: 5px;
}
.contact-detail p {
    color: var(--text-secondary);
}
.business-hours {
    margin-top: 20px;
}
.business-hours h4 {
    margin-bottom: 10px;
    color: var(--accent);
}
.hours-list {
    list-style: none;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    color: var(--text-secondary);
}

/* Footer */
footer {
    background-color: var(--bg-secondary);
    padding: 60px 0 20px;
    border-top: 3px solid var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 40px;
    margin-right: 10px;
}

.footer-info p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-certifications {
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-links h3,
.footer-newsletter h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--accent);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-newsletter h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 5px 0;
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-newsletter p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-accent);
    color: var(--text-primary);
}

.newsletter-form button {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: var(--accent-hover);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-accent);
    color: var(--text-primary);
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.language-selector {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.language-flag {
    width: 30px;
    height: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    border: 2px solid transparent;
}

.language-flag:hover, .language-flag.active {
    opacity: 1;
    border-color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Thema Toggle */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 999;
    font-size: 1.2rem;
}

/* Projecten Filter */
.projects-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--accent);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: white;
}

/* Project Cards */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    background-color: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow);
}

.project-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-gallery-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.view-gallery-btn:hover {
    background: var(--accent-hover);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    color: var(--text-primary);
}

.project-info p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tag {
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Projects CTA */
.projects-cta {
    text-align: center;
    padding: 40px 0;
    background: var(--card-bg);
    border-radius: 12px;
    margin-top: 30px;
}

.projects-cta p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--text-primary);
}

/* Modal/Lightbox */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 1200px;
    max-height: 80vh;
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.modal-header {
    padding: 30px 30px 20px;
}

.modal-header h3 {
    color: var(--text-primary);
    margin: 0;
}

.modal-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-btn {
    background: var(--accent);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: var(--accent-hover);
}

#image-counter {
    color: var(--text-primary);
    font-weight: 600;
}

.modal-body {
    padding: 20px;
    text-align: center;
}

#modal-image {
    max-width: 100%;
    max-height: 60vh;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow);
}

/* Responsive */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Quality Explanation Section */
.quality-explanation {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    margin: 50px 0;
    border-left: 4px solid var(--accent);
}

.quality-explanation h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent);
    font-size: 2rem;
}

.quality-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.quality-level {
    background: var(--bg-primary);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.quality-level h4 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
}

.quality-level p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.quality-level ul {
    list-style: none;
    padding: 0;
}

.quality-level li {
    color: var(--text-primary);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.quality-level li:before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quality-levels {
        grid-template-columns: 1fr;
    }
    
    .quality-explanation {
        padding: 25px;
    }
    
    .quality-level {
        padding: 20px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .process-step:not(:last-child):after {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    nav {
        display: none;
        width: 100%;
    }

    nav.active {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-card {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3:after,
    .footer-newsletter h3:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}