@charset "utf-8";
/* CSS Document */
/* Global styles */

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

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

header {
  background-color: #B4B5B4;
  color: #fff;
  padding: 20px;
}

nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav li {
  margin-right: 20px;
}

nav a {
  font-weight: bold;
}

.btn {
  display: inline-block;
  background-color: #0077c0;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #00529a;
  color: #fff;
}

/* Features section styles */

.features {
  padding: 50px 100px;
  text-align: center;
}

.features h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
}

.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.col-4 {
  width: calc(33.33% - 20px);
  margin-bottom: 40px;
}

.feature-box {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: translateY(-10px);
background-color: #ddd;
}

.feature-box img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 5px;
}

/* About section styles */

.about {
  background-color: #f2f2f2;
  padding: 100px;
  text-align: center;
}

.about h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
}

.about p {
  font-size: 1.2em;
  margin-bottom: 30px;
}


footer {
  background-color: #B4B5B4;
  color: #fff;
  text-align: center;
  padding: 20px;
}
header img{
width: 200px;
height: auto;
display: block;
margin: 0 auto;
border: 3px solid #fff;
border-radius: 50%;
padding: 10px;
box-shadow: 0px 2px 5px rgba(0,0,0,0.25);
}
.banner{
background-color: #0a192f;
color: white;
padding: 100px 0;
text-align: center;
}
.banner h1{
font-size: 48px;
margin-bottom: 20px;
}
.banner p{
font-size: 24px;
margin-bottom: 20px;
}
.banner .btn{
background-color: white;
border-radius: 25px;
color: #0a192f;
display: inline-block;
font-size: 18px;
padding: 15px 30px;
text-decoration: none;
transition: background-color 0.3s ease;
}
.banner .btn:hover{
background-color: #feca1b;
color: white;
}
.feature-box img{
height: 165px;
}
.contact {
    margin: 50px auto;
    max-width: 55%;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.contact label {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding: 10px;
}

.contact input[type="submit"] {
    background-color: #1c2331;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.contact input[type="submit"]:hover {
    background-color: #242f3e;
}

.specials {
	padding: 100px 0;
	text-align: center;
}

.specials h1 {
	font-size: 36px;
	margin-bottom: 50px;
}

.specials-box {
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	padding: 20px;
	margin-bottom: 30px;
}

.specials-box img {
	width: 100%;
	margin-bottom: 20px;
}

.specials-box h3 {
	font-size: 24px;
	margin-bottom: 10px;
}

.specials-box p {
	font-size: 16px;
	margin-bottom: 20px;
}

.specials-box .price {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}
.highlight {
  box-shadow: 0px 0px 10px #333;
  transition: all 0.3s ease-in-out;
}
.contact-info{
width: 40%;
padding-top: 175px;


}

.contact-container{
display: flex;
justify-content: space-between;
width: 70%;
margin-left: auto;
margin-right: auto;
}

@media only screen and (max-width: 1024px) {
  body {
    font-size: 14px;
  }
  
  header ul {
    flex-direction: column;
  }
  
  .features .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .features .col-4 {
    margin-bottom: 30px;
  }
  
  .about {
    text-align: center;
  }
  
  .about p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 480px) {
  body {
    font-size: 12px;
  }
  
  header ul {
    flex-direction: column;
    align-items: center;
  }
  
  header li {
    margin: 10px 0;
  }
  
  .hero {
    text-align: center;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 14px;
  }
  
  .features .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .features .col-4 {
    margin-bottom: 30px;
    width: 100%;
  }
  
  .feature-box h3 {
    font-size: 18px;
  }
  
  .feature-box p {
    font-size: 12px;
  }
  
  .about {
    text-align: center;
  }
  
  .about p {
    font-size: 12px;
  }
  
  footer p {
    font-size: 12px;
  }
}
