/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark-blue: #658DAD;
  --light-blue: #73BFE0;
  --light-green: #AAD037;
  --dark-grey: #58595B;
}

/* General Layout */
body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: var(--dark-grey);
  line-height: 1.6;
}

/* Green Bars */
.green-line {
  height: 1cm;
  background-color: var(--light-green);
  width: 100vw;
}

/* Header / Logo */
header {
  background: white;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header img {
  max-width: 200px;
  height: auto;
}

/* Navigation Bar */
nav {
  background: var(--dark-blue);
  padding: 10px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--light-blue);
}

/* Hero Section */
.hero {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5em;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1em;
  color: var(--dark-grey);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* CTA Button */
.cta-button {
  background-color: var(--light-green);
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #9ac12f;
}

/* Key Points List */
.key-points {
  text-align: left;
  margin: 30px auto;
  max-width: 700px;
}

.key-points h3 {
  color: var(--dark-blue);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.key-points ul {
  list-style-type: disc;
  padding-left: 20px;
}

.key-points ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: var(--dark-grey);
}

/* About Section */
.about-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1em;
  color: var(--dark-grey);
}

.about-container h2 {
  color: var(--dark-blue);
  font-size: 2em;
  margin-bottom: 40px;
  text-align: center;
}

.about-block,
.about-highlight,
.about-quote {
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.about-block {
  background: #f9f9f9;
  border-left: 4px solid var(--light-green);
}

.about-highlight {
  background: #e6f4e1;
  border-left: 6px solid var(--light-green);
}

.about-quote {
  background: #f2f2f2;
  font-style: italic;
  text-align: center;
  border-left: 4px solid var(--light-blue);
}

/* Services Section */
#services {
  padding: 60px 20px;
  background: #f9f9f9;
}

#services h2 {
  text-align: center;
  color: var(--dark-blue);
  margin-bottom: 30px;
}

#services ul {
  max-width: 700px;
  margin: 0 auto;
  list-style: disc;
  padding-left: 20px;
  font-size: 1.1em;
  color: var(--dark-grey);
}

#services li {
  margin-bottom: 15px;
}

/* Contact Section */
#contact {
  padding: 60px 20px;
  background: #ffffff;
}

#contact h2 {
  text-align: center;
  color: var(--dark-blue);
  margin-bottom: 30px;
}

/* Footer */
footer {
  background: #f4f4f4;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--dark-grey);
}

/* ----------------------------
   Mobile Responsiveness
----------------------------- */
@media (max-width: 768px) {
  header img {
    max-width: 150px;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero p,
  .key-points ul,
  .about-container,
  #services ul,
  #contact p,
  .cta-button {
    padding: 0 15px;
    font-size: 1em;
  }

  .cta-button {
    display: inline-block;
    margin-top: 20px;
  }
}
