.about-page-section {
    min-height: 60vh;
    padding: 80px 0;
    background: #f8f9fa;
}

.page-header {
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color, #dc3545);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #dc3545) 0%, var(--secondary-color, #c82333) 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image-wrapper.about-image-right {
    float: right;
    width: 45%;
    min-width: 700px;
    min-height: 450px;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
}

.about-page-image {
    width: 100%;
    height: auto;
    min-height: 450px;
    object-fit: cover;
    display: block;
}

.about-content-wrapper {
    overflow: visible;
}

.about-content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-content-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #495057;
    text-align: justify;
}

.about-content-text p {
    margin-bottom: 1.5rem;
}

.about-content-text h1,
.about-content-text h2,
.about-content-text h3,
.about-content-text h4,
.about-content-text h5,
.about-content-text h6 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-content-text ul,
.about-content-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.about-content-text li {
    margin-bottom: 0.5rem;
}

.about-content-text a {
    color: var(--primary-color, #dc3545);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-content-text a:hover {
    color: var(--secondary-color, #c82333);
    text-decoration: underline;
}

.about-content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content-text blockquote {
    border-left: 4px solid var(--primary-color, #dc3545);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6c757d;
}

@media (max-width: 768px) {
    .about-page-section {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .about-content-title {
        font-size: 1.8rem;
    }
    
    .about-content-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .about-image-wrapper.about-image-right {
        float: none;
        width: 100%;
        min-width: auto;
        min-height: auto;
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 2rem;
    }
    
    .about-page-image {
        min-height: auto;
    }
}

