/* General Padding Section */
.section-padding {
    padding: 80px 20px;
}

/* About Section */
.about-section {
    background-color: #fdfdfd;
    color: var(--color-dark) !important;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

/* Optional Consumer Partners Section */
.partners-section {
    background-color: #f5f5f5;
}

.partners-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.partners-logos img {
    width: 150px;
    margin: 10px;
    transition: transform 0.3s ease;
}

.partners-logos img:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.2rem;
    }

    .about-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .partners-logos img {
        width: 120px;
    }
}
