/* Override site container for full width */
.page-template-about .site {
    max-width: 100%;
    padding: 0;
 }
 
 /* Hero Section */
 .about-hero {
    background-color: #fff;
    padding: 100px 0 100px;
    position: relative;
    z-index: 1;
 }
 
 .about-hero-content {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: center;
 }
 
 .about-hero-text {
    flex: 1;
 }
 
 .about-hero-text h1 {
    color: var(--color-heading);
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    line-height: 2.5rem;
 }
 
 .about-hero-text p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
 }
 
 .about-hero-text .intro-text {
    font-size: 1.2rem;
    color: var(--color-heading);
 }
 
 .about-hero-image {
    flex: 1;
 }
 
 .about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
 }
 
 /* Features section */
 .features-section {
    position: relative;
    margin-top: -80px;
    padding: 0 20px;
    z-index: 2;
 }
 
 .features-holder {
    max-width: 100%;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
 }
 
 .features-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 40px;
    position: relative;
 }
 
 .feature {
    flex: 1;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
 }
 
 .feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-medium-blue);
}
 
 .feature p {
    font-size: 1rem;
    color: var(--color-heading);
    margin: 0;
 }
 
 /* Store Section */
 .about-store {
    background-color: #f0f0f0;
    padding: 60px 20px;
 }
 
 .store-grid {
    max-width: var(--content-max-width);
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
 }
 
 .store-images {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
 }
 
 .store-image {
    flex: 1;
 }
 
 .store-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
 }
 
 .store-content {
    text-align: center;
 }
 
 .store-content h2 {
    color: var(--color-heading);
    font-size: 2rem;
    margin: 0 0 20px 0;
 }
 
 .button {
    display: inline-block;
    background: var(--color-medium-blue);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
 }
 
 .button:hover {
    background: var(--color-dark-blue);
 }
 
 /* Page Content */
 .page-content {
    background-color: #f0f0f0;
 }
 
 /* Responsive */
 @media (max-width: 768px) {
    .about-hero-content {
        flex-direction: column;
    }
 
    .about-hero-text h1 {
        font-size: 2rem;
    }
    
    .about-hero {
        padding: 40px 0 80px;
    }
 
    .features-section {
        margin-top: -40px;
    }
 
    .features-container {
        flex-direction: column;
        padding: 20px;
    }
 
    .store-images {
        flex-direction: column;
    }
 
    .store-grid {
        padding: 20px;
    }
 
    .store-content h2 {
        font-size: 1.5rem;
    }
 }