* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background: linear-gradient(to right, #0052cc, #0073e6);
  color: #fff;
  padding: 3rem 0;
}

header h1 {
  padding: 40px;
  box-shadow: 2px 2px 10px black;
  border-radius: 10px;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: linear-gradient(to right, #0052cc, #0073e6);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.hero .cta-button {
  transition: 0.5s;
  margin-top: 1rem;
  display: inline-block;
  background: #fff;
  color: #0073e6;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.hero .cta-button:hover {
  transition: 0.5s;
  padding: 1rem 1.75rem;
  font-size : 1.2rem;
 }

.services .svcs-button {
  transition: 0.3s;
  margin-top: 1rem;
  display: inline-block;
  background: #fff;
  background-color: #0073e6;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 2px 2px 10px black;
}

.services .svcs-button:hover {
  transition: 0.5s;
  padding: 1rem 1.75rem;
  font-size: 1.2rem;
 }

.services .home-button {
  transition: 0.3s;
  margin-top: 1rem;
  display: inline-block;
  background: #fff;
  background-color: #0073e6;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 2px 2px 10px black;
}

.services .home-button:hover {
  transition: 0.5s;
  padding: 1rem 1.75rem;
  font-size: 1.2rem;
 }

.services, .about, .contact {
  padding: 3rem 0;
  background: #fff;
}

.services h3, .about h3, .contact h3 {
  margin-bottom: 1rem;
  text-align: center;
  color: #0052cc;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service {
  background: #f0f0f0;
  padding: 1.5rem;
  border-radius: 8px;
  width: 300px;
}

.server {
  transition: 1s;
  background: #f0f0f0;
  padding: 1.5rem;
  border-radius: 8px;
  width: 300px;
}

.server:hover {
  transition: 0.5s;
  box-shadow: 0px 0px 20px #0073e6;
}

.selection {
  text-decoration: underline;
  color: black;
}

.selection:hover {
  transition: 0.3s;
  color: #0073e6;
  box-shadow 0px 0px 10px #0073e6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 1rem auto 0;
}

form input, form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #0052cc;
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-list {
    flex-direction: column;
    align-items: center;
  }
}

.home .svcs-button {
  transition: 0.3s;
  margin-top: 1rem;
  display: inline-block;
  background: #fff;
  background-color: #0073e6;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 2px 2px 10px black;
}

.home .svcs-button:hover {
  transition: 0.5s;
  padding: 1rem 1.75rem;
  font-size: 1.2rem;
 }
