/* Layout */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 50px;
}

.text-content {
    flex: 1;
    max-width: 500px;
}

.text-content h1 {
    font-size: 4rem;
    color:  #3D5AFE;
    font-family: "Lexend", sans-serif;
    font-weight: 700;
}

.text-content p {
    font-size: 1.7rem;
    color: #333;
    line-height: 1.6;
    margin-top: -30px;
    font-family: "Lexend", sans-serif;
}





/* Responsive Styles */
@media only screen and (max-width: 768px) {
    .about-container {
        padding: 30px 15px; 
    }

    .text-content h1 {
        font-size: 2.5rem; 
    }

    .text-content p {
        font-size: 1rem; 
        margin-top: 5px;
    }
}

@media only screen and (max-width: 480px) {
    .about-container {
        padding: 20px 10px;
    }

    .text-content h1 {
        font-size: 2rem;
    }

    .text-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}