/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
html, body {
  width: 100%;
  height: 100%;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Hero Background */
.hero {
  width: 100vw;
  height: 100vh;
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Business Name */
.brand {
  position: absolute;
  top: 30px;
  left: 66%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  z-index: 2;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.15)
  );
  display: flex;
  align-items: center;
}

/* Content Area */
.content {
max-width: 650px;
padding: 3rem; 
color: #ffffff;
}

/* Headings */
h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.75rem;
  color: #e0e0e0;
}

.about-link,
.about-link:visited {
  display: inline-block;
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  padding: 0.35rem 1rem;
  border: 1px solid #ffffff;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.about-link:hover {
  background-color: #ffffff;
  color: #000000;
}
/* CTA Button */
.cta-button {
  display: inline-block;
  margin-bottom: 2.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-1px);
}

/* Sections */
.section {
  margin-bottom: 2.5rem;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 0.5rem;
}

/* Tiers */
.tier {
  margin-bottom: 1.25rem;
}

.tier h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.tier p {
  font-size: 0.95rem;
  color: #d6d6d6;
}

/* Services List */
.services-list {
  list-style: none;
}

.services-list li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #d6d6d6;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  .brand {
    left: 20px;
    top: 20px;
  }

  .content {
    padding: 2rem;
  }
}
/* Scroll Sections / 
.info-section { 
  width: 100%; 
  padding: 6rem 2rem; 
} 

 
.info-section.light { 
  background-color: #ffffff; 
  color: #222; 
} 

 
.info-section.dark { 
  background-color: #0f0f0f; 
  color: #ffffff; 
} 

 
.info-content { 
  max-width: 900px; 
  margin: 0 auto; 
} 

.info-content h2 { 
  font-size: 2.2rem; 
  margin-bottom: 1.5rem; 
} 

.info-content p { 
  font-size: 1.05rem; 
  line-height: 1.7; 
  margin-bottom: 1.25rem; 
  color: inherit; 
} 

/ Responsive tuning */ 
@media (max-width: 768px) { 
  .info-section { 
    padding: 4rem 1.5rem; 
  } 

  .info-content h2 { 
    font-size: 1.8rem; 
  } 
} 