:root {
    --primary: #2d3e50;
    --accent: #00bfae;
    --bg: #f9f9f9;
    --white: #fff;
    --gray: #eee;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: var(--bg);
    color: #222;
    padding-top: 110px; /* Adjust for fixed menu height */
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(120deg, var(--primary) 80%, var(--accent) 100%);
    color: var(--white);
    padding-bottom: 0.5rem;
    box-shadow: var(--shadow);
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

header nav {
    float: right;
    margin-top: 1.2rem;
}

header nav a {
    color: var(--white);
    margin-left: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

header nav a:hover {
    color: var(--accent);
}

.hero {
    text-align: center;
    margin: 3rem 0 0 0;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-btn {
    background: var(--accent);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: background 0.2s;
}

.cta-btn:hover {
    background: #009e8e;
}

.section {
    padding: 4rem 0 3rem 0;
}

.alt-bg {
    background: var(--gray);
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--primary);
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.about-list li {
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem 1.2rem;
    text-align: center;
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.team-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem 1rem;
    text-align: center;
    width: 200px;
}

.team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--accent);
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem 1.2rem;
    max-width: 350px;
    font-style: italic;
}

.testimonial span {
    display: block;
    margin-top: 1rem;
    color: var(--accent);
    font-weight: bold;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: var(--radius);
    font-size: 1rem;
    resize: none;
}

.contact-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: var(--accent);
}

.email-link {
    display: inline-block;
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: bold;
    background: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(0,191,174,0.10);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    margin-top: 0.5rem;
}

.email-link:hover {
    background: var(--accent);
    color: var(--white);
}

footer {
    background: var(--gray);
    text-align: center;
    padding: 1.5rem 0;
    color: #666;
    font-size: 1rem;
    margin-top: 2rem;
}

@media (max-width: 700px) {
    .about-list, .team-grid, .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }
    header nav {
        float: none;
        text-align: center;
        margin-top: 1rem;
    }
    .container {
        padding: 0 0.5rem;
    }
}