/* === GLOBAL RESET & TYPOGRAPHY === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', serif;
  line-height: 1.6;
  color: #333;
  background-color: #e4f1fe;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* === CALL BANNER === */
.call-banner {
  background-color: #007bc9;
  color: white;
  text-align: center;
  padding: 8px 16px;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  z-index: 1000;
}
/* === HEADER === */
.fixed-header {
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky; 
  top: 0;
  z-index: 999;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 80px; 
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  flex-wrap: nowrap;
}


.logo img {
  width: 200px;
  margin-top: 16px;
}

/* === NAVIGATION === */
.navigation-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  flex: 1;
  justify-content: flex-end;
  padding-left: 2rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  width: 200px;
  text-align: center;
  padding: 1rem 0;
  z-index: 1000;
}

.nav-links li:hover {
	color: #005fa3;
	cursor: default;
}


/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: grabbing;
  padding: 10px;
}

/* Hamburger lines */
.hamburger span, .hamburger-inner, .hamburger-box {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
}

/* Show Nav Links when active */
.nav-links.show {
  display: flex;
}

/* Hide hamburger on desktop */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .hamburger span, .hamburger-inner, .hamburger-box {
  display: none;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background-color: transparent;
    justify-content: flex-end;
    gap: 2rem;
    width: auto;
  }
}

/* Show hamburger and hide nav-links on mobile */
@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }
  
  .hamburger span, .hamburger-inner, .hamburger-box {
  display: block;
  border-top: 2px solid #007bc9;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    width: 200px;
    text-align: center;
    padding: 1rem 0;
    z-index: 1000;
  }

  .nav-links.show {
    display: flex;
  }
}

/* === HERO SECTION === */
.hero {
  padding: 60px 20px;
  text-align: center;
  background-color: #8dc6ff;
  color: #fff;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.hero-content .cta-button {
  padding: 0.8rem 1.5rem;
  background-color: #e4f1fe;
  color: #22313f;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

.hero .cta-button {
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  .hero-content {
    margin-bottom: 2rem;
  }
  
  .intro-content {
    margin-top: 2rem;
  }
}

/* === ABOUT SECTION === */
.about {
  background-color: white;
  padding: 10px;
}

.container {
  max-width: 100%;
  padding: 2rem;
  max-height: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 6rem 0;
}

.about-text h2 {
  color: #007bc9;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.about-text p {
  margin-bottom: 4rem;
  text-align: left;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.about-image img {
  max-width: 100%;
  width: 250px;
  border-bottom: 2px solid #007bc9;
  border-radius: 0.5rem;
}

/* === LETTER SECTION === */

.letter {
  background-color: white;
  padding: 10px;
}

.letter-section {
  background-color: white;
/*   padding: 2rem; */
  padding: 0 6rem 2rem;  
}

.letter-section h2 {
  color: #007bc9;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.letter-text p {
  margin-bottom: 1rem;
  text-align: left;
}

.signature {
  width: 180px;
  margin: 1rem 0;
    margin-left: 2rem;
  margin-right: 2rem;
}

/* === COMPANY SECTION === */
.company {
  background-color: white;
  padding: 10px;
} 

.company-section {
  background: transparent;
  border-top: 2px solid #007bc9;
  padding: 2rem 6rem;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.company-text h2 {
  color: #007bc9;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.company-text ul li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  text-align: left;
}

.company-text ul {
  padding-left: 1.5rem;
  text-align: left;
}

.company-text ul li::marker {
  content: "• ";
  color: #007bc9;
  text-align: left;
}


/* === RESPONSIVE === */
@media (max-width: 768px) {
  .about-grid, .company-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Footer */
.footer-container {
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-height: 300px;
}

.top-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: .5rem;
}

.footer-icon {
  width: 100px;
  height: auto;
/*   border-radius: 0.2rem; */
}

.bottom-footer {
  text-align: center;
}

.bottom-footer p {
  color: black;
  font-size: 0.7rem;
}

/* === MOBILE FOOTER === */
@media (max-width: 760px) {
  .top-footer {
    grid-template-columns: 1fr;
    text-align: center;
    align-items: center;
  }

  .footer-icon {
    margin: 0 auto;
  }
}
