body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #EAFBF4, white);
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: transparent;
}

header .logo {
    font-size: 1.5rem;
    font-weight: 700;
}

header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background: linear-gradient(to bottom, #EAFBF4, white);
}

.hero .left {
    max-width: 50%;
}

.hero .left h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
}

.hero .left p {
    font-size: 1.25rem;
    font-weight: 400;
    color: #606060;
    margin: 20px 0;
}

.hero .left .cta {
    background-color: #E6937A;
    color: #FFFFFF;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero .left .cta:hover {
    background-color: #D97C63;
}

.hero .right {
    position: relative;
}

.hero .right img {
    max-width: 100%;
    border-radius: 10px;
}

.about-us {
    display: flex;
    padding: 50px;
    background-color: white;
}

.about-us .left {
    position: relative;
    max-width: 50%;
}

.about-us .left img {
    max-width: 100%;
    border-radius: 10px;
}

.about-us .right {
    max-width: 50%;
    padding-left: 20px;
}

.about-us .right h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
}

.about-us .right p {
    font-size: 1rem;
    font-weight: 400;
    color: #606060;
}

.services {
    padding: 50px;
    background: linear-gradient(to bottom, #EAFBF4, white);
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
}

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

.services .card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.services .card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.services .card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
}

.services .card p {
    font-size: 1rem;
    font-weight: 400;
    color: #606060;
}

footer {
    background-color: #00574A;
    color: #FFFFFF;
    padding: 20px;
    text-align: center;
}

footer .social-media {
    margin-bottom: 20px;
}

footer .social-media a {
    margin: 0 10px;
    color: #FFFFFF;
    text-decoration: none;
}

footer .links {
    margin-bottom: 20px;
}

footer .links a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    margin: 5px 0;
}

footer .contact {
    margin-bottom: 20px;
}

footer .contact a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    margin: 5px 0;
}

footer .copyright {
    font-size: 0.875rem;
} 