.about-page-wrapper {
    padding: 120px 0 60px;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.page-header p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.about-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-section {
    background: #fff;
    padding: 40px 35px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #13b629;
    transition: all 0.3s ease;
}

.about-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.about-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    border-bottom: 2px solid #13b629;
    padding-bottom: 10px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.dark-header {
    background: #1b2a41 !important;
    position: relative !important;
    padding: 20px 0 !important;
}

.dark-header .site-logo img {
    filter: brightness(0) invert(1);
}

.dark-header .site-menu-toggle span {
    background: #fff !important;
}

.dark-header.menu-open .site-menu-toggle span {
    background: #000000 !important;
}

@media (max-width: 767px) {
    .about-page-wrapper {
        padding: 100px 0 40px;
    }
    
    .about-content {
        padding: 0 15px;
    }
    
    .page-header {
        padding: 30px 20px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .about-section {
        padding: 30px 25px;
    }
    
    .about-section h2 {
        font-size: 24px;
    }
    
    .about-section p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-page-wrapper {
        padding: 90px 0 30px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 15px;
    }
    
    .about-section {
        padding: 25px 20px;
    }
    
    .about-section h2 {
        font-size: 22px;
    }
    
    .about-section p {
        font-size: 14px;
    }
}