.about-content {
    padding: 100px 0;
    background: var(--gradient-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.about-section {
    margin-bottom: 60px;
    max-width: 90%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-section:hover::before {
    transform: scaleX(1);
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--gold-accent);
}

.section-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 0 0;
    position: relative;
}

.section-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--gold-accent);
    font-weight: 600;
}

.section-content {
    padding: 30px;
    background: rgba(0, 0, 0, 0.1);
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--light-gold);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    padding: 30px 25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 171, 104, 0.1), transparent);
    transition: left 0.5s;
}

.value-item:hover::before {
    left: 100%;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.value-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold-accent);
    font-weight: 600;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-gold);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    gap: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(199, 171, 104, 0.2);
}

.accordion-header:hover {
    border-color: var(--gold-accent);
    box-shadow: 0 5px 20px rgba(199, 171, 104, 0.2);
}

.accordion-header.active {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px 15px 0 0;
}

.accordion-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.accordion-header h3 {
    font-size: 1.4rem;
    color: var(--gold-accent);
    font-weight: 600;
    flex: 1;
}

.accordion-arrow {
    font-size: 1.2rem;
    color: var(--gold-accent);
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 15px 15px;
    margin-top: -20px;
    padding-top: 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 30px 25px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light-gold);
}

@media (max-width: 768px) {
    .about-content {
        padding: 60px 0;
    }
    
    .about-section {
        margin-bottom: 40px;
        max-width: 95%;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(199, 171, 104, 0.2);
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 30px 20px 20px;
        border-radius: 20px 20px 0 0;
    }
    
    .section-header::before {
        height: 3px;
        border-radius: 20px 20px 0 0;
    }
    
    .section-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-content {
        padding: 25px 20px;
    }
    
    .section-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    
    .value-item {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 15px;
    }
    
    .value-item h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .value-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .accordion-header {
        padding: 20px;
        gap: 15px;
        border-radius: 15px;
        margin-bottom: 15px;
    }
    
    .accordion-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .accordion-header h3 {
        font-size: 1.2rem;
    }
    
    .accordion-content {
        border-radius: 0 0 15px 15px;
        margin-top: -15px;
        padding-top: 20px;
    }
    
    .accordion-content p {
        padding: 0 20px 20px;
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 360px) {
    .about-content {
        padding: 40px 0;
    }
    
    .about-section {
        margin-bottom: 30px;
        max-width: 95%;
        border-radius: 15px;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(199, 171, 104, 0.2);
    }
    
    .section-header {
        padding: 20px 15px 15px;
        border-radius: 15px 15px 0 0;
    }
    
    .section-header::before {
        height: 2px;
        border-radius: 15px 15px 0 0;
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .section-content {
        padding: 20px 15px;
    }
    
    .section-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .values-grid {
        gap: 15px;
        margin-top: 15px;
    }
    
    .value-item {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto 12px;
    }
    
    .value-item h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .value-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .accordion-header {
        padding: 15px;
        gap: 12px;
        border-radius: 12px;
        margin-bottom: 12px;
    }
    
    .accordion-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
    }
    
    .accordion-content {
        border-radius: 0 0 12px 12px;
        margin-top: -12px;
        padding-top: 15px;
    }
    
    .accordion-content p {
        padding: 0 15px 15px;
        font-size: 0.9rem;
        line-height: 1.5;
    }
}
