.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 16px 48px;
}

.about-page-crumb {
    margin: 0 0 20px;
    padding: 0;
    display: block;
}

.about-breadcrumb,
.about-page-crumb .cd-breadcrumb {
    margin: 0;
    padding: 0;
    justify-content: flex-start !important;
    text-align: left;
}

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.about-hero:not(:has(.about-hero-media)) {
    grid-template-columns: 1fr;
}

.about-hero-media {
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f6;
    aspect-ratio: 1;
    max-height: 520px;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero-title {
    margin: 0 0 24px;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    line-height: 1.15;
    color: #232323;
}

.about-rich-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-rich-text p,
.about-rich-text li {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #626b77;
}

.about-rich-text ul,
.about-rich-text ol {
    margin: 0;
    padding-left: 20px;
}

.about-stats-row {
    margin-bottom: 48px;
}

.about-section-title {
    margin: 0 0 20px;
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 600;
    color: #232323;
}

.about-mission {
    margin-bottom: 48px;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-mission-card {
    background: #f5f5f6;
    border-radius: 10px;
    padding: 22px 20px;
}

.about-mission-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #232323;
}

.about-mission-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #626b77;
}

.about-how-section {
    margin-bottom: 48px;
}

.about-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.about-cta-card {
    min-height: 220px;
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.about-cta-recycle {
    background: #e8e8e8;
    color: #232323;
}

.about-cta-shop {
    background: #1e3b31;
    color: #ffffff;
}

.about-cta-card h2 {
    margin: 0 0 12px;
    max-width: 90%;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 600;
    line-height: 1.15;
}

.about-cta-card p {
    margin: 0 0 20px;
    max-width: 92%;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.92;
}

.about-cta-shop p {
    color: rgba(255, 255, 255, 0.88);
}

.about-cta-recycle p {
    color: #626b77;
}

.about-cta-btn {
    margin-top: auto;
    min-width: 200px;
    height: 42px;
    border-radius: 6px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.about-cta-btn::before {
    display: none !important;
    content: none !important;
}

.about-cta-btn-accent {
    background: #ff6105 !important;
    color: #ffffff !important;
    border: none;
}

.about-cta-btn-accent:hover,
.about-cta-btn-accent:focus {
    background: #e85600 !important;
    color: #ffffff !important;
    text-decoration: none;
}

.about-cta-btn-light {
    background: #ffffff !important;
    color: #232323 !important;
    border: 1px solid #d8d8d8;
}

.about-cta-btn-light:hover,
.about-cta-btn-light:focus {
    background: #f5f5f6 !important;
    color: #232323 !important;
    text-decoration: none;
}

.about-contact-row {
    margin-top: 8px;
}

/* Generic CMS content styling */
.cms-content {
    max-width: 820px;
    margin: 0 auto;
}

.cms-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 0 0 24px;
}

.cms-content p {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.6;
    color: #626b77;
}

.cms-content h2,
.cms-content h3 {
    margin: 32px 0 12px;
    color: #232323;
    font-weight: 600;
}

@media (max-width: 991px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-hero-media {
        max-height: 420px;
        aspect-ratio: 1.2;
    }

    .about-mission-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .about-page {
        padding-bottom: 32px;
    }

    .about-hero-title {
        margin-bottom: 16px;
    }

    .about-rich-text p,
    .about-rich-text li {
        font-size: 16px;
    }

    .about-cta-card {
        min-height: 200px;
        padding: 22px 18px;
    }
}
