/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.4;
  text-align: center;
  background-color: #ffffff;
  margin: 0;
  padding-top: 90px; /* spacing for sticky logo */
}

/* Sticky Logo */
.sticky-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1E84B8;
  text-align: center;
  padding: 30px 0;
  z-index: 1000;
}

.sticky-logo img {
  width: 200px;
  height: auto;
}

/* Hero Section (exactly like screenshot) */
.hero {
  background-color: #1E84B8;
  color: #FFFFFF;
  padding: 160px 20px 120px 20px;
}

.hero h1 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 2rem;
}

.hero .highlight-dark {
  background-color: rgba(0, 0, 0, 0.25);
  padding: 0.2em 0.4em;
  border-radius: 2px;
}

/* Quote styling identical to image */
.quote-hero {
  margin-bottom: 2.5rem;
}

.quote-hero p {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.quote-hero .highlight-light {
  background-color: #fff;
  color: #1E84B8;
  padding: 0.2em 0.4em;
  border-radius: 2px;
  display: inline-block;
}

.quote-hero .author {
  font-size: 1rem;
  font-weight: 400;
  color: #cde5f0;
  margin-top: 10px;
  display: block;
}

/* CTA Button */
.cta-button {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 40px;
  padding: 14px 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #FFFFFF;
  color: #1E84B8;
}

/* Contact Section */
.contact-section {
  background-color: #dbdbdb;
  padding: 100px 20px;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #1982C0;
}

.contact-section p, 
.contact-section a {
  font-size: 1rem;
  color: #1D1D1D;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-container {
    align-items: center;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input {
    width: 90%;
  }

  .newsletter-form button {
    width: 60%;
  }
}

/* Footer */
.site-footer {
  background-color: #FFFFFF;
  padding: 50px 20px;
  position: relative;
  text-align: left;
  
}

.footer-logo {
  display: inline-block;
  transform: translateX(570px);
  width: 120px;
  align-items: center;
}

/* Hidden message */
.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 140px 20px 80px 20px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .quote-hero p {
    font-size: 1.4rem;
  }

  .cta-button {
    padding: 10px 30px;
    font-size: 0.9rem;
  }

  .sticky-logo img {
    width: 60px;
  }

  .footer-logo {
    width: 90px;
  }
}