/* Reset + Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #2E2E2E;
  color: #ffffff;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Make the page take full height and space properly */
html, body {
  height: 100%;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Let main grow to push footer down */
main {
  flex: 1;
  display: flex;
  align-items: center;      /* vertical centering */
  justify-content: center;  /* horizontal centering (optional) */
  flex-direction: column;
  text-align: center;
}
section{
    width: 100%;
}

/* Header */
.site-header {
  background-color: #1F1F1F;
  padding: 12px 0;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo {
  max-height: 60px;
  width: auto;
  display: block;
  transform: scale(2.5);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #D32F2F;
}

/* Hero Section */
.hero {
  background-color: #2E2E2E;
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #CCCCCC;
}
.cta-button {
  background-color: #D32F2F;
  color: #fff;
  padding: 14px 32px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #b71c1c;
}

/* Intro Section */
.intro {
  background-color: #1F1F1F;
  padding: 60px 0;
  text-align: center;
}
.intro h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}
.intro p {
  color: #cccccc;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Section */
.services {
  background-color: #2E2E2E;
  padding: 60px 0;
}
.services h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .service-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
.service {
  flex: 1;
  background-color: #1F1F1F;
  padding: 20px;
  border-left: 5px solid #D32F2F;
}
.service h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.service p {
  color: #cccccc;
  font-size: 1rem;
}

/* CTA Section */
.cta-contact {
  background-color: #1F1F1F;
  text-align: center;
  padding: 60px 20px;
}
.cta-contact h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.cta-contact p {
  color: #cccccc;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* Footer */
.site-footer {
  background-color: #1F1F1F;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
  color: #aaa;
}
.contact-info {
  margin-top: 30px;
  font-size: 1.1rem;
}
.contact-info a {
  color: #D32F2F;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
