@import url('https://fonts.googleapis.com/css2?family=Roboto:400,700&display=swap');

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

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

header {
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
}

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

.logo img {
  max-width: 150px;
}

.menu li {
  display: inline-block;
  margin-left: 20px;
}

.menu a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #666;
}

.hero {
  text-align: center;
  margin-top: 50px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background-color: #333;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #007bff;
}

.btn:hover {
  background-color: #666;
}

section {
  padding: 80px 0;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.values ul {
  list-style-type: none;
 
  padding: 0;
}

.values li {
margin-bottom: 10px;
}

.values li strong {
font-weight: bold;
}

.contact form {
margin-top: 30px;
}

.contact input,
.contact textarea {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 4px;
}

.contact textarea {
height: 120px;
}

.contact button {
padding: 12px 24px;
font-size: 18px;
font-weight: 700;
text-decoration: none;
color: #fff;
background-color: #007bff;
border: none;
border-radius: 4px;
transition: background-color 0.3s ease;
cursor: pointer;
}

.contact button:hover {
background-color: #0056b3;
}

footer {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}

footer p {
margin-bottom: 10px;
}

.social-media li {
display: inline-block;
margin-right: 10px;
}

.social-media a {
color: #fff;
font-size: 24px;
transition: color 0.3s ease;
}

.social-media a:hover {
color: #007bff;
}
