body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.about-section {
    background: linear-gradient(to right, #007bff, #2196f3);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-section h1 {
    font-size: 40px;
    line-height: 1.4;
    font-weight: 600;
}



body {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
}


.container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.text-section {
    max-width: 600px;
    padding-left: 50px;
}

.text-section h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.text-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.image-section img {
    max-width: 400px;
}

@media only screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 20px;
    }

    .text-section {
        padding-left: 0;
        text-align: center;
    }

    .image-section img {
        max-width: 100%;
    }
}





body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2f3845; /* Dark background color */
    color: #e0e4e8; /* Light text color */
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}

.text-section {
    max-width: 500px;
    padding-right: 30px;
}

.text-section h1 {
    font-size: 32px;
    color: #e0e4e8;
    margin-bottom: 20px;
}

.text-section p {
    font-size: 18px;
    line-height: 1.5;
    color: #c1c5ca;
}

.image-section img {
    max-width: 500px;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .text-section {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .image-section img {
        max-width: 100%;
    }
}