.about-section {
    margin-top: 85px;
    min-height: calc(100vh - 85px);
    padding: clamp(1rem, 4vw, 4rem) clamp(1rem, 3vw, 2rem);
    background: linear-gradient(135deg, #2a1b3d 0%, #44318d 50%, #632c7a 100%);
    width: 100%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid rgba(230, 126, 212, 0.2);
    width: 100%;
}

.about-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.about-header h1 {
    color: #e67ed4;
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 0.8rem;
}

.about-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.about-text {
    color: rgba(255, 255, 255, 0.9);
}

.about-text h2 {
    color: #e67ed4;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin-bottom: 1.2rem;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(230, 126, 212, 0.1);
    text-align: center;
}

.info-item i {
    color: #e67ed4;
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.info-item h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.info-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
    gap: 1rem;
    align-content: start;
}

.stat-item {
    background: rgba(230, 126, 212, 0.1);
    padding: 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(230, 126, 212, 0.2);
    text-align: center;
}

.stat-number {
    color: #e67ed4;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .about-section {
        margin-top: 70px;
        padding: 0.8rem;
    }
    
    .about-container {
        padding: 1.2rem;
    }
    
    .about-header {
        margin-bottom: 1.5rem;
    }
    
    .about-header h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    
    .info-item {
        padding: 0.8rem;
    }
    
    .info-item i {
        font-size: 1.1rem;
    }
    
    .info-item h3 {
        font-size: 0.9rem;
    }
    
    .info-item p {
        font-size: 0.8rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .about-section {
        margin-top: 70px;
        padding: 0.8rem;
    }
    
    .about-container {
        padding: 1rem;
    }
    
    .about-header {
        margin-bottom: 1rem;
    }
    
    .about-header h1 {
        font-size: 1.8rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(6, 1fr);
    }
}