* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #FDF7F4;
    color: #36485C;
    font-family: 'Trebuchet MS', Arial, sans-serif;
  }
  
  main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  footer {
    flex-shrink: 0;
  }

/* Navbar styles */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 2;
}

.nav-logo {
    height: 20px;
    width: 20px;
}

.navbar-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media (max-width: 767.99px) {
    .navbar-content {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
}

/* All Sections */

.section-title {
    font-size: 38px;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 20px 0;
    text-align: center;
}

@media (max-width: 767.99px) {
    .section-title {
        font-size: 2em;
        margin: .6em;
    }
}

/* About */

.about-div {
    display: flex;
    justify-content: center;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 10px 20px;
    align-items: center;
    justify-items: center;
    gap: 20px;
}

.about-box {
    position: relative;
    padding: 2rem;
    border: 3px solid transparent;
    border-radius: 20px;
    background:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(135deg, #344149, #74B743) border-box;
    color: #344149; /* Secondary color for text */
    font-size: 1.2rem;
    max-width: 526px;
}

.about-top-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.about-middle-text {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111;
    margin: 0.5rem 0;
}

.about-bottom-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.about-button-wrapper {
  margin-top: 30px;
  text-align: center;
}

.about-button {
    background-color: #74B743; /* Primary */
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(52, 65, 73, 0.25);
}

.about-button:hover {
  background-color: #5da333;
  box-shadow: 0 6px 14px rgba(0, 86, 179, 0.3);
  transform: translateY(-2px);
}

.about-button:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0, 86, 179, 0.2);
}

@media (max-width: 767.99px) {
  .about-button {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

.about-self-wrapper {
    display: flex;
    justify-content: center;
}

.self {
    max-height: 100%;
    width: auto;
    max-width: 340px;
    height: auto;
    object-fit: contain;
}

.badge-wrapper {
    display: flex;
    justify-content: center;
}

.badge-banner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 24px 0;
    height: 124px;
    overflow: hidden;
}

.badge-image {
    max-height: 100%;
    width: auto;
    margin: 0 18px;
    object-fit: contain;
}

@media (max-width: 767.99px) {
    .about-wrapper {
        grid-template-columns: 1fr; /* Switch to one column */
        grid-template-rows: auto auto; /* Set rows for each item */
        grid-template-areas:
            "about-self-wrapper"
            "about-column"; /* Reverse the order */
    }
    
    .about-column {
        grid-area: about-column;
        width: auto;
    }

    .about-self-wrapper {
        grid-area: about-self-wrapper;
        position: relative;
        width: 320px;
        height: 264px;
        overflow: hidden;
    }

    .self {
        position: absolute;
        top: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: top;
    }

    .about-paragraph {
        font-size: 1.2em;
    }

    .badge-banner {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two columns */
        grid-template-rows: repeat(2, auto);  /* Two rows */
        gap: 10px; /* Adjust spacing between items */
        justify-content: center;
        place-items: center;
        height: auto; /* Allow flexible height */
    }

    .badge-image {
        height: calc(10vw + 60px);
        margin: calc(2px + 0.5vw) calc(5px + 1.5vw);
    }
}

/* Scaling */

.scaling-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Background layer */
.scaling-background {
  background: radial-gradient(circle at 20% 30%, rgba(168,107,245,0.25), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(0,212,255,0.25), transparent 70%),
              #111827; /* Dark slate background */
  padding: 5rem 2rem;
}

.scaling-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scaling-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.scaling-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Content area */
.scaling-content {
  max-width: 900px;
  margin: 0 auto;
  color: #f5f5f5;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}

/* Paragraph before list */
.scaling-content > p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

/* Ordered list styling */
.scaling-steps {
  list-style: decimal-leading-zero;
  counter-reset: section-counter;
  padding-left: 1.5rem;
}

.scaling-steps li {
  margin-bottom: 2rem;
}

.scaling-steps h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.scaling-steps p {
  color: #cccccc;
  font-size: 1.05rem;
  margin: 0;
}

/* WHO FOR SECTION */
.who-for-section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.who-for-title {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 2.2em;
  font-style: italic;
  color: #36485C;
  margin-bottom: 40px;
}

/* GRID LAYOUT LIKE SERVICE CARDS */
.who-for-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* INDIVIDUAL CARD STYLE */
.who-for-list li {
  background: #ffffff;
  border: 2px solid #36485C;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 
              0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  padding: 24px 20px;
  font-size: 16px;
  line-height: 1.6;
  transition: all 0.25s ease;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.who-for-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18), 
              0 8px 25px rgba(0, 0, 0, 0.08);
}

.who-for-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.who-for-top strong {
  display: block;
  margin-top: 2px;
}

/* ICON STYLE */
.who-for-list i {
  color: #74B743;
  font-size: 1.6rem;
  margin-right: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* TITLE AND TEXT */
.who-for-list strong {
  display: inline-block;
  color: #1a1a1a;
  font-weight: 700;
  margin-right: 6px;
}

.who-for-list li p {
  margin-top: 8px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 767.99px) {
  .who-for-section {
    padding: 60px 15px;
  }

  .who-for-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .who-for-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .who-for-list li {
    padding: 20px;
  }

  .who-for-list i {
    font-size: 1.4rem;
  }
}

/* Why Jeff */

.why-me-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.why-me-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 50px;
}

.why-me-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.why-me-image-wrapper {
  flex: 0 0 320px;
}

.why-me-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.why-me-text {
  flex: 1;
}

.why-me-text p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

/* Responsive Design */
@media (max-width: 767.99px) {
  .why-me-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .why-me-image-wrapper {
    flex: none;
  }

  .why-me-image {
    width: 240px;
    height: 240px;
    margin: 0 auto;
  }

  .why-me-text p {
    font-size: 1rem;
  }
}

/* Calendar */

.calendar-section {
  background-color: #0f172a; /* Deep navy/charcoal tone */
  color: #f8fafc; /* Light, clean text */
  padding: 100px 20px;
  text-align: center;
}

.calendar-title-wrapper {
  margin-bottom: 40px;
}

.calendar-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.calendar-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #93c5fd; /* Soft blue accent for contrast */
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 767.99px) {
  .calendar-section {
    padding: 70px 15px;
  }

  .calendar-title {
    font-size: 1.6rem;
  }

  .calendar-subtitle {
    font-size: 1.1rem;
  }
}

/* Contact */

#contact {
    padding: 24px 20px;
    margin-bottom: 24px;
}

.contact-form-wrapper {
    display: flex;
    justify-content: center;
}

.contact-form {
    background: radial-gradient(circle, rgba(110,110,110,1) 0%, rgba(52,65,73,1) 75%, rgba(52,65,73,1) 100%);
    padding: 24px 20px;
    border-radius: 16px;
    max-width: 800px;
    width: 80%;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15), 
    0px 12px 24px rgba(0, 0, 0, 0.15), 
    0px 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 479px) {
    .contact-form {
        width: 100%;
    }
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    margin: 6px 0;
}

.label {
    color: #fff;
    font-size: 12px;
    margin-bottom: 2px;
    margin-left: 6px;
}

.contact-input {
    padding: 8px 6px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #344149;
}

.contact-textarea {
    resize: none;
    padding: 8px 6px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #344149;
    height: 120px;
}

.contact-disclaimer-wrapper {
    display: flex;
    flex-direction: row;
    padding: 6px 0;
}

.contact-disclaimer-checkbox {
    margin-right: 4px;
}

.contact-disclaimer-text {
    color: #fff;
    font-size: 12px;
    text-align: center;
}

.contact-link-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 8px 0;
}

.contact-link {
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
}

.contact-link-text {
    color: #fff;
    font-size: 12px;
    margin: 0 4px;
}

.contact-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.contact-button {
    padding: 8px 24px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    background: #FFC857;
    color: #36485C;
    border: 1px solid #FFC857;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
}

.thank-you-text {
    font-size: 16px;
}

/* Privacy Policy and Terms of Use */
.privacy-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
}

.privacy-policy__title {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin: 24px 0;
}

.privacy-policy__intro {
    color: #555;
    margin-bottom: 20px;
}

.privacy-policy__section {
    margin-bottom: 30px;
}

.privacy-policy__section-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.privacy-policy__subheading {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 8px;
}

.privacy-policy__list {
    list-style-type: disc;
    margin-left: 20px;
    color: #444;
}

.privacy-policy__list-item {
    margin-bottom: 5px
}

.privacy-policy__section-text {
    color: #555;
    margin-bottom: 10px;
}

/* Footer styles */
.footer {
    padding: 32px;
    text-align: center;
    background-color: #f1f1f1;
}

.footer-logo-link {
    height: 48px;
    width: auto;
    cursor: pointer;
}

.footer-logo-icon {
    height: inherit;
    width: auto;
}

.footer .footer-link-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.footer-link {
    color: #36485C;
    text-decoration: none;
}

.footer .footer-bottom {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.footer .social-icons a {
    margin: 0 12px;
}

.social-icons {
    display: flex;
    flex-direction: row;
}

.social-icon-logo {
    height: 16px;
    width: 16px;
}

/* Calendar */

.calendar {
    margin: 0 12px;
}

.calendar-logo-wrapper {
    margin: 42px 0;
    display: flex;
    justify-content: center;
}

.calendar-subtitle {
    font-size: 24px;
    text-align: center;
}

.calendar-embed {
    padding: 0 24px;
    border-radius: 16px;
}

@media (max-width: 773.99px) {
    .calendar-subtitle {
        margin-bottom: 12px;
        font-size: 1.4em;
        padding: 0 20px;
    }
} 