/* Scoped CSS for Retirement Page - WordPress Ready */

/* Remove WPBakery constraints */
.new-retirement-page {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.new-retirement-page .vc_row,
.new-retirement-page .vc_column-inner,
.new-retirement-page .wpb_column,
.new-retirement-page .wpb_wrapper {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* Base styles */
.new-retirement-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Smooth scrolling */
.new-retirement-page {
  scroll-behavior: smooth;
}

.new-retirement-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Orange text styling */
.new-retirement-page .orange-text {
  color: #ff6b35;
}

/* CTA Button */
.new-retirement-page .cta-button {
  background: #ff6b35 !important;
  color: white !important;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.new-retirement-page .cta-button:hover,
.new-retirement-page .cta-button:focus,
.new-retirement-page .cta-button:active,
.new-retirement-page .cta-button:visited {
  background: #e55a2b !important;
  transform: translateY(-2px);
  color: white !important;
  text-decoration: none !important;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Hero Section - Side by Side Layout */
.new-retirement-page .hero-section {
  padding: 50px 0;
  background: #fff;
  min-height: auto;
  display: flex;
  align-items: center;
}

.new-retirement-page .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.new-retirement-page .hero-left {
  padding-right: 20px;
}

.new-retirement-page .hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #333;
  letter-spacing: -0.02em;
}

.new-retirement-page .hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Retirement Box */
.new-retirement-page .retirement-box {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  border: 2px solid #ff6b35;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-retirement-page .retirement-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
  border-color: #e55a2b;
}

.new-retirement-page .retirement-icon {
  width: 50px;
  height: 50px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.new-retirement-page .retirement-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.new-retirement-page .retirement-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.new-retirement-page .timeline-list {
  text-align: left;
}

.new-retirement-page .timeline-list p {
  color: #666;
  line-height: 1.4;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  padding-left: 1rem;
  position: relative;
}

.new-retirement-page .timeline-list p:before {
  content: "•";
  color: #ff6b35;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Options Section */
.new-retirement-page .options-section {
  padding: 65px 0;
  background: #f8f9fa;
}

.new-retirement-page .options-section h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.new-retirement-page .options-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.new-retirement-page .options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.new-retirement-page .option-card {
  background: white;
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-retirement-page .option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
  border-color: #ff6b35;
}

.new-retirement-page .option-icon {
  width: 55px;
  height: 55px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.new-retirement-page .option-icon svg {
  width: 26px;
  height: 26px;
  color: white;
}

.new-retirement-page .option-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.new-retirement-page .option-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: left;
}

.new-retirement-page .options-cta {
  text-align: center;
}

/* Scenarios Section */
.new-retirement-page .scenarios-section {
  padding: 65px 0;
  background: white;
}

.new-retirement-page .scenarios-section h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.new-retirement-page .scenarios-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.new-retirement-page .scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.new-retirement-page .scenario-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 1.75rem;
  border: 2px solid #ff6b35;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-retirement-page .scenario-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
  border-color: #e55a2b;
}

.new-retirement-page .scenario-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
}

.new-retirement-page .scenario-card p {
  color: #666;
  line-height: 1.5;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.new-retirement-page .scenario-solution {
  background: white;
  padding: 0.75rem;
  border-radius: 8px;
  border-left: 4px solid #ff6b35;
  margin-top: 0.75rem;
}

.new-retirement-page .scenario-solution strong {
  color: #ff6b35;
}

/* Preparation Section */
.new-retirement-page .preparation-section {
  padding: 65px 0;
  background: linear-gradient(135deg, #fef7f0 0%, #fff5ed 100%);
  border-top: 1px solid #f0e6d6;
  border-bottom: 1px solid #f0e6d6;
}

.new-retirement-page .preparation-section h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.new-retirement-page .preparation-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.new-retirement-page .preparation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.new-retirement-page .prep-category {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid #f0e6d6;
}

.new-retirement-page .prep-category h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.new-retirement-page .prep-category ul {
  list-style: none;
  padding: 0;
}

.new-retirement-page .prep-category li {
  color: #666;
  line-height: 1.5;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  padding-left: 1rem;
  position: relative;
}

.new-retirement-page .prep-category li:before {
  content: "•";
  color: #ff6b35;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Expectations Section */
.new-retirement-page .expectations-section {
  padding: 65px 0;
  background: white;
}

.new-retirement-page .expectations-section h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2.5rem;
}

.new-retirement-page .expectations-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.new-retirement-page .expectations-intro {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.new-retirement-page .expectations-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.new-retirement-page .expectation-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.new-retirement-page .expectation-icon {
  width: 38px;
  height: 38px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.new-retirement-page .expectation-icon svg {
  width: 18px;
  height: 18px;
  color: white;
}

.new-retirement-page .expectation-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.4rem;
}

.new-retirement-page .expectation-content p {
  color: #666;
  line-height: 1.5;
  font-size: 0.9rem;
}

.new-retirement-page .consultation-box {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  border: 2px solid #ff6b35;
  height: fit-content;
}

.new-retirement-page .consultation-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.25rem;
}

.new-retirement-page .consultation-box ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 1.75rem;
}

.new-retirement-page .consultation-box li {
  color: #666;
  line-height: 1.5;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  padding-left: 1rem;
  position: relative;
}

.new-retirement-page .consultation-box li:before {
  content: "✓";
  color: #ff6b35;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Snapshot Section */
.new-retirement-page .snapshot-section {
  padding: 65px 0;
  background: #f8f9fa;
  scroll-margin-top: 20px;
}

.new-retirement-page .snapshot-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.new-retirement-page .snapshot-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.new-retirement-page .snapshot-content > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.new-retirement-page .typeform-container {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  min-height: 500px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .new-retirement-page .container {
    padding: 0 20px;
  }
  
  .new-retirement-page .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .new-retirement-page .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .new-retirement-page .hero-left {
    padding-right: 0;
    order: 1;
  }
  
  .new-retirement-page .hero-right {
    order: 2;
  }
  
  .new-retirement-page .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }
  
  .new-retirement-page .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
  }
  
  .new-retirement-page .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    max-width: 280px;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  
  .new-retirement-page .retirement-box {
    padding: 2rem 1.25rem;
  }
  
  .new-retirement-page .options-section,
  .new-retirement-page .scenarios-section,
  .new-retirement-page .preparation-section,
  .new-retirement-page .expectations-section,
  .new-retirement-page .snapshot-section {
    padding: 50px 0;
  }
  
  .new-retirement-page .options-section h2,
  .new-retirement-page .scenarios-section h2,
  .new-retirement-page .preparation-section h2,
  .new-retirement-page .expectations-section h2,
  .new-retirement-page .snapshot-content h2 {
    font-size: 1.9rem;
  }
  
  .new-retirement-page .options-grid,
  .new-retirement-page .scenarios-grid,
  .new-retirement-page .preparation-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .new-retirement-page .option-card,
  .new-retirement-page .scenario-card,
  .new-retirement-page .prep-category {
    padding: 1.75rem 1.25rem;
  }
  
  .new-retirement-page .expectations-content {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  
  .new-retirement-page .consultation-box {
    padding: 1.75rem 1.25rem;
  }
  
  .new-retirement-page .typeform-container {
    padding: 1rem;
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .new-retirement-page .hero-title {
    font-size: 2rem;
  }
  
  .new-retirement-page .container {
    padding: 0 15px;
  }
  
  .new-retirement-page .cta-button {
    max-width: 260px;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
  
  .new-retirement-page .timeline-list p {
    font-size: 0.85rem;
  }
  
  .new-retirement-page .option-icon,
  .new-retirement-page .retirement-icon {
    width: 45px;
    height: 45px;
  }
  
  .new-retirement-page .option-icon svg,
  .new-retirement-page .retirement-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .new-retirement-page .scenario-card,
  .new-retirement-page .prep-category {
    padding: 1.25rem 1rem;
  }
}

/* Scoped CSS for FAQ Page - WordPress Ready */

/* Remove WPBakery constraints */
.new-faq-page {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.new-faq-page .vc_row,
.new-faq-page .vc_column-inner,
.new-faq-page .wpb_column,
.new-faq-page .wpb_wrapper {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* Base styles */
.new-faq-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  scroll-behavior: smooth;
}

.new-faq-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Orange text styling */
.new-faq-page .orange-text {
  color: #ff6b35;
}

/* CTA Button */
.new-faq-page .cta-button {
  background: #ff6b35 !important;
  color: white !important;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.new-faq-page .cta-button:hover,
.new-faq-page .cta-button:focus,
.new-faq-page .cta-button:active,
.new-faq-page .cta-button:visited {
  background: #e55a2b !important;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Hero Section - Side by Side Layout */
.new-faq-page .hero-section {
  padding: 50px 0;
  background: #fff;
  min-height: auto;
  display: flex;
  align-items: center;
}

.new-faq-page .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.new-faq-page .hero-left {
  padding-right: 20px;
}

.new-faq-page .hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #333;
  letter-spacing: -0.02em;
}

.new-faq-page .hero-subtitle-line {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.new-faq-page .hero-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.new-faq-page .hero-description {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Questions Box */
.new-faq-page .questions-box {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  border: 2px solid #ff6b35;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-faq-page .questions-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
  border-color: #e55a2b;
}

.new-faq-page .questions-icon {
  width: 50px;
  height: 50px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.new-faq-page .questions-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.new-faq-page .questions-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.new-faq-page .questions-list {
  text-align: left;
  margin-bottom: 1.25rem;
}

.new-faq-page .questions-list p {
  color: #666;
  line-height: 1.4;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  padding-left: 1rem;
  position: relative;
}

.new-faq-page .questions-list p:before {
  content: "•";
  color: #ff6b35;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.new-faq-page .questions-conclusion {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

/* FAQ Sections */
.new-faq-page .faq-sections {
  padding: 65px 0;
  background: #f8f9fa;
}

.new-faq-page .faq-sections h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.new-faq-page .faq-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

/* FAQ Categories */
.new-faq-page .faq-category {
  background: white;
  border-radius: 16px;
  padding: 2.25rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}

.new-faq-page .category-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.75rem;
  text-align: center;
  border-bottom: 2px solid #ff6b35;
  padding-bottom: 0.875rem;
}

/* FAQ Items */
.new-faq-page .faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 0.875rem;
  transition: all 0.3s ease;
}

.new-faq-page .faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.new-faq-page .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.new-faq-page .faq-question:hover {
  color: #ff6b35;
}

.new-faq-page .faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
  transition: color 0.3s ease;
}

.new-faq-page .faq-question:hover h4 {
  color: #ff6b35;
}

.new-faq-page .toggle-icon {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ff6b35;
  min-width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.new-faq-page .faq-item.active .toggle-icon {
  transform: rotate(180deg);
}

.new-faq-page .faq-answer {
  display: none;
  padding: 0 0 1.25rem 0;
  animation: fadeIn 0.3s ease;
}

.new-faq-page .faq-answer p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.new-faq-page .faq-answer a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
}

.new-faq-page .faq-answer a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* FAQ CTA Section */
.new-faq-page .faq-cta {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid #ff6b35;
  margin-top: 1.75rem;
}

.new-faq-page .faq-cta h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.875rem;
}

.new-faq-page .faq-cta p {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 1.75rem;
}

/* Snapshot Section */
.new-faq-page .snapshot-section {
  padding: 65px 0;
  background: white;
  scroll-margin-top: 20px;
}

.new-faq-page .snapshot-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.new-faq-page .snapshot-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.new-faq-page .snapshot-content > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.new-faq-page .typeform-container {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  min-height: 500px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .new-faq-page .container {
    padding: 0 20px;
  }
  
  .new-faq-page .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .new-faq-page .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .new-faq-page .hero-left {
    padding-right: 0;
    order: 1;
  }
  
  .new-faq-page .hero-right {
    order: 2;
  }
  
  .new-faq-page .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }
  
  .new-faq-page .hero-subtitle-line {
    font-size: 1.9rem;
  }
  
  .new-faq-page .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }
  
  .new-faq-page .hero-description {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .new-faq-page .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    max-width: 280px;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  
  .new-faq-page .questions-box {
    padding: 2rem 1.25rem;
  }
  
  .new-faq-page .faq-sections,
  .new-faq-page .snapshot-section {
    padding: 50px 0;
  }
  
  .new-faq-page .faq-sections h2,
  .new-faq-page .snapshot-content h2 {
    font-size: 1.9rem;
  }
  
  .new-faq-page .faq-category {
    padding: 1.75rem 1.25rem;
  }
  
  .new-faq-page .category-title {
    font-size: 1.5rem;
  }
  
  .new-faq-page .faq-question h4 {
    font-size: 1.05rem;
  }
  
  .new-faq-page .faq-cta {
    padding: 1.75rem 1.25rem;
  }
  
  .new-faq-page .faq-cta h3 {
    font-size: 1.4rem;
  }
  
  .new-faq-page .typeform-container {
    padding: 1rem;
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .new-faq-page .hero-title {
    font-size: 2rem;
  }
  
  .new-faq-page .hero-subtitle-line {
    font-size: 1.5rem;
  }
  
  .new-faq-page .container {
    padding: 0 15px;
  }
  
  .new-faq-page .cta-button {
    max-width: 260px;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
  
  .new-faq-page .questions-list p {
    font-size: 0.85rem;
  }
  
  .new-faq-page .faq-category {
    padding: 1.25rem 1rem;
  }
  
  .new-faq-page .category-title {
    font-size: 1.3rem;
  }
  
  .new-faq-page .faq-question {
    padding: 1rem 0;
  }
  
  .new-faq-page .faq-question h4 {
    font-size: 1rem;
  }
}
/* Scoped CSS for About Us Page - WordPress Ready */

/* Remove WPBakery constraints */
.new-about-page {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.new-about-page .vc_row,
.new-about-page .vc_column-inner,
.new-about-page .wpb_column,
.new-about-page .wpb_wrapper {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* Base styles */
.new-about-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  scroll-behavior: smooth;
}

.new-about-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Orange text styling */
.new-about-page .orange-text {
  color: #ff6b35;
}

/* CTA Button */
.new-about-page .cta-button {
  background: #ff6b35 !important;
  color: white !important;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.new-about-page .cta-button:hover,
.new-about-page .cta-button:focus,
.new-about-page .cta-button:active,
.new-about-page .cta-button:visited {
  background: #e55a2b !important;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Hero Section - Side by Side Layout */
.new-about-page .hero-section {
  padding: 50px 0;
  background: #fff;
  min-height: auto;
  display: flex;
  align-items: center;
}

.new-about-page .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.new-about-page .hero-left {
  padding-right: 20px;
}

.new-about-page .hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #333;
  letter-spacing: -0.02em;
}

.new-about-page .hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Licensed Box with Orange Border */
.new-about-page .licensed-box {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  border: 2px solid #ff6b35;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-about-page .licensed-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
  border-color: #e55a2b;
}

.new-about-page .licensed-icon {
  width: 50px;
  height: 50px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.new-about-page .licensed-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.new-about-page .licensed-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

.new-about-page .licensed-box p {
  color: #666;
  line-height: 1.5;
  font-size: 1.1rem;
}

/* What We Believe Section */
.new-about-page .beliefs-section {
  padding: 65px 0;
  background: linear-gradient(135deg, #fef7f0 0%, #fff5ed 100%);
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

.new-about-page .beliefs-section h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.new-about-page .beliefs-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.new-about-page .beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
}

.new-about-page .belief-card {
  background: white;
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  border: 1px solid #f0e6d6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-about-page .belief-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.new-about-page .belief-icon {
  width: 60px;
  height: 60px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.new-about-page .belief-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.new-about-page .belief-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.875rem;
}

.new-about-page .belief-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.new-about-page .beliefs-cta {
  text-align: center;
}

/* Team Section */
.new-about-page .team-section {
  padding: 65px 0;
  background: white;
}

.new-about-page .team-section h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 3rem;
}

.new-about-page .team-member {
  margin-bottom: 3rem;
}

.new-about-page .member-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.new-about-page .team-member.reverse .member-content {
  grid-template-columns: 1fr 2fr;
}

.new-about-page .member-role {
  color: #ff6b35;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.new-about-page .member-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.25rem;
}

.new-about-page .member-info p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0.875rem;
}

.new-about-page .member-photo {
  text-align: center;
}

/* Team Photo Styling */
.new-about-page .team-photo {
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid #ff6b35;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-about-page .team-photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

/* Fallback for missing photos */
.new-about-page .photo-placeholder {
  background: #f8f9fa;
  border: 2px dashed #ddd;
  border-radius: 16px;
  padding: 2.5rem 1.75rem;
  color: #999;
  font-size: 1rem;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  margin: 0 auto;
}

.new-about-page .team-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Snapshot Section */
.new-about-page .snapshot-section {
  padding: 65px 0;
  background: #f8f9fa;
  scroll-margin-top: 20px;
}

.new-about-page .snapshot-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.new-about-page .snapshot-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.new-about-page .snapshot-content > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.new-about-page .typeform-container {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  min-height: 500px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .new-about-page .container {
    padding: 0 20px;
  }
  
  .new-about-page .hero-section {
    padding: 60px 0;
  }
  
  .new-about-page .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .new-about-page .hero-left {
    padding-right: 0;
    order: 1;
  }
  
  .new-about-page .hero-right {
    order: 2;
  }
  
  .new-about-page .hero-title {
    font-size: 2.3rem;
  }
  
  .new-about-page .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .new-about-page .licensed-box {
    padding: 2rem 1.25rem;
  }
  
  .new-about-page .beliefs-section,
  .new-about-page .team-section,
  .new-about-page .snapshot-section {
    padding: 50px 0;
  }
  
  .new-about-page .beliefs-section h2,
  .new-about-page .team-section h2,
  .new-about-page .snapshot-content h2 {
    font-size: 1.9rem;
  }
  
  .new-about-page .beliefs-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .new-about-page .belief-card {
    padding: 1.75rem 1.25rem;
  }
  
  .new-about-page .member-content {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: center;
  }
  
  .new-about-page .team-member.reverse .member-content {
    grid-template-columns: 1fr;
  }
  
  .new-about-page .member-info h3 {
    font-size: 1.5rem;
  }
  
  .new-about-page .team-photo {
    max-width: 250px;
    height: 250px;
  }
  
  .new-about-page .photo-placeholder {
    min-height: 250px;
    max-width: 250px;
    padding: 2rem 1.25rem;
  }
  
  .new-about-page .typeform-container {
    padding: 1rem;
    min-height: 400px;
  }
  
  .new-about-page .cta-button {
    max-width: 280px;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .new-about-page .hero-title {
    font-size: 1.9rem;
  }
  
  .new-about-page .container {
    padding: 0 15px;
  }
  
  .new-about-page .belief-icon {
    width: 50px;
    height: 50px;
  }
  
  .new-about-page .belief-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .new-about-page .team-photo {
    max-width: 200px;
    height: 200px;
  }
  
  .new-about-page .photo-placeholder {
    min-height: 200px;
    max-width: 200px;
  }
}

/* Scoped CSS for New Homepage - WordPress Ready */

/* Remove WPBakery constraints */
.new-homepage-page {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.new-homepage-page .vc_row,
.new-homepage-page .vc_column-inner,
.new-homepage-page .wpb_column,
.new-homepage-page .wpb_wrapper {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* Base styles */
.new-homepage-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  scroll-behavior: smooth;
}

.new-homepage-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Orange text styling */
.new-homepage-page .orange-text {
  color: #ff6b35;
}

/* CTA Button */
.new-homepage-page .cta-button {
  background: #ff6b35 !important;
  color: white !important;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.new-homepage-page .cta-button:hover,
.new-homepage-page .cta-button:focus,
.new-homepage-page .cta-button:active,
.new-homepage-page .cta-button:visited {
  background: #e55a2b !important;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Hero Section - Side by Side Layout */
.new-homepage-page .hero-section {
  padding: 50px 0;
  background: #fff;
  min-height: auto;
  display: flex;
  align-items: center;
}

.new-homepage-page .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.new-homepage-page .hero-left {
  padding-right: 20px;
}

.new-homepage-page .hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #333;
  letter-spacing: -0.02em;
}

.new-homepage-page .hero-subtitle-line {
  font-size: 2.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
  line-height: 1.2;
}

.new-homepage-page .hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Truly Independent Card */
.new-homepage-page .truly-independent {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  border: 2px solid #ff6b35;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-homepage-page .truly-independent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
  border-color: #e55a2b;
}

.new-homepage-page .compass-icon {
  width: 50px;
  height: 50px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.new-homepage-page .compass-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.new-homepage-page .truly-independent h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

.new-homepage-page .truly-independent p {
  color: #666;
  line-height: 1.5;
  font-size: 1.1rem;
}

/* Stats Section */
.new-homepage-page .stats-section {
  padding: 35px 0;
  background: linear-gradient(135deg, #fef7f0 0%, #fff5ed 100%);
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

.new-homepage-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.new-homepage-page .stat-item {
  padding: 18px;
}

.new-homepage-page .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 0.375rem;
}

.new-homepage-page .stat-label {
  color: #666;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Testimonials Section */
.new-homepage-page .testimonials-section {
  padding: 65px 0;
  background: linear-gradient(135deg, #fef7f0 0%, #fff5ed 100%);
  text-align: center;
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

.new-homepage-page .testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.new-homepage-page .testimonial-stars {
  margin-bottom: 1.75rem;
}

.new-homepage-page .testimonial-stars .star {
  color: #ff6b35;
  font-size: 1.6rem;
  margin: 0 0.2rem;
}

.new-homepage-page .testimonial-quote {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin-bottom: 1.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 1.75rem;
}

.new-homepage-page .testimonial-quote::before {
  content: """;
  font-size: 3.5rem;
  color: #ff6b35;
  position: absolute;
  left: -10px;
  top: -18px;
  font-family: Georgia, serif;
}

.new-homepage-page .testimonial-quote::after {
  content: """;
  font-size: 3.5rem;
  color: #ff6b35;
  position: absolute;
  right: -10px;
  bottom: -35px;
  font-family: Georgia, serif;
}

.new-homepage-page .testimonial-author {
  font-size: 1rem;
  color: #666;
  font-weight: 600;
}

/* Life Situations Section */
.new-homepage-page .life-situations-section {
  padding: 65px 0;
  background: white;
}

.new-homepage-page .life-situations-section h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 2.5rem;
}

.new-homepage-page .situations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 1000px;
  margin: 0 auto;
}

.new-homepage-page .situation-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  border: 1px solid #ff6b35;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-homepage-page .situation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
  border-color: #e55a2b;
}

/* Linked situation card styling */
.new-homepage-page .situation-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.new-homepage-page .situation-card-link:hover,
.new-homepage-page .situation-card-link:focus,
.new-homepage-page .situation-card-link:active,
.new-homepage-page .situation-card-link:visited {
  text-decoration: none;
  color: inherit;
}

.new-homepage-page .situation-card-link .situation-card {
  cursor: pointer;
}

.new-homepage-page .situation-card-link .situation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.25);
  border-color: #e55a2b;
}

.new-homepage-page .situation-icon {
  width: 60px;
  height: 60px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.new-homepage-page .situation-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.new-homepage-page .situation-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.875rem;
}

.new-homepage-page .situation-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Process Section */
.new-homepage-page .process-section {
  padding: 65px 0;
  background: linear-gradient(135deg, #fef7f0 0%, #fff5ed 100%);
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

.new-homepage-page .process-section h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2.5rem;
}

.new-homepage-page .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  padding: 0 40px;
}

.new-homepage-page .step-card {
  background: white;
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  border: 1px solid #f0e6d6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-homepage-page .step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.new-homepage-page .step-number {
  width: 50px;
  height: 50px;
  background: #ff6b35;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.new-homepage-page .step-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.875rem;
}

.new-homepage-page .step-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.new-homepage-page .process-cta {
  text-align: center;
  padding: 0 40px;
}

/* FAQ Section */
.new-homepage-page .faq-section {
  padding: 65px 0;
  background: white;
}

.new-homepage-page .faq-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.new-homepage-page .faq-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.new-homepage-page .faq-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.new-homepage-page .faq-cta {
  text-align: center;
}

/* Snapshot Section */
.new-homepage-page .snapshot-section {
  padding: 65px 0;
  background: #f8f9fa;
  scroll-margin-top: 20px;
}

.new-homepage-page .snapshot-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.new-homepage-page .snapshot-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.new-homepage-page .snapshot-content > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.new-homepage-page .typeform-container {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  min-height: 500px;
}

/* Footer Styles */
.iconic-footer {
  background: #2d3748;
  color: #e2e8f0;
  padding: 60px 0 20px;
}

.iconic-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.iconic-footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.iconic-footer .footer-left {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.iconic-footer .footer-section h4 {
  color: #ff6b35;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.iconic-footer .footer-section p {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.iconic-footer .footer-section a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.iconic-footer .footer-section a:hover {
  color: #ff6b35;
}

.iconic-footer .footer-right {
  text-align: center;
}

.iconic-footer .footer-logo {
  margin-bottom: 2rem;
}

.iconic-footer .logo-image {
  max-height: 60px;
  width: auto;
}

.iconic-footer .social-links h4 {
  color: #ff6b35;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.iconic-footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.iconic-footer .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.iconic-footer .social-link:hover {
  background: #ff6b35;
  transform: translateY(-2px);
}

.iconic-footer .social-link svg {
  width: 20px;
  height: 20px;
}

.iconic-footer .footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 20px;
}

.iconic-footer .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.iconic-footer .privacy-link {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.iconic-footer .privacy-link:hover {
  color: #ff6b35;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .new-homepage-page .container {
    padding: 0 20px;
  }
  
  .new-homepage-page .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .new-homepage-page .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .new-homepage-page .hero-left {
    padding-right: 0;
    order: 1;
  }
  
  .new-homepage-page .hero-right {
    order: 2;
  }
  
  .new-homepage-page .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }
  
  .new-homepage-page .hero-subtitle-line {
    font-size: 1.9rem;
  }
  
  .new-homepage-page .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
  }
  
  .new-homepage-page .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    max-width: 280px;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  
  .new-homepage-page .truly-independent {
    padding: 2rem 1.25rem;
  }
  
  .new-homepage-page .stats-section {
    padding: 25px 0;
  }
  
  .new-homepage-page .stats-grid {
    gap: 10px;
    padding: 0 20px;
  }
  
  .new-homepage-page .stat-item {
    padding: 15px 5px;
  }
  
  .new-homepage-page .stat-number {
    font-size: 1.4rem;
  }
  
  .new-homepage-page .stat-label {
    font-size: 0.75rem;
  }
  
  .new-homepage-page .testimonials-section {
    padding: 50px 0;
  }
  
  .new-homepage-page .testimonial-container {
    padding: 0 20px;
  }
  
  .new-homepage-page .testimonial-stars .star {
    font-size: 1.4rem;
  }
  
  .new-homepage-page .testimonial-quote {
    font-size: 1.05rem;
    padding: 0 1rem;
  }
  
  .new-homepage-page .testimonial-quote::before,
  .new-homepage-page .testimonial-quote::after {
    font-size: 2.8rem;
  }
  
  .new-homepage-page .testimonial-quote::before {
    left: -5px;
    top: -12px;
  }
  
  .new-homepage-page .testimonial-quote::after {
    right: -5px;
    bottom: -25px;
  }
  
  .new-homepage-page .life-situations-section,
  .new-homepage-page .process-section,
  .new-homepage-page .faq-section,
  .new-homepage-page .snapshot-section {
    padding: 50px 0;
  }
  
  .new-homepage-page .life-situations-section h2,
  .new-homepage-page .process-section h2,
  .new-homepage-page .faq-content h2,
  .new-homepage-page .snapshot-content h2 {
    font-size: 1.9rem;
  }
  
  .new-homepage-page .situations-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .new-homepage-page .situation-card {
    padding: 1.75rem 1.25rem;
  }
  
  .new-homepage-page .situation-icon {
    width: 50px;
    height: 50px;
  }
  
  .new-homepage-page .situation-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .new-homepage-page .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding: 0 20px;
  }
  
  .new-homepage-page .step-card {
    padding: 1.75rem 1.25rem;
  }
  
  .new-homepage-page .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .new-homepage-page .process-cta {
    padding: 0 20px;
  }
  
  .new-homepage-page .typeform-container {
    padding: 1rem;
    min-height: 400px;
  }
  
  .iconic-footer .container {
    padding: 0 20px;
  }
  
  .iconic-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .iconic-footer .footer-left {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .iconic-footer .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .new-homepage-page .hero-title {
    font-size: 2rem;
  }
  
  .new-homepage-page .hero-subtitle-line {
    font-size: 1.5rem;
  }
  
  .new-homepage-page .container {
    padding: 0 15px;
  }
  
  .new-homepage-page .cta-button {
    max-width: 260px;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
  
  .new-homepage-page .stats-grid,
  .new-homepage-page .testimonial-container,
  .new-homepage-page .steps-grid,
  .new-homepage-page .process-cta {
    padding: 0 15px;
  }
  
  .iconic-footer .container {
    padding: 0 15px;
  }
}


/* Scoped CSS for Financial Planners Page - WordPress Ready */

/* Remove WPBakery constraints */
.new-financial-planners-page {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.new-financial-planners-page .vc_row,
.new-financial-planners-page .vc_column-inner,
.new-financial-planners-page .wpb_column,
.new-financial-planners-page .wpb_wrapper {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* Base styles */
.new-financial-planners-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  scroll-behavior: smooth;
}

.new-financial-planners-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Orange text styling */
.new-financial-planners-page .orange-text {
  color: #ff6b35;
}

/* CTA Button */
.new-financial-planners-page .cta-button {
  background: #ff6b35 !important;
  color: white !important;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.new-financial-planners-page .cta-button:hover,
.new-financial-planners-page .cta-button:focus,
.new-financial-planners-page .cta-button:active,
.new-financial-planners-page .cta-button:visited {
  background: #e55a2b !important;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Hero Section - Side by Side Layout */
.new-financial-planners-page .hero-section {
  padding: 50px 0;
  background: #fff;
  min-height: auto;
  display: flex;
  align-items: center;
}

.new-financial-planners-page .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.new-financial-planners-page .hero-left {
  padding-right: 20px;
}

.new-financial-planners-page .hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #333;
  letter-spacing: -0.02em;
}

.new-financial-planners-page .hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Partnership Box */
.new-financial-planners-page .partnership-box {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  border: 2px solid #ff6b35;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-financial-planners-page .partnership-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
  border-color: #e55a2b;
}

.new-financial-planners-page .partnership-icon {
  width: 50px;
  height: 50px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.new-financial-planners-page .partnership-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.new-financial-planners-page .partnership-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

.new-financial-planners-page .partnership-box p {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
  margin-bottom: 0.875rem;
}

.new-financial-planners-page .states-list p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.875rem;
}

.new-financial-planners-page .partnership-note {
  color: #ff6b35;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.875rem;
}

/* CE Credits Section - Updated to match Partnership Process styling */
.new-financial-planners-page .ce-credits-section {
  padding: 80px 0; /* More room above and below */
  background: white; /* White background like Partnership Process */
}

.new-financial-planners-page .ce-credits-section h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.new-financial-planners-page .ce-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3.5rem; /* More space before cards */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* CE Webinar Grid - Better spacing */
.new-financial-planners-page .ce-webinar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem; /* Increased gap between cards */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.new-financial-planners-page .webinar-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem; /* Better internal padding */
  border: 2px solid #ff6b35;
  position: relative;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-financial-planners-page .webinar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.new-financial-planners-page .webinar-badge {
  background: #ff6b35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  position: absolute;
  top: -10px;
  left: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.new-financial-planners-page .webinar-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.75rem; /* More space after title */
  margin-top: 1.25rem; /* More space from badge */
  line-height: 1.3;
}

.new-financial-planners-page .webinar-details {
  margin-bottom: 2.25rem; /* More space before button */
}

.new-financial-planners-page .webinar-detail {
  color: #666;
  margin-bottom: 1rem; /* More space between details */
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.new-financial-planners-page .webinar-detail strong {
  color: #333;
  min-width: 110px; /* Slightly wider for better alignment */
  display: inline-block;
  font-weight: 600;
}

.new-financial-planners-page .webinar-register-btn {
  background: #ff6b35 !important;
  color: white !important;
  padding: 1.1rem 2rem; /* Slightly more padding */
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  letter-spacing: 0.5px;
}

.new-financial-planners-page .webinar-register-btn:hover,
.new-financial-planners-page .webinar-register-btn:focus,
.new-financial-planners-page .webinar-register-btn:active,
.new-financial-planners-page .webinar-register-btn:visited {
  background: #e55a2b !important;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Mobile responsive for webinar cards */
@media (max-width: 768px) {
  .new-financial-planners-page .ce-credits-section {
    padding: 60px 0;
  }
  
  .new-financial-planners-page .ce-credits-section h2 {
    font-size: 1.9rem;
  }
  
  .new-financial-planners-page .ce-intro {
    margin-bottom: 2.5rem;
    padding: 0 20px;
  }
  
  .new-financial-planners-page .ce-webinar-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 20px;
  }
  
  .new-financial-planners-page .webinar-card {
    padding: 2rem 1.5rem;
  }
  
  .new-financial-planners-page .webinar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .new-financial-planners-page .webinar-detail {
    font-size: 0.95rem;
    margin-bottom: 0.875rem;
  }
  
  .new-financial-planners-page .webinar-detail strong {
    min-width: 100px;
  }
  
  .new-financial-planners-page .webinar-details {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .new-financial-planners-page .ce-webinar-grid {
    padding: 0 15px;
  }
  
  .new-financial-planners-page .webinar-card {
    padding: 1.75rem 1.25rem;
  }
  
  .new-financial-planners-page .webinar-card h3 {
    font-size: 1.1rem;
  }
  
  .new-financial-planners-page .webinar-register-btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .new-financial-planners-page .webinar-detail strong {
    min-width: 90px;
  }
}




/* Ideal Clients Section */
.new-financial-planners-page .ideal-clients-section {
  padding: 65px 0;
  background: #f8f9fa;
}

.new-financial-planners-page .ideal-clients-section h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.new-financial-planners-page .ideal-clients-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.new-financial-planners-page .clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.new-financial-planners-page .client-card {
  background: white;
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-financial-planners-page .client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
  border-color: #ff6b35;
}

.new-financial-planners-page .client-icon {
  width: 60px;
  height: 60px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.new-financial-planners-page .client-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.new-financial-planners-page .client-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.875rem;
}

.new-financial-planners-page .client-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: left;
  margin-bottom: 1.25rem;
}

.new-financial-planners-page .client-profile {
  background: #fef7f0;
  padding: 0.875rem;
  border-radius: 8px;
  border-left: 4px solid #ff6b35;
  text-align: left;
}

.new-financial-planners-page .client-profile strong {
  color: #ff6b35;
}

/* Partnership Process Section - Updated Header Styling */
.new-financial-planners-page .process-section {
  padding: 80px 0; /* More room above and below like CE Credits */
  background: white; /* White background like other sections */
}

.new-financial-planners-page .process-section h2 {
  text-align: center; /* Center the title like CE Credits */
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.new-financial-planners-page .process-intro {
  text-align: center; /* Center the subtitle like CE Credits */
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3.5rem; /* More space before grid like CE Credits */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Partnership Process - 2x2 Grid with Proper Number Alignment */
.new-financial-planners-page .process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.new-financial-planners-page .process-step {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-financial-planners-page .process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.new-financial-planners-page .step-number {
  background: #ff6b35;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0;
}

.new-financial-planners-page .step-content {
  flex: 1;
  padding-top: 4px;
}

.new-financial-planners-page .step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
  margin-top: 0;
  line-height: 1.3;
}

.new-financial-planners-page .step-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .new-financial-planners-page .process-section {
    padding: 60px 0;
  }
  
  .new-financial-planners-page .process-section h2 {
    font-size: 1.9rem;
  }
  
  .new-financial-planners-page .process-intro {
    margin-bottom: 2.5rem;
    padding: 0 20px;
  }
  
  .new-financial-planners-page .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 20px;
  }
  
  .new-financial-planners-page .process-step {
    padding: 1.5rem;
  }
  
  .new-financial-planners-page .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .new-financial-planners-page .step-content h3 {
    font-size: 1.2rem;
  }
  
  .new-financial-planners-page .step-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .new-financial-planners-page .process-steps {
    padding: 0 15px;
  }
  
  .new-financial-planners-page .process-step {
    padding: 1.25rem;
    gap: 1rem;
  }
  
  .new-financial-planners-page .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .new-financial-planners-page .step-content {
    padding-top: 2px;
  }
}




/* Testimonials Section */
.new-financial-planners-page .testimonials-section {
  padding: 65px 0;
  background: linear-gradient(135deg, #fef7f0 0%, #fff5ed 100%);
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

.new-financial-planners-page .testimonials-section h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.new-financial-planners-page .testimonials-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.new-financial-planners-page .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.new-financial-planners-page .testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.new-financial-planners-page .testimonial-content {
  flex: 1;
  margin-bottom: 1.25rem;
}

.new-financial-planners-page .testimonial-content p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  font-style: italic;
}

.new-financial-planners-page .testimonial-author h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

.new-financial-planners-page .testimonial-author p {
  color: #ff6b35;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Email Template Section */
.new-financial-planners-page .email-template-section {
  padding: 65px 0;
  background: white;
}

.new-financial-planners-page .email-template-section h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.new-financial-planners-page .email-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.new-financial-planners-page .email-template {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  max-width: 800px;
  margin: 0 auto;
}

.new-financial-planners-page .email-header {
  background: #f8f9fa;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid #eee;
}

.new-financial-planners-page .email-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.new-financial-planners-page .email-body {
  padding: 1.75rem;
  line-height: 1.6;
}

.new-financial-planners-page .email-body p {
  color: #666;
  margin-bottom: 0.875rem;
  font-size: 0.95rem;
}

.new-financial-planners-page .email-body a {
  color: #ff6b35;
  text-decoration: none;
}

.new-financial-planners-page .email-body a:hover {
  text-decoration: underline;
}

.new-financial-planners-page .email-copy-button {
  padding: 1.25rem 1.75rem;
  background: #f8f9fa;
  border-top: 1px solid #eee;
  text-align: center;
}

.new-financial-planners-page .copy-button {
  background: #ff6b35;
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.new-financial-planners-page .copy-button:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Resources Section */
.new-financial-planners-page .resources-section {
  padding: 65px 0;
  background: #f8f9fa;
}

.new-financial-planners-page .resources-section h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.new-financial-planners-page .resources-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.new-financial-planners-page .resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.new-financial-planners-page .resource-card {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-financial-planners-page .resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
  border-color: #ff6b35;
}

.new-financial-planners-page .resource-icon {
  width: 50px;
  height: 50px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.new-financial-planners-page .resource-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.new-financial-planners-page .resource-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.875rem;
}

.new-financial-planners-page .resource-card p {
  color: #666;
  line-height: 1.5;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.new-financial-planners-page .resource-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.new-financial-planners-page .resource-link:hover {
  text-decoration: underline;
}

/* CTA Section */
.new-financial-planners-page .cta-section {
  padding: 65px 0;
  background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
  color: white;
  text-align: center;
}

.new-financial-planners-page .cta-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.new-financial-planners-page .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  opacity: 0.9;
}

.new-financial-planners-page .cta-section .cta-button {
  background: white;
  color: #ff6b35;
}

.new-financial-planners-page .cta-section .cta-button:hover {
  background: #f8f9fa;
  color: #e55a2b;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .new-financial-planners-page .container {
    padding: 0 20px;
  }
  
  .new-financial-planners-page .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .new-financial-planners-page .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .new-financial-planners-page .hero-left {
    padding-right: 0;
    order: 1;
  }
  
  .new-financial-planners-page .hero-right {
    order: 2;
  }
  
  .new-financial-planners-page .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }
  
  .new-financial-planners-page .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
  }
  
  .new-financial-planners-page .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    max-width: 280px;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  
  .new-financial-planners-page .partnership-box {
    padding: 2rem 1.25rem;
  }
  
  .new-financial-planners-page .ce-credits-section,
  .new-financial-planners-page .ideal-clients-section,
  .new-financial-planners-page .process-section,
  .new-financial-planners-page .testimonials-section,
  .new-financial-planners-page .email-template-section,
  .new-financial-planners-page .resources-section,
  .new-financial-planners-page .cta-section {
    padding: 50px 0;
  }
  
  .new-financial-planners-page .ce-credits-section h2,
  .new-financial-planners-page .ideal-clients-section h2,
  .new-financial-planners-page .process-section h2,
  .new-financial-planners-page .testimonials-section h2,
  .new-financial-planners-page .email-template-section h2,
  .new-financial-planners-page .resources-section h2,
  .new-financial-planners-page .cta-content h2 {
    font-size: 1.9rem;
  }
  
  .new-financial-planners-page .ce-calendly-grid,
  .new-financial-planners-page .clients-grid,
  .new-financial-planners-page .process-steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .new-financial-planners-page .ce-calendly-grid {
    padding: 0 20px;
  }
  
  .new-financial-planners-page .testimonials-grid,
  .new-financial-planners-page .resources-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 20px;
  }
  
  .new-financial-planners-page .client-card,
  .new-financial-planners-page .process-step {
    padding: 1.5rem 1.25rem;
  }
  
  .new-financial-planners-page .email-template {
    margin: 0 10px;
  }
  
  .new-financial-planners-page .email-body {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .new-financial-planners-page .hero-title {
    font-size: 2rem;
  }
  
  .new-financial-planners-page .container {
    padding: 0 15px;
  }
  
  .new-financial-planners-page .cta-button {
    max-width: 260px;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
  
  .new-financial-planners-page .states-list p {
    font-size: 0.8rem;
  }
  
  .new-financial-planners-page .ce-calendly-grid,
  .new-financial-planners-page .testimonials-grid,
  .new-financial-planners-page .resources-grid {
    padding: 0 15px;
  }
  
  .new-financial-planners-page .client-card,
  .new-financial-planners-page .resource-card {
    padding: 1.25rem 1rem;
  }
  
  .new-financial-planners-page .email-template {
    margin: 0 5px;
  }
}

/* Partnership CTA Section */
.new-financial-planners-page .partnership-cta-section {
  padding: 50px 0;
  background: #f8f9fa;
  text-align: center;
}

.new-financial-planners-page .partnership-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.new-financial-planners-page .partnership-cta-button {
  background: #ff6b35 !important;
  color: white !important;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.new-financial-planners-page .partnership-cta-button:hover,
.new-financial-planners-page .partnership-cta-button:focus,
.new-financial-planners-page .partnership-cta-button:active,
.new-financial-planners-page .partnership-cta-button:visited {
  background: #e55a2b !important;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .new-financial-planners-page .partnership-cta-section {
    padding: 40px 0;
  }
  
  .new-financial-planners-page .partnership-cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    max-width: 280px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .new-financial-planners-page .partnership-cta-button {
    max-width: 260px;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* Remove line between Resources and Footer */
.new-financial-planners-page .resources-section {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}

/* Universal Footer Styles

/* Also ensure footer has no top border */
.footer-section,
footer {
  border-top: none !important;
  margin-top: 0 !important;
}

.iconic-footer {
  background: #2d3748;
  color: white;
  padding: 60px 0 0;
  margin-top: 80px;
}

.iconic-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.iconic-footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 40px;
}

/* Left Side - Contact Information */
.iconic-footer .footer-left {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.iconic-footer .footer-section h4 {
  color: #ff6b35;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.iconic-footer .footer-section p {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.iconic-footer .footer-section a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.iconic-footer .footer-section a:hover {
  color: #ff6b35;
}

/* Right Side - Logo and Social */
.iconic-footer .footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
}

.iconic-footer .footer-logo {
  text-align: right;
}

.iconic-footer .logo-image {
  max-height: 60px;
  width: auto;
}

/* Social Links */
.iconic-footer .social-links {
  text-align: right;
}

.iconic-footer .social-links h4 {
  color: #ff6b35;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0;
}

.iconic-footer .social-icons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.iconic-footer .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  color: white; /* NEW - pure white */
  background: rgba(255, 255, 255, 0.1); /* Light white background */
  transition: all 0.3s ease;
  text-decoration: none;
}

.iconic-footer .social-link:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-2px);
}

.iconic-footer .social-link svg {
  width: 20px;
  height: 20px;
}

/* Footer Bottom */
.iconic-footer .footer-bottom {
  border-top: 1px solid #4a5568;
  padding: 20px 0;
}

.iconic-footer .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.iconic-footer .footer-bottom p {
  color: #a0aec0;
  font-size: 0.9rem;
  margin: 0;
}

.iconic-footer .privacy-link {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.iconic-footer .privacy-link:hover {
  color: #ff6b35;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .iconic-footer {
    padding: 40px 0 0;
    margin-top: 60px;
  }
  
  .iconic-footer .container {
    padding: 0 20px;
  }
  
  .iconic-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .iconic-footer .footer-left {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .iconic-footer .footer-right {
    align-items: center;
  }
  
  .iconic-footer .social-links {
    text-align: center;
  }
  
  .iconic-footer .social-icons {
    justify-content: center;
  }
  
  .iconic-footer .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .iconic-footer .container {
    padding: 0 15px;
  }
  
  .iconic-footer .footer-content {
    gap: 2rem;
  }
  
  .iconic-footer .footer-left {
    gap: 1.25rem;
  }
  
  .iconic-footer .social-icons {
    gap: 0.75rem;
  }
  
  .iconic-footer .social-link {
    width: 36px;
    height: 36px;
  }
  
  .iconic-footer .social-link svg {
    width: 18px;
    height: 18px;
  }
}