*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#ffffff;
}

.container{
width:700px;
margin:30px auto;
background:#fff;
padding:20px;
border-radius:8px;
box-shadow:0 0 10px #ccc;
}

input,textarea,select{
width:100%;
padding:10px;
margin-top:5px;
margin-bottom:15px;
}

button{
background:#007BFF;
color:#fff;
padding:12px 20px;
border:none;
cursor:pointer;
font-size:16px;
}

button:hover{
background:#0056b3;
}

.container1{
width:90%;
margin:auto;
}

header{
background:#066b55;
padding:10px 0;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
height:90px;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:40px;
}

nav ul li a{
text-decoration:none;
color:white;
font-size:18px;
transition:.3s;
}

nav ul li a:hover{
color:#ffd700;
}

.hero{

height:400px;

background:#25352f;

display:flex;

justify-content:center;

align-items:center;

}

.hero h1{

font-size:60px;

color:white;

text-shadow:3px 3px 0 #ddd;

}

.about{

padding:80px 0;

}

.about h2{

font-size:36px;

margin-bottom:20px;

color:#066b55;

}

.about p{

font-size:18px;

line-height:32px;

margin-bottom:20px;

}

footer{

background:#066b55;

padding:20px;

text-align:center;

color:white;

margin-top:50px;

}

@media(max-width:768px){

header .container{

flex-direction:column;

}

nav ul{

flex-direction:column;

align-items:center;

}

nav ul li{

margin:15px 0;

}

.hero{

height:250px;

}

.hero h1{

font-size:40px;

}

}