body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #121212;
  color: #ffffff;
  line-height: 1.6;
}

header {
  background-color: #1e1e1e;
  padding: 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

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

nav a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #00bcd4;
}

.hero {
  background-color: #1e1e1e;
  padding: 100px 20px 50px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
}

section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #00bcd4;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service h3 {
  color: #00bcd4;
}

.stats {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat h3 {
  color: #00bcd4;
  font-size: 2rem;
}

.portfolio-grid,
.team-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project,
.member,
.testimonial {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project h3,
.member h3 {
  color: #00bcd4;
}

.testimonial {
  font-style: italic;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #00bcd4;
}

.contact-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

#contact-form {
  flex: 1;
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
}

input,
textarea {
  width: 100%;
  padding: 0.5rem;
  background-color: #2e2e2e;
  border: 1px solid #555;
  border-radius: 4px;
  color: #ffffff;
}

textarea {
  height: 100px;
  resize: vertical;
}

button {
  background-color: #00bcd4;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0097a7;
}

#newsletter {
  background-color: #1e1e1e;
  text-align: center;
  padding: 2rem;
}

#newsletter-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

#newsletter-form input {
  flex: 1;
  max-width: 300px;
}

footer {
  background-color: #1e1e1e;
  text-align: center;
  padding: 1rem;
  position: static;
  margin-top: 2rem;
}

a {
  color: #00bcd4;
}

a:hover {
  text-decoration: underline;
}
