
:root {
    --primary:#0f3b2e;
    --accent:#2bb7a8;
    --dark:#0a2a21;
    --light:#eef2f1;
}

*{margin:0;padding:0;box-sizing:border-box;}

body{
    font-family:'Segoe UI',Arial,sans-serif;
    line-height:1.75;
    color:#2a2a2a;
}

header{
    background:white;
    padding:18px 6%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

header img{height:55px;}

nav a{
    margin-left:22px;
    text-decoration:none;
    color:var(--primary);
    font-weight:500;
}

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

.hero{
    height:504px;
    padding:0 6%;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
    color:white;
}

.hero-content{max-width:900px;}

.hero h1{
    font-size:42px;
    margin-bottom:18px;
    line-height:1.25;
}

.section{padding:60px 6%;}
.section-light{background:var(--light);}

h2{margin-bottom:18px;color:var(--primary);}

.btn{
    display:inline-block;
    padding:12px 26px;
    background:var(--accent);
    color:white;
    text-decoration:none;
    font-weight:600;
    border-radius:4px;
}

footer{
    background:var(--dark);
    color:white;
    padding:40px 6%;
    margin-top:60px;
    font-size:14px;
}

/* Contact Form Styling */
.form-wrapper{
    max-width:650px;
    background:white;
    padding:40px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    border-radius:6px;
}

form input, form textarea{
    width:100%;
    padding:12px;
    margin-bottom:18px;
    border:1px solid #ccc;
    border-radius:4px;
    font-size:14px;
}

form input:focus, form textarea:focus{
    border-color:var(--accent);
    outline:none;
}

form textarea{
    resize:vertical;
    min-height:120px;
}
