/* General Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Headings */
h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

/* Body Text */
p {
    font-size: 16px;
    line-height: 1.8;
}

/* Buttons */
button {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    line-height: 1.5;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}

/* Image Section */
.image-section {
    background-size: cover;
    background-position: center;
    height: 449px;
    width: 100%;
}

@media (max-width: 768px) {
    .image-section {
        height: 300px;
    }
}

/* About Us Section */
.about-us-section .col-md-10 {
    background-color: white;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: -150px;
    font-family: 'Poppins', sans-serif;
}

.about-us-section h2 {
    color: black;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.about-us-section p {
    color: #000000;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}
