/* ABOUT SECTION */
.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fffaf5, #fef4ea);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column - Content */
.about-header {
    margin-bottom: 1.5rem;
}

.about-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
    color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.about-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-header h2 span {
    color: #e67e22;
}

.about-divider {
    width: 60px;
    height: 3px;
    background: #e67e22;
    border-radius: 3px;
}

.about-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #7f8c6d;
    margin-bottom: 2rem;
}

/* Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.8rem;
    min-width: 45px;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 0.2rem;
}

.feature-text p {
    font-size: 0.85rem;
    color: #7f8c6d;
    line-height: 1.5;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #f0e4d4;
    border-bottom: 1px solid #f0e4d4;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #e67e22;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.7rem;
    color: #a08c74;
    letter-spacing: 0.5px;
}

/* Buttons */
.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-about-primary {
    background: #e67e22;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-about-primary:hover {
    background: #cf711f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.2);
}

.btn-about-secondary {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #5a4a3a;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-about-secondary:hover {
    border-color: #e67e22;
    color: #e67e22;
    transform: translateY(-2px);
}

/* Right Column - Media */
.about-media {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Mission Card */
.about-mission {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0e4d4;
}

.mission-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-mission h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 0.5rem;
}

.about-mission p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #7f8c6d;
}

/* Values */
.about-values {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    background: white;
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid #f0e4d4;
}

.value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2c3e2f;
}

.value span:first-child {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        gap: 2.5rem;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-header h2 {
        font-size: 1.8rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-buttons {
        flex-direction: column;
    }
    
    .btn-about-primary,
    .btn-about-secondary {
        text-align: center;
    }
    
    .about-values {
        flex-wrap: wrap;
    }
}