
.about-section {
    padding: 80px 0;
    background: white;
    min-height: 70vh;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.about-text strong {
    color: #000;
    font-weight: bold;
}
.about-text p:nth-of-type(3) {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-text {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 30px 0;
    }
    
    .about-content {
        padding: 0 15px;
    }
    
    .about-text {
        font-size: 15px;
        line-height: 1.6;
    }
}