/* -------------------------------------------------------
   ABOUT PAGE — ALL IMAGES ON RIGHT SIDE
-------------------------------------------------------- */

/* Page wrapper */
.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 30px;
  line-height: 1.8;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* About sections - ALL TEXT LEFT / IMAGE RIGHT */
.about-section {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 120px;
}

/* All sections have text first, then image */
.first-section,
.founder-section,
.approach-section {
  flex-direction: row;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 0 0 45%;
}

.about-img {
  width: 150%;
  height: 820px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
}

/* Main heading - LARGER */
.first-section h1 {
  font-size: 3.2rem;
  margin-bottom: 2.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: #123b3a;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

/* Section headings - LARGER */
.about-content h2 {
  font-size: 2.6rem;
  margin-bottom: 2.2rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: #123b3a;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.about-content h3 {
  font-size: 1.7rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: #123b3a;
  font-weight: 400;
}

/* Paragraphs - LARGER */
.about-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #444;
}

/* Bullet list - LARGER */
.about-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2.5rem;
}

.about-list li {
  margin-bottom: 1.3rem;
  position: relative;
  padding-left: 2.2rem;
  line-height: 1.7;
  font-size: 1.25rem;
  color: #444;
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  color: #123b3a;
  font-weight: bold;
}

/* Signature line - LARGER */
.signature {
  margin-top: 3rem;
  font-style: italic;
  text-align: right;
  font-size: 1.3rem;
  color: #123b3a;
  font-family: Georgia, 'Times New Roman', serif;
}

/* Strong text */
.about-content strong {
  color: #123b3a;
  font-weight: 600;
}

/* Em text */
.about-content em {
  color: #123b3a;
  font-style: italic;
}

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column !important;
    gap: 50px;
    margin-bottom: 80px;
  }
  
  .about-image {
    flex: 1;
    width: 100%;
  }
  
  .first-section h1 {
    font-size: 2.8rem;
  }
  
  .about-content h2 {
    font-size: 2.2rem;
  }
  
  .about-content h3 {
    font-size: 1.5rem;
  }
  
  .about-wrapper {
    padding: 60px 20px;
  }
  
  .about-content p {
    font-size: 1.15rem;
  }
  
  .about-list li {
    font-size: 1.1rem;
  }
  
  .about-img {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .first-section h1 {
    font-size: 2.4rem;
  }
  
  .about-content h2 {
    font-size: 2rem;
  }
  
  .about-content h3 {
    font-size: 1.4rem;
  }
  
  .about-content p {
    font-size: 1.05rem;
  }
  
  .about-list li {
    font-size: 1rem;
  }
  
  .signature {
    font-size: 1.1rem;
  }
}
/* SOCIAL MEDIA ICONS STYLING */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.social-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #123b3a;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

/* Update footer container to accommodate social icons */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.footer {
  background: #123b3a;
  color: #fff;
  padding: 60px 30px 40px;
  margin-top: 100px;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-col a:hover {
  opacity: 0.8;
}

/* Responsive for footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-social {
    margin-top: 40px;
  }
}

/* -------------------------------------------------------
   SERVICES PAGE — MATCH ORIGINAL WEBSITE
-------------------------------------------------------- */

/* Hero Banner */
.services-hero {
  width: 100%;
  height: 380px;
  overflow: hidden;
  margin-bottom: 70px;
}

.services-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Page Wrapper */
.services-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px 100px;
  line-height: 1.8;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Main Title */
.services-title {
  text-align: center;
  font-size: 3rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: #123b3a;
  margin-bottom: 80px;
  font-weight: 400;
  letter-spacing: -0.6px;
}

/* Service Sections */
.service-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 120px;
}

.service-section.reverse {
  flex-direction: row-reverse;
}

/* Text Styling */
.service-text {
  flex: 1;
  max-width: 620px;
}

.service-text h2 {
  font-size: 2.4rem;
  margin-bottom: 1.8rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: #123b3a;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.service-text p {
  font-size: 1.25rem;
  margin-bottom: 1.7rem;
  color: #444;
  line-height: 1.75;
}

.service-text ul {
  padding-left: 20px;
  margin-bottom: 2rem;
}

.service-text ul li {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #444;
}

/* Center Image */
.services-image-center {
  display: flex;
  justify-content: center;
  margin: 60px 0 80px;
}

.services-img {
  width: 100%;
  max-width: 850px;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
  object-fit: cover;
}

/* Get Started Button */
.services-btn-center {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.btn-primary {
  display: inline-block;
  background: #6A42FF; /* your brand purple */
  color: #fff;
  padding: 16px 36px;
  border-radius: 40px;
  font-size: 1.15rem;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #5633d1;
  transform: translateY(-2px);
}

/* -------------------- Responsive -------------------- */
@media (max-width: 900px) {
  .service-section,
  .service-section.reverse {
    flex-direction: column;
  }

  .services-title {
    font-size: 2.6rem;
  }

  .service-text h2 {
    font-size: 2.1rem;
  }

  .service-text p,
  .service-text ul li {
    font-size: 1.15rem;
  }

  .services-hero {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .services-title {
    font-size: 2.3rem;
  }

  .service-text h2 {
    font-size: 1.9rem;
  }

  .service-text p,
  .service-text ul li {
    font-size: 1.05rem;
  }

  .services-hero {
    height: 200px;
  }
}

/* -------------------------------------------------------
   RESOURCES PAGE — MATCH ORIGINAL WEBSITE
-------------------------------------------------------- */

/* Page Wrapper */
.resources-wrapper {
  max-width: 1050px;
  margin: 0 auto;
  padding: 80px 30px;
  font-family: Georgia, 'Times New Roman', serif;
  color: #333;
  line-height: 1.85;
}

/* Page Title */
.resources-title {
  font-size: 3.2rem;
  text-align: center;
  color: #123b3a;
  margin-bottom: 60px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

/* Subpage Section (generic wrapper) */
.resources-section {
  margin-bottom: 60px;
}

.resources-section h2 {
  font-size: 2.2rem;
  color: #123b3a;
  margin-bottom: 20px;
  font-weight: 400;
}

.resources-section p {
  font-size: 1.25rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Bullet list */
.resources-section ul {
  margin-left: 25px;
  margin-bottom: 25px;
}

.resources-section ul li {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #444;
}

/* IMAGE STYLE */
.resources-img {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

/* Navbar dropdown fix */
.nav-menu li {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff5d9;
  padding: 18px 0;
  width: 230px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.nav-menu li:hover .nav-dropdown {
  display: flex;
}

.nav-dropdown a {
  padding: 12px 18px;
  text-decoration: none;
  color: #123b3a;
  font-size: 16px;
  font-weight: 500;
}

.nav-dropdown a:hover {
  background: rgba(0,0,0,0.06);
}

/* Responsive */
@media (max-width: 768px) {
  .resources-title {
    font-size: 2.4rem;
  }
  .resources-section h2 {
    font-size: 1.8rem;
  }
  .resources-section p,
  .resources-section ul li {
    font-size: 1.1rem;
  }
}
