:root {
    --primary-color: #2c7a7b; /* Teal */
    --secondary-color: #e6fffa; /* Light Mint */
    --text-color: #2d3748;
    --bg-color: #ffffff;
    --white: #ffffff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header { background: var(--white); box-shadow: 0 2px 4px rgba(0,0,0,0.1); padding: 1rem 2rem; }
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.logo img {
    height: 50px;
    width: auto;
}
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--text-color); font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary-color); }

main { flex: 1; display: flex; flex-direction: column; width: 100%; padding: 0; }

/* Hero Section */
.hero {
    text-align: center;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.7)), url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    width: 100%;
}
h1 { margin-bottom: 1rem; color: var(--primary-color); font-size: 2.5rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.cta-button:hover { background-color: #236c6d; }

/* Services Section */
.services { padding: 4rem 2rem; background-color: var(--white); text-align: center; }
.services h2 { color: var(--primary-color); margin-bottom: 2rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden; /* Keeps the image within the card's rounded corners */
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Ensures image covers the space without distortion */
}
.card-content { padding: 1.5rem; }
.card h3 { margin-bottom: 0.5rem; color: var(--primary-color); }

/* Team Section */
.team { padding: 4rem 2rem; background-color: var(--secondary-color); text-align: center; }
.team h2 { color: var(--primary-color); margin-bottom: 2rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-5px); }
.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background-color: var(--primary-color); /* Dark Teal Background */
    color: var(--white);
    text-align: center;
}
.contact h2 {
    color: var(--white);
    margin-bottom: 1rem;
}
.contact p {
    color: var(--secondary-color);
    margin-bottom: 3rem;
}
address {
    font-style: normal;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
}
.contact-item a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}
.contact-item a:hover {
    border-color: var(--white);
}
.btn-outline {
    margin-top: 1rem;
    display: inline-block;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

footer { text-align: center; padding: 2rem 1rem; background: var(--white); color: #666; font-size: 0.9rem; }

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--primary-color);
    transition: transform 0.2s;
}

.social-links a:hover {
    transform: scale(1.1);
    color: #236c6d;
}
