.about-section {
    padding: 4rem 1rem;
    background-color: #f7f7f7;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 55%;
}

.about-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.highlight-red {
    color: #dc0000;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.about-image {
    flex: 1 1 40%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-text h1 {
        font-size: 2rem;
        text-align: center;
    }

    .about-text, .about-image {
        flex: 1 1 100%;
    }
}




.trust-section {
    background-color: #fff;
    padding: 4rem 1rem;
    text-align: center;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.highlight-red {
    color: #dc0000;
}

.trust-subtext {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #444;
}

.certificates {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.certificate {
    flex: 1 1 250px;
    max-width: 300px;
}

.certificate img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .trust-section h2 {
        font-size: 1.8rem;
    }

    .certificates {
        flex-direction: column;
        align-items: center;
    }

    .certificate {
        max-width: 90%;
    }
}



.contact-cta {
    background-color: #7a7a7a;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.highlight-red {
    color: #dc0000;
}

.cta-button {
    font-family: 'Hammersmith One', sans-serif;
    display: inline-block;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #444;
}

@media (max-width: 768px) {
    .contact-cta h2 {
        font-size: 2rem;
    }
}