.about-main-section {
    background: white;
    padding: 120px 0;
}

.about-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-main-text {
    padding: 40px;
}

.about-main-title {
    font-family: font_twenty_one;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.1;
}

.about-main-subtitle {
    font-family: Manarope;
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.5;
}

.about-main-description {
    font-family: Manarope;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 40px;
}

.about-main-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-main-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 30px;
    font-family: Manarope;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    border-radius: 50px;
}

.about-main-btn--primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.about-main-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.about-main-btn--secondary {
    background: #1e293b;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.3);
}

.about-main-btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4);
    background: #334155;
}

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

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

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

.about-stats-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 80px 0;
    color: white;
}

.about-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.about-stats-title {
    font-family: font_twenty_one;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.about-stats-subtitle {
    font-family: Manarope;
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 50px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.about-stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.about-stat-icon i {
    font-size: 32px;
    color: #1f2937;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fbbf24;
}

.about-stat-text {
    font-size: 1.1rem;
    color: #e2e8f0;
    font-weight: 500;
}

@media (max-width: 1439px) {
    .about-main-content {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-stat-item {
        padding: 30px 15px;
    }
    
    .about-stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-stat-icon i {
        font-size: 24px;
    }
    
    .about-stat-number {
        font-size: 2rem;
    }
    
    .about-stat-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
}

.about-why-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 120px 0;
    color: white;
    position: relative;
}

.about-why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-why-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-why-title {
    font-family: font_twenty_one;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.about-why-subtitle {
    font-family: Manarope;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 60px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.about-why-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.about-why-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #fbbf24;
}

.why-item-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.why-item-icon i {
    font-size: 32px;
    color: #1f2937;
}

.why-item-title {
    font-family: font_twenty_one;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.why-item-text {
    font-family: Manarope;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.about-info-section {
    background: #f8fafc;
    padding: 120px 0;
}

.about-info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-info-text {
    padding: 40px;
}

.about-info-title {
    font-family: font_twenty_one;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.about-info-content-text {
    font-family: Manarope;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
}

.about-info-content-text p {
    margin-bottom: 20px;
}

.about-info-content-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-info-content-text li {
    margin-bottom: 10px;
    color: #64748b;
}

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

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

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

.about-contact-info-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 120px 0;
    color: white;
    position: relative;
}

.about-contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-contact-info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-contact-info-title {
    font-family: font_twenty_one;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.about-contact-info-subtitle {
    font-family: Manarope;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 60px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.about-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #fbbf24;
}

.contact-info-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.contact-info-card-icon i {
    font-size: 28px;
    color: #1f2937;
}

.contact-info-card-title {
    font-family: font_twenty_one;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.contact-info-card-text {
    font-family: Manarope;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

.contact-info-card-time {
    font-family: Manarope;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.about-callback-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 120px 0;
    color: white;
    position: relative;
}

.about-callback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-callback-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-callback-title {
    font-family: font_twenty_one;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.about-callback-subtitle {
    font-family: Manarope;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.about-callback-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.about-callback-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: Manarope;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fbbf24;
    background: rgba(255, 255, 255, 0.15);
}

.about-callback-submit-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: Manarope;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.about-callback-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.about-hero {
    background: #f8fafc;
    color: #1e293b;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-hero-logo {
    margin-bottom: 20px;
}

.about-hero-logo img {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.about-hero-logo img:hover {
    transform: scale(1.05);
}

.about-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #1e293b;
    animation: fadeInUp 0.8s ease-out;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
    color: #64748b;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.about-stat:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.about-stat i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 10px;
    display: block;
}

.about-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.about-stat-text {
    font-size: 0.9rem;
    color: #64748b;
}

.about-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.about-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-hero-image img:hover {
    transform: scale(1.02);
}

.about-slider-section {
    padding: 80px 0;
    background: white;
}

.about-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.about-slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    text-align: center;
}

.about-slider-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 50px;
    text-align: center;
}

.about-swiper {
    margin-top: 40px;
}

.about-swiper .swiper-slide {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-swiper .swiper-slide:hover {
    transform: translateY(-5px);
}

.about-swiper .swiper-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    text-align: left;
}

.slide-caption h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.slide-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.about-additional {
    padding: 80px 0;
    background: #f8fafc;
}

.about-additional-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-additional-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-additional-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.about-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.1rem;
    color: #475569;
}

.about-benefits li:last-child {
    border-bottom: none;
}

.about-benefits i {
    color: #3b82f6;
    font-size: 1.2rem;
    min-width: 20px;
}

.about-additional-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-contact-section {
    padding: 80px 0;
    background: white;
}

.team-contact-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: start;
}

.team-section {
    padding-right: 40px;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    text-align: center;
}

.team-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 50px;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-member {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}

.member-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.member-info {
    flex: 1;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.member-position {
    font-size: 1rem;
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 10px;
}

.member-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.member-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cert-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.contact-section {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    text-align: center;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 3px;
}

.contact-details small {
    font-size: 0.85rem;
    color: #6b7280;
}

.contact-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.contact-form-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.contact-submit-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-submit-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .team-contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .team-section {
        padding-right: 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .team-title,
    .contact-title {
        font-size: 2rem;
    }
    
    .team-subtitle,
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .member-avatar {
        align-self: center;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
    
    .callback-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .callback-content {
        padding: 30px 20px;
    }
    
    .callback-title {
        font-size: 2rem;
    }
    
    .callback-subtitle {
        font-size: 1rem;
    }
    
    .callback-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .time-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        align-self: center;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-slider-title {
        font-size: 2rem;
    }
    
    .about-additional-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-additional-text h2 {
        font-size: 1.8rem;
    }
    
    .about-benefits li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .about-stat {
        padding: 15px;
    }
    
    .about-stat-number {
        font-size: 1.5rem;
    }
    
    .about-slider-section {
        padding: 60px 0;
    }
    
    .about-slider-title {
        font-size: 1.8rem;
    }
    
    .about-additional {
        padding: 60px 0;
    }
}

.about-swiper .swiper-pagination-bullet {
    background: #3b82f6;
    opacity: 0.5;
}

.about-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #1e40af;
}

.about-swiper .swiper-button-next,
.about-swiper .swiper-button-prev {
    color: #3b82f6;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-swiper .swiper-button-next:hover,
.about-swiper .swiper-button-prev:hover {
    background: #3b82f6;
    color: white;
    transform: scale(1.1);
} 

.callback-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.callback-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.callback-content {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.callback-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    text-align: center;
}

.callback-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
    text-align: center;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.callback-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.callback-time {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.callback-time label {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.time-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.time-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-option:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.time-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #3b82f6;
}

.time-option span {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

.callback-submit-btn {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.callback-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.callback-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-why-section,
    .about-contact-info-section,
    .about-callback-section {
        padding: 80px 0;
    }
    
    .about-why-title,
    .about-contact-info-title,
    .about-callback-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .about-why-subtitle,
    .about-contact-info-subtitle,
    .about-callback-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .about-why-item,
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .about-callback-form {
        padding: 30px 20px;
    }
    
    .about-callback-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-why-title,
    .about-contact-info-title,
    .about-callback-title {
        font-size: 1.8rem;
    }
    
    .about-why-subtitle,
    .about-contact-info-subtitle,
    .about-callback-subtitle {
        font-size: 1rem;
    }
    
    .about-why-item,
    .contact-info-card {
        padding: 25px 15px;
    }
    
    .about-callback-form {
        padding: 25px 15px;
    }
    
    .why-item-icon,
    .contact-info-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-item-icon i,
    .contact-info-card-icon i {
        font-size: 24px;
    }
}

.callback__modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.callback__modal-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

.callback__modal-header {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 30px 40px 20px;
    text-align: center;
    position: relative;
}

.callback__modal-title {
    font-family: font_twenty_one;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.callback__modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.callback__modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.callback__modal-body {
    padding: 40px;
    text-align: center;
}

.callback__modal-icon {
    margin-bottom: 20px;
}

.callback__modal-icon i {
    font-size: 3rem;
    color: #ef4444;
    animation: pulse 2s infinite;
}

.callback__modal-text {
    font-family: Manarope;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 30px;
}

.callback__modal-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.callback__modal-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 25px;
    font-family: Manarope;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    color: inherit;
}

.callback__modal-phone {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.callback__modal-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.callback__modal-online {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.callback__modal-online:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.callback__modal-option i {
    font-size: 1.2rem;
}

.callback__modal-option span {
    font-weight: 600;
}

.callback__modal-option small {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 2px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .callback__modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .callback__modal-header {
        padding: 25px 30px 15px;
    }
    
    .callback__modal-title {
        font-size: 1.3rem;
    }
    
    .callback__modal-body {
        padding: 30px 25px;
    }
    
    .callback__modal-text {
        font-size: 1rem;
    }
    
    .callback__modal-option {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .callback__modal-content {
        width: 98%;
        margin: 10px;
    }
    
    .callback__modal-header {
        padding: 20px 25px 15px;
    }
    
    .callback__modal-title {
        font-size: 1.2rem;
    }
    
    .callback__modal-body {
        padding: 25px 20px;
    }
    
    .callback__modal-icon i {
        font-size: 2.5rem;
    }
    
    .callback__modal-text {
        font-size: 0.95rem;
    }
    
    .callback__modal-option {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
}
