
/* === HOMEPAGE SECTION STYLING FIX === */

.container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  max-width: 900px;
  margin: 2rem auto 4rem;
}

.services-section {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 3rem 2rem;
  max-width: 950px;
  margin: 0 auto 4rem;
  text-align: center;
}

.services-section h2 {
  margin-bottom: 1.5rem;
}

.services-section ul {
  list-style-type: disc;
  text-align: left;
  padding-left: 1.5rem;
  max-width: 650px;
  margin: 1.5rem auto;
}

body {
  background: linear-gradient(to bottom, #0d1117, #090c10);
}
/* === END HOMEPAGE SECTION STYLING FIX === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at top, #132739, #050a10 60%);
  color: #f5f7fa;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  text-align: center;
  padding: 3rem 1.5rem;
}

.container {
  background: rgba(255, 255, 255, 0.04);
  padding: 3rem 4rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  max-width: 960px;
}

h1 {
  color: #f5b044;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

p {
  margin-bottom: 2rem;
  color: #dbe2ec;
  font-size: 1.1rem;
}

.button-group {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

a.button {
  padding: 1.4rem 3rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.25s ease;
}

a.customer {
  background: #f5b044;
  color: #1e1400;
}

a.company {
  background: #37b26c;
  color: #fff;
}

a.button:hover {
  transform: scale(1.07);
  filter: brightness(1.1);
}

.seo-section {
  margin-top: 2.5rem;
  text-align: left;
  line-height: 1.7;
  color: #e6edf7;
}

.seo-section h2 {
  color: #f5b044;
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}

.seo-section p {
  margin-bottom: 1rem;
  color: #dbe2ec;
}

.services-list {
  list-style: disc;
  margin: 0 0 1.5rem 1.25rem;
  padding: 0;
}

.services-list li {
  margin-bottom: 0.5rem;
}

.seo-locations {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* === HOMEPAGE LAYOUT CORRECTION === */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content,
.services-section {
  width: 100%;
  max-width: 950px;
  margin: 0 auto 3rem;
}

main, .main, .container {
  display: block;
}

.hero {
  text-align: center;
  margin: 3rem 0;
}
/* === END HOMEPAGE LAYOUT CORRECTION === */