* {
    font-family: Arial, sans-serif;
    margin: 0px;
    padding: 0;
}

.s1 {
    text-align: center;
    margin-bottom: 40px;
}

.s2 {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    margin-left: 40px;
    margin-right: 40px;
    
}

.s2s1 {
    width: 65%;
}

.s2s2 {
    width: 30%;
    border: 1px solid #ccc;
    margin: 10px;
    padding: 10px;
    justify-content: center;
    align-items: center;
}


.s2s1 h1 {
    font-size: 35px;
    color: #333;
}

.s2s1 p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.desc1 ul {
    list-style-type: disc;
    margin-left: 20px;
}

.form label {
    display: block;
    margin: 10px 0 5px;
}

.form-control {
    width: auto;
    padding: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btn {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}


.btn:hover {
    background-color: #0056b3;
}

.s3 {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 30px;
    background-color: #f0f0f0;
}

.s3s1 {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image1 {
    width: 100%;
    height: 600px;
    object-fit: cover; 
}

.image2 {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
}

.s3s2 {
    width: 55%;
}

.s3s2 p {
    
    color: #555;
    line-height: 1.6;
    
}

.desc1{
    font-weight: bold;
    font-size: 22px;
}
.desc2 {
    font-style: italic;
    font-weight: bold;
}
.s3s2 .desc3{
    font-style: italic;
}
.s3s3{
    width:20%;
    
}



.link {
    color: #007bff;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .s2 {
        flex-direction: column;
        align-items: center;
    }

    .s2s1, .s2s2 {
        width: 100%;
        margin-bottom: 20px;
    }

    .s3 {
        flex-direction: column;
        align-items: center;
    }

    .s3s1, .s3s2 {
        width: 100%;
        text-align: center;
    }

    .image2 {
        width: 100px;
        height: 100px;
    }
}
