/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2, p {
    margin: 0;
    padding: 10px 0;
}

a {
    color: #FF5A5F;
    text-decoration: none;
}

/* Header Styles */
header {
    background-color: #0046b8; /* Dark Blue */
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 36px;
}

header p {
    font-size: 18px;
}

/* Container */
.container {
    width: 85%;
    margin: 0 auto;
}

/* Button */
button, .about-button {
    background-color: #FF5A5F; /* Red */
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover, .about-button:hover {
    background-color: #D83E3D; /* Darker Red */
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 50px 0;
    background-color: #eef1f8; /* Light Blue */
}

.intro h2 {
    color: #0046b8; /* Dark Blue */
    font-size: 30px;
}

.intro p {
    color: #333;
    font-size: 16px;
}

/* Services Section */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0;
}

.service {
    flex: 1 1 30%;
    background-color: white;
    margin: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service img {
    max-width: 100%;
    border-radius: 8px;
}

.service h2 {
    color: #0046b8; /* Dark Blue */
    margin-top: 15px;
    font-size: 22px;
}

.service p {
    font-size: 16px;
    line-height: 1.6;
}

/* About Us Section */
.about-us {
    text-align: center;
    padding: 50px 0;
    background-color: #eef1f8; /* Light Blue */
}

.about-us h2 {
    font-size: 30px;
    color: #0046b8; /* Dark Blue */
}

.about-content {
    display: none;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    background-color: #0046b8; /* Dark Blue */
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #FF5A5F; /* Red */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services {
        flex-direction: column;
    }

    .service {
        flex: 1 1 100%;
    }
}

/* Add this to your styles.css or style block */
img {
    max-width: 100%; /* Ensure images don’t exceed the container */
    height: auto;    /* Maintain aspect ratio */
}

/* Specific adjustments for services section */
.service img {
    width: 80%;  /* Set the size to be 80% of the container width */
    max-width: 400px; /* Ensure the images don’t get too large */
    height: auto;  /* Maintain the aspect ratio */
    margin: 0 auto; /* Center the image */
    display: block; /* Ensure it's treated as a block for centering */
}