/* About Section Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,182,193,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #056486;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #056486 0%, #0A7FA3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #056486 0%, #0A7FA3 100%);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* УТП блок */
.about-utp {
    max-width: 900px;
    margin: 0 auto 60px;
    background: linear-gradient(135deg, #056486 0%, #0A7FA3 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(5, 100, 134, 0.3);
    position: relative;
    overflow: hidden;
}

.about-utp::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.utp-content {
    position: relative;
    z-index: 2;
}

.utp-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.utp-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.utp-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

/* Content Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

/* Text Section */
.about-text {
    padding-right: 40px;
}

.about-highlight {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 4px solid #056486;
}

.highlight-icon {
    font-size: 2rem;
    margin-right: 15px;
}

.about-highlight h3 {
    color: #056486;
    font-size: 1.4rem;
    margin: 0;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 40px;
}

/* Features */
.about-features {
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: #056486;
    margin-right: 20px;
    min-width: 60px;
    opacity: 0.7;
}

.feature-content h4 {
    color: #056486;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.feature-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #056486;
    margin-bottom: 10px;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Visual Section */
.about-visual {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover .about-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    text-align: center;
    min-width: 200px;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.floating-card h4 {
    color: #056486;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.floating-card p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, #056486 0%, #0A7FA3 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
    opacity: 1;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #056486;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Анимации */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    animation: countUp 1s ease-out;
}

/* Адаптивность */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-utp {
        padding: 40px 25px;
        margin-bottom: 40px;
    }
    
    .utp-title {
        font-size: 1.5rem;
    }
    
    .utp-text {
        font-size: 1rem;
    }
    
    .utp-icon {
        font-size: 3rem;
    }
    
    .about-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 30px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-number {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 15px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-utp {
        padding: 30px 20px;
    }
    
    .utp-title {
        font-size: 1.3rem;
    }
    
    .utp-text {
        font-size: 0.95rem;
    }
    
    .utp-icon {
        font-size: 2.5rem;
    }
    
    .about-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
}