#mainIntro {
    background-color: #f8f9fc;
    padding: 0 0 40px 0;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.about-image {
    flex: 1.3;
    background: white;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-text {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-text h4 {
    font-size: 24px;
    font-weight: 600;
    color: #1a2a4f;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #007BFF;
    display: inline-block;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
    text-indent: 2em;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-services {
    background: linear-gradient(135deg, #0a40b6, #0eb3ff);
    border-radius: 24px;
    padding: 20px 25px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.about-services:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-services h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
}

.service-items {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.service-tag {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.service-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (min-width: 1400px) {
    .about-container {
        max-width: 1400px;
        gap: 60px;
    }
    
    .about-image {
        flex: 1.4;
        padding: 25px;
    }
    
    .about-text {
        padding: 35px;
    }
    
    .about-text p {
        font-size: 16px;
    }
    
    .about-text h4 {
        font-size: 26px;
    }
}

@media (max-width: 1000px) {
    .about-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .about-image {
        flex: none;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .about-right {
        flex: none;
        width: 100%;
    }
    
    .service-items {
        flex-wrap: wrap;
    }
    
    .service-tag {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 15px;
        gap: 20px;
    }
    
    .about-text {
        padding: 20px;
    }
    
    .about-text h4 {
        font-size: 20px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .about-services {
        padding: 15px 20px;
    }
    
    .about-services h4 {
        font-size: 18px;
    }
    
    .service-tag {
        padding: 6px 14px;
        font-size: 12px;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .about-text {
        padding: 16px;
    }
    
    .about-text h4 {
        font-size: 18px;
    }
    
    .about-text p {
        font-size: 13px;
    }
    
    .service-tag {
        padding: 5px 12px;
        font-size: 11px;
        white-space: nowrap;
    }
}