* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom right, #d1d1d1, #a9a9a9);
  color: #2c2c2c;
  overflow-x: hidden
}


header {
  background-color: #000000; /* Changed to black */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 20px 40px;
  text-align: center;
}

header h1 {
  margin: 0;
  color: #ffffff; /* Changed to white */
}

header p.slogan {
  margin: 10px 0 0;
  font-size: 1.4rem;
  color: #ffffff; /* Changed to white */
  font-style: italic;
  font-weight: bold;
}

.logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}


.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  background-image: url('NONE.png');
  background-size: cover;
  background-position: center;
  position: relative;
  color: #111113;
  min-height: 300px;
  box-sizing: border-box;
}


.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  z-index: 0;
}

.hero h2, .hero p {
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
}

.services {
  padding: 60px 20px;
  background-color: #eaeaea;
  text-align: center;
}

.services h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #3a3a3a;
}

.services ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.services li {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.service-pricing ul {
  margin-top: 10px;
  padding-left: 20px;
}

.service-pricing li {
  margin-bottom: 5px;
}

.contact {
  background-color: #1b1b18;
  padding: 40px 20px;
  text-align: center;
}

.contact h3 {
  color: #ffd700;
  margin-bottom: 10px;
}

footer {
  background-color: #3b3b3b;
  color: #181510;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.socials a {
  margin: 0 10px;
  color: #ffd700;
  text-decoration: none;
}

.section {
  padding: 40px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.section h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #2c2c2c;
}

.section p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 1rem;
}

.service-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffd700;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
}

.service-button:hover {
  background-color: #ffcc00;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  transform: translateY(-2px);
}

.service-list {
  text-align: left;
  max-width: 700px;
  margin: auto;
  padding-left: 20px;
}


/* Mobile CSS */

@media (max-width: 600px) {
  .hero {
    padding: 20px 10px;
    min-height: 180px;
  }
  .service-button {
    width: 100%;
    text-align: center;
  }
}

.price-tag {
  display: inline-block;
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  padding: 4px 10px;
  margin-right: 8px;
  border-radius: 4px;
}



