/*────────────────────────────────────────────────────────────────
  ROOT VARIABLES
────────────────────────────────────────────────────────────────*/
:root {
  --color-bg-page:       #ffffff; /* page background */
  --color-bg-header:     #f0f4f9; /* header background (unused here) */
  --color-text-primary:  #2c3e50; /* primary text */
  --color-text-secondary:#4a535b; /* secondary text */
  --color-accent:        #d4a017; /* accent (e.g., CTA) */
  --color-border:        #ddd;    /* light gray borders */
  --color-bg-card:       #fafafa; /* card background (unused here) */
}

/*────────────────────────────────────────────────────────────────
  GLOBAL RESET & BASE
────────────────────────────────────────────────────────────────*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Roboto, Helvetica, sans-serif;
  line-height: 1.6;
  background-color: var(--color-bg-page);
  color: var(--color-text-primary);
}

a {
  text-decoration: none;
  color: inherit;
}

/*────────────────────────────────────────────────────────────────
  HEADER (“.top-container”)
────────────────────────────────────────────────────────────────*/
.top-container {
  position: sticky;
  top: 0;
  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  height: 80px;
  margin: 0;
  padding: 0;
  background-color: var(--color-bg-page);
  border-bottom: 1px solid rgb(169, 169, 169);
}

#logo {
  width: 225px;
  margin-left: 150px;
}

.padl20 {
  padding-left: 20px;
}

.header-content {
  margin: 0;
  padding: 0;
}

/*────────────────────────────────────────────────────────────────
  MAIN CONTAINER & “.main-flex”
────────────────────────────────────────────────────────────────*/
.main-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  background-color: var(--color-bg-page);
}

/* Two-column layout inside main-container */
.main-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 40px;
}

/* LEFT COLUMN (text + CTA) */
.text-content {
  flex: 1 1 400px;
  max-width: 600px;
  text-align: left;
  padding-left: 20px;
}

/* Main title (if present) */
.main-title {
  font-size: 2.5rem; /* ~40px */
  margin-bottom: 20px;
  color: var(--color-text-primary);
  line-height: 1.2;
}

/* Description paragraph */
.main-description {
  font-size: 1.3rem; /* ~18–19px */
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
}

/* Team members */
.team-members {
  margin-bottom: 40px;
}

.team-member {
  font-size: 1.1rem; /* ~17px */
  color: var(--color-text-primary);
  margin: 4px 0;
}

.role {
  font-style: italic;
  color: #666;
}

/* Call-to-Action button */
.cta-button {
  display: inline-block;
  font-size: 1.2rem;              /* ~19px */
  color: #fff;
  background-color: #007bcd;      /* or var(--color-accent) */
  padding: 15px 36px;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #005fa3;
  transform: translateY(-2px);
}

/* Phone link under CTA */
.phone-text {
  margin: 16px 0 -25px;
  font-size: 1.1rem;
}

.phone-text a {
  color: #007bcd;
}

.phone-text a:hover {
  text-decoration: underline;
}

/* RIGHT COLUMN (image) */
.image-content {
  flex: 1 1 300px;
  max-width: 300px;
  text-align: right;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: inline-block;
}

/*────────────────────────────────────────────────────────────────
  CONTENT CONTAINER (additional sections)
────────────────────────────────────────────────────────────────*/
.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
  width: 80%;
}

.main-contact {
  width: 40%;
  margin: 12px auto 20px;
  padding: 8px;
  background-color: lightblue;
  text-align: center;
}

#phone-p {
  font-size: 24px;
  color: darkblue;
}

/*────────────────────────────────────────────────────────────────
  BOTTOM CONTAINER (three-column flex)
────────────────────────────────────────────────────────────────*/
.bottom-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-top: 1px solid #d2d2d2;
}

.bottom-container .column {
  flex: 1 1 0;
  min-width: 200px;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.bottom-container .column h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
  color: var(--color-text-primary);
}

/* CONTACT COLUMN */
.contact-column address {
  font-style: normal;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #555;
}

.contact-column p {
  margin: 0.4rem 0;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.contact-column a {
  color: #1a73e8;
}

.contact-column a:hover {
  text-decoration: underline;
}

/* SERVICES COLUMN */
.services-column ul {
  list-style: disc inside;
  margin: 0;
  padding-left: 0;
}

.services-column li {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: var(--color-text-secondary);
}

/* MAP COLUMN */
.map-column iframe {
  width: 100%;
  height: 250px;
  border-radius: 4px;
  border: 0;
  margin-bottom: 0.6rem;
}

.map-column p,
.map-column a {
  margin: 0.4rem 0;
  font-size: 0.9rem;
  color: #1a73e8;
}

.map-column a:hover {
  text-decoration: underline;
}

/*────────────────────────────────────────────────────────────────
  MEDIA QUERIES
────────────────────────────────────────────────────────────────*/
/* Stack main-flex on narrow screens */
@media (max-width: 800px) {
  .main-flex {
    flex-direction: column;
    gap: 24px;
  }
  .image-content {
    text-align: center;
  }
}

/* Adjust padding and font-sizes on very small screens */
@media (max-width: 480px) {
  .main-container {
    padding: 40px 12px;
  }
  .main-title {
    font-size: 2rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 12px 28px;
  }
  .phone-text {
    font-size: 1rem;
  }
}

/* Stack bottom columns vertically on narrow screens */
@media (max-width: 800px) {
  .bottom-container {
    padding: 20px 10px;
    gap: 15px;
  }
  .bottom-container .column {
    flex: 1 1 100%;
  }
}
