body{
margin:0;
font-family:"Hiragino Kaku Gothic Pro","Yu Gothic",sans-serif;
background:#f4f7f6;
color:#333;
}

header{
background:#2d6a6a;
color:white;
padding:20px 0;
}

.container{
width:85%;
margin:auto;
}

.logo{
font-size:28px;
font-weight:bold;
letter-spacing:2px;
}

nav{
margin-top:10px;
}

nav a{
color:white;
text-decoration:none;
margin-right:25px;
font-size:16px;
}

nav a:hover{
color:#ffd166;
}

.hero{
height:500px;
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero h1{
font-size:48px;
}

.section{
padding:70px 0;
}

.section h2{
text-align:center;
margin-bottom:40px;
color:#2d6a6a;
}

.cards{
display:flex;
flex-wrap:wrap;
gap:30px;
}

.card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.1);
flex:1;
min-width:250px;
}

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

.image-grid img{
width:100%;
border-radius:10px;
}

.testimonial{
background:white;
padding:30px;
margin-bottom:20px;
border-left:5px solid #2d6a6a;
}

form input, form textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:5px;
}

button{
background:#2d6a6a;
color:white;
padding:12px 20px;
border:none;
border-radius:5px;
cursor:pointer;
}

button:hover{
background:#1a4444;
}

footer{
background:#2d6a6a;
color:white;
text-align:center;
padding:30px;
margin-top:40px;
}
img{
width:100%;
height:auto;
display:block;
}