.content-area {
    width: 100%;
    padding: 30px;
}

.about-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e6ef;
}

.about-header h1 {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-size: 1rem;
    color: #7f8c8d;
}

.about-section {
    width: 70%;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.about-section > h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-text {
    text-align: left;
    width: 70vw;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-indent: 2em;
}

.about-carousel {
    width: 100%;
    max-width: 600px;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f9fa;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.carousel-track img {
    width: 100%;
    flex-shrink: 0;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: #3498db;
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 1.5rem;
    }
    
    .about-subtitle {
        font-size: 0.9rem;
    }
    
    .about-section {
        padding: 1.5rem;
    }
    
    .about-section > h2 {
        font-size: 1.3rem;
    }
    
    .about-text h3 {
        font-size: 1.1rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-indent: 2em;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        width: 100%;
        padding: 1rem;
    }
    
    .about-text {
        width: 100%;
    }
    
    .about-header h1 {
        font-size: 1.3rem;
    }
    
    .about-section > h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .about-text h3 {
        font-size: 1rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
        text-indent: 2em;
    }
    
    .carousel-indicators {
        gap: 6px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}