/* General Styles */
body {
    margin: 0;
    font-family: sans-serif;
    background-color: #f8f9fa; /* Light gray background */
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    color: #fff; /* White for hero */
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

section {
    padding: 60px 0;
}

/* Hero Section */
.hero {
    background-color: #5ee5eb; /* Cyan */
    color: #fff;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.hero .logo {
    width: 150px;
    height: auto;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #ec407a; /* Pink */
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.cta-button:hover {
    background-color: #d81b60; /* Darker Pink */
}

/* About Section */
.about {
    background-color: #fff;
}

.about h2 {
    color: #ec407a; /* Pink */
}

.about .container {
    max-width: 800px;
    text-align: center;
}

/* Approach Section */
.approach {
    background-color: #e0f7fa; /* Light Cyan */
}

.approach h2 {
    color: #00acc1; /* Darker Cyan */
}

.approach .container {
    max-width: 800px;
    text-align: center;
}

/* Services Section */
.services {
    background-color: #fff;
}

.services h2 {
    color: #ec407a; /* Pink */
}

.services .intro-text {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.service-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    color: #00acc1; /* Darker Cyan */
    font-size: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    background-color: #e0f7fa; /* Light Cyan */
}

.contact h2 {
    color: #00acc1; /* Darker Cyan */
}

.contact .container {
    max-width: 600px;
    text-align: center;
}

#contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

#contact-form button {
    display: block;
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: #343a40; /* Dark Gray */
    color: #adb5bd; /* Light Gray Text */
    padding: 30px 0;
    text-align: center;
}

.footer-logo {
    width: 50px;
    height: auto;
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Icon Placeholders */
.icon-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Add background colors or placeholder icons */
}

.about-icon { background-color: #fce4ec; } /* Light Pink */
.approach-icon { background-color: #b2ebf2; } /* Lighter Cyan */
.service-icon { background-color: #b2ebf2; width: 60px; height: 60px; } /* Lighter Cyan */

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}




/* Style for logo within sections */
.section-logo {
    display: block; /* Needed to apply margin auto */
    max-width: 100px; /* Adjust size as needed */
    height: auto;
    margin: 0 auto 2rem auto; /* Center the logo */
}
