/* Global Styles */
* {
  box-sizing: border-box;
}

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

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

/* Header */
header {
  background-color: #000000;
  color: #e3ba36;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

header img {
  height: 60px;
  /* Add padding and black background to hide any white border around the logo */
  padding: 4px;
  background-color: #000;
  border-radius: 8px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav li {
  margin-left: 1.5rem;
}

nav a {
  color: #e3ba36;
  font-weight: bold;
  transition: color 0.2s ease-in-out;
}

nav a:hover {
  color: #ffffff;
}

/* Hero */
.hero {
  background: radial-gradient(circle at center, #2b2b2b, #0d0d0d);
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  color: #f5e6b2;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 2rem;
}

.btn {
  background-color: #e3ba36;
  color: #0d0d0d;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

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

/* Sections */
.section {
  padding: 4rem 2rem;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #e3ba36;
  position: relative;
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #e3ba36;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  width: 280px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #e3ba36;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.service-card p {
  flex-grow: 1;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-card .btn {
  align-self: flex-start;
}

/* Testimonials */
.testimonials {
  background-color: #161616;
  color: #f5f5f5;
  padding: 3rem 2rem;
}

.testimonial-item {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-style: italic;
}

.testimonial-item span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #e3ba36;
}

/* Footer */
footer {
  background-color: #000000;
  color: #999999;
  padding: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

footer a {
  color: #e3ba36;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .services-grid {
    flex-direction: column;
    align-items: center;
  }
  .service-card {
    width: 90%;
  }
}