.about-section {
    background: #1a1a1a;
    color: var(--color-fg-light);
    padding: 1.5rem 0;
    border-top: none;
    border-bottom: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, max-content));
    justify-content: flex-start;
    gap: 3rem;
    overflow: hidden;
}

@media (max-width: 768px) {
    .about-content h3 {
        font-size: 0.9rem;
    }

    .about-content li, .about-content span, .about-content p {
        font-size: 0.75rem;
    }

    .about-brand .about-logo {
        height: 30px;
    }
}

.about-brand .about-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.about-brand p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    max-width: 220px;
}

.about-links h3, .about-services h3, .about-partners h3, .about-contact h3, .about-social h3 {
    margin-bottom: var(--spacing-md);
    color: var(--color-brand-yellow);
}

.about-links p, .about-links li, .about-services p, .about-services li, .about-partners p, .about-partners li, .about-contact p, .about-contact li, .about-social p, .about-social li {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

.about-links a, .about-services a, .about-partners a, .about-contact a, .about-social a {
    transition: color var(--transition-fast);
}

.about-links a:hover, .about-services a:hover, .about-partners a:hover, .about-contact a:hover, .about-social a:hover {
    color: var(--color-brand-yellow);
}

.about-newsletter h3 {
    margin-bottom: var(--spacing-md);
    color: var(--color-brand-yellow);
}

.about-newsletter p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.newsletter-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.newsletter-image {
    flex: 0 0 180px;
    max-width: 180px;
    overflow: hidden;
}

.newsletter-image img {
    width: 180px;
    height: 180px;
    display: block;
    object-fit: contain;
}

.newsletter-content {
    flex: 1;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-field {
    position: relative;
    width: 320px;
}

.newsletter-field input {
    padding: 12px 16px;
    border: none;
    background: #fff;
    color: #000;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    width: 100%;
}

.newsletter-field input:focus {
    outline: none;
}

.newsletter-field input.error {
    outline: 2px solid #e53935;
}

.newsletter-ico {
    display: none;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.newsletter-ico.show {
    display: flex;
}

.newsletter-ico.err {
    background: #e53935;
    cursor: help;
}

.newsletter-tip {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 4px;
    padding: 6px 10px;
    background: #333;
    color: #fff;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
}

.newsletter-tip.show {
    display: block;
}

.newsletter-form button {
    padding: 12px 16px;
    border: none;
    background: var(--color-brand-yellow);
    color: var(--color-bg-dark);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
    width: 320px;
}

@media (max-width: 1024px) {
    .about-section {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .newsletter-wrapper {
        flex-direction: column;
    }

    .newsletter-image {
        flex: 0 0 auto;
    }
}
