/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}
.lang-switcher .lang-btn {
  background: transparent;
  border: 1px solid rgba(127, 176, 105, 0.5);
  color: #6B9B5C;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  transition: all 0.2s ease;
}
.lang-switcher .lang-btn:hover {
  background: rgba(127, 176, 105, 0.1);
}
.lang-switcher .lang-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(127, 176, 105, 0.25);
}
.lang-switcher .lang-btn.active {
  background: #7FB069;
  border-color: #7FB069;
  color: #fff;
  box-shadow: 0 4px 12px rgba(127, 176, 105, 0.25);
}
.lang-switcher-desktop { display: none; margin-left: 12px; }

/* Mobile menu placement */
.nav-menu .lang-switcher-mobile {
  display: none;
  padding: 12px 0;
  border-top: 1px solid rgba(127, 176, 105, 0.1);
  margin-top: 12px;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 768px) {
  .nav-menu .lang-switcher-mobile { display: flex; }
}

@media (min-width: 769px) {
  .lang-switcher-desktop { display: flex; }
  .nav-menu .lang-switcher-mobile { display: none; }
}
/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Nunito+Sans:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #7FB069, #6B9B5C);
    color: white;
    border-color: #7FB069;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6B9B5C, #5A8A4D);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(127, 176, 105, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #7FB069;
    border-color: #7FB069;
}

.btn-secondary:hover {
    background: #7FB069;
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #7FB069;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(127, 176, 105, 0.2);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 1rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: rgba(127, 176, 105, 0.1);
    color: #7FB069;
    border-left-color: #7FB069;
}

.nav-link {
    font-weight: 500;
    color: #333;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #7FB069;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #7FB069;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Prevent permanent underline on the Mindfulness dropdown toggle when active */
.nav-dropdown .dropdown-toggle.active::after {
    width: 0;
}

.nav-dropdown .dropdown-toggle.active:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 50%, #f0faf0 100%); /* Enhanced fallback gradient */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease;
    display: block;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(248, 253, 248, 0.7) 0%, 
        rgba(240, 250, 240, 0.6) 50%, 
        rgba(235, 245, 235, 0.8) 100%);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    text-align: center;
    position: relative;
    z-index: 3;
    animation: heroContainerFade 1s ease-out;
}

/* Enhanced Hero Content Styling */
.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
}

.hero-left {
    text-align: left;
}

.hero-right {
    position: relative;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(127, 176, 105, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: #7FB069;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(127, 176, 105, 0.2);
    box-shadow: 0 4px 20px rgba(127, 176, 105, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight {
    background: linear-gradient(135deg, #7FB069 0%, #6B9B5C 50%, #5A8A4D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #7FB069, transparent);
    border-radius: 2px;
    animation: highlightGlow 2s ease-in-out infinite alternate;
}

/* Hero Subtitle */
.hero-subtitle {
    margin-bottom: 2.5rem;
}

.hero-subtitle h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.credential {
    background: linear-gradient(135deg, #7FB069, #6B9B5C);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(127, 176, 105, 0.3);
}

.title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #7FB069, #6B9B5C);
    margin: 1rem 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(127, 176, 105, 0.2);
}

.profession {
    font-size: 1.2rem;
    color: #7F8C8D;
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

/* Hero Description */
.hero-description {
    margin-bottom: 3rem;
    max-width: 600px;
}

.main-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 500;
}

.main-description strong {
    color: #7FB069;
    font-weight: 600;
}

.sub-description {
    font-size: 1.1rem;
    color: #7F8C8D;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}


/* Enhanced Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(127, 176, 105, 0.4);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-hero:hover .btn-icon {
    transform: translateX(3px);
}


/* Hero Sidebar Styling */
.hero-sidebar {
    position: sticky;
    top: 140px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.sidebar-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(127, 176, 105, 0.15);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(127, 176, 105, 0.1);
}

.section-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.section-header .icon {
    background: linear-gradient(135deg, #7FB069, #6B9B5C);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(127, 176, 105, 0.05), rgba(107, 155, 92, 0.05));
}

.stats-grid {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(127, 176, 105, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #7FB069;
    transform: scale(1.05);
    background: rgba(127, 176, 105, 0.05);
}

.stat-card .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #7FB069;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(127, 176, 105, 0.2);
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: #7F8C8D;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.02), rgba(127, 140, 141, 0.02));
}

.trust-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border-left: 4px solid #7FB069;
    transition: all 0.3s ease;
}

.trust-card:hover {
    background: rgba(127, 176, 105, 0.05);
    transform: translateX(5px);
    border-left-color: #5A8A4D;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7FB069, #6B9B5C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(127, 176, 105, 0.3);
}

.trust-content h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.trust-content p {
    color: #7F8C8D;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
}

/* Horizontal Credentials (below hero) */
.hero-credentials {
    margin-top: 2rem;
    padding: 0 20px;
}

.credentials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-header-horizontal h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.section-header-horizontal .icon {
    background: linear-gradient(135deg, #7FB069, #6B9B5C);
}

.trust-cards-row {
    flex-direction: row;
    gap: 1.5rem;
}

.trust-cards-row .trust-card {
    flex: 1 1 0;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7FB069;
    font-weight: 600;
    border: 3px dashed #7FB069;
    opacity: 0.7;
}

.professional-headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.professional-headshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(127, 176, 105, 0.2);
}

/* Icon Container Adjustments */
.service-icon,
.approach-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.contact-item h3 .icon {
    margin-right: 0.5rem;
    vertical-align: middle;
}

.military-card h3 .icon,
.education-section h3 .icon,
.certifications-section h3 .icon,
.mindfulness-section h3 .icon {
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Mindfulness title styling */
.mindfulness-title {
    display: inline;
}

.mindfulness-title br {
    display: none;
}

.training-text {
    display: inline;
}

.section-title .icon {
    margin-right: 0.5rem;
    vertical-align: middle;
}

.schedule-header h3 .icon,
.cost-header h3 .icon,
.registration-card h3 .icon,
.insurance-note h4 .icon,
.format-card h2 .icon,
.commitment-card h3 .icon {
    margin-right: 0.5rem;
    vertical-align: middle;
}

.safety-card h3 .icon,
.myth-card h3 .icon {
    margin-right: 0.5rem;
    vertical-align: middle;
}

.payment-option .icon {
    margin-right: 0.5rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 253, 248, 0.55) 0%, rgba(232, 245, 232, 0.55) 100%), url('assets/images/background-abstract3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Background line designs for services section - Parallel diagonal lines */
.services::before,
.services::after,
.services .container::before,
.services .container::after,
.services .section-title::before,
.services .section-title::after,
.services .section-subtitle::before,
.services .section-subtitle::after,
.services .services-grid::before,
.services .services-grid::after,
.service-card:nth-child(1)::before,
.service-card:nth-child(2)::before,
.service-card:nth-child(3)::before,
.service-card:nth-child(1)::after,
.service-card:nth-child(2)::after,
.service-card:nth-child(3)::after,
.services .container:nth-child(1)::before,
.services .container:nth-child(1)::after,
.services .section-title:nth-child(1)::before,
.services .section-subtitle:nth-child(1)::before,
.services .services-grid:nth-child(1)::before,
.services .services-grid:nth-child(1)::after,
.services .container:first-child::before,
.services .container:first-child::after {
    content: none;
}

/* Additional parallel diagonal lines */
.services .container::before {
    content: '';
    position: absolute;
    bottom: 30%;
    left: -20%;
    width: 140%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 40%, #5A8A4D 60%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.2;
    z-index: 1;
    border-radius: 1px;
}

.services .container::after {
    content: '';
    position: absolute;
    bottom: 50%;
    left: -20%;
    width: 140%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #6B9B5C 35%, #7FB069 65%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.15;
    z-index: 1;
    border-radius: 1px;
}

/* Additional parallel lines using new pseudo-elements */
.services .section-title::before {
    content: '';
    position: absolute;
    bottom: -200%;
    left: -50%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 20%, #6B9B5C 80%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.2;
    z-index: 1;
    border-radius: 1px;
}

.services .section-subtitle::before {
    content: '';
    position: absolute;
    bottom: -300%;
    left: -50%;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #5A8A4D 30%, #7FB069 70%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.15;
    z-index: 1;
    border-radius: 1px;
}

/* More parallel diagonal lines */
.services .section-title::after {
    content: '';
    position: absolute;
    bottom: -400%;
    left: -50%;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #6B9B5C 25%, #7FB069 75%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.12;
    z-index: 1;
    border-radius: 1px;
}

.services .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -500%;
    left: -50%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 35%, #5A8A4D 65%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.18;
    z-index: 1;
    border-radius: 1px;
}

.services .services-grid::before {
    content: '';
    position: absolute;
    bottom: 70%;
    left: -25%;
    width: 150%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #5A8A4D 40%, #7FB069 60%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.1;
    z-index: 1;
    border-radius: 1px;
}

.services .services-grid::after {
    content: '';
    position: absolute;
    bottom: 85%;
    left: -25%;
    width: 150%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 30%, #6B9B5C 70%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.08;
    z-index: 1;
    border-radius: 1px;
}

/* Extra lines for denser pattern */
.services-grid {
    position: relative;
}

/* Additional dense parallel lines */
.service-card:nth-child(1)::before {
    content: '';
    position: absolute;
    bottom: 200%;
    left: -100%;
    width: 300%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #6B9B5C 20%, #7FB069 80%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.06;
    z-index: 1;
    border-radius: 1px;
}

.service-card:nth-child(2)::before {
    content: '';
    position: absolute;
    bottom: 180%;
    left: -100%;
    width: 300%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 25%, #5A8A4D 75%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.07;
    z-index: 1;
    border-radius: 1px;
}

.service-card:nth-child(3)::before {
    content: '';
    position: absolute;
    bottom: 160%;
    left: -100%;
    width: 300%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #5A8A4D 30%, #6B9B5C 70%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.05;
    z-index: 1;
    border-radius: 1px;
}

/* More background lines at different positions */
.service-card:nth-child(1)::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 300%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 40%, #6B9B5C 60%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.04;
    z-index: 1;
    border-radius: 1px;
}

.service-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: -70%;
    left: -100%;
    width: 300%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #6B9B5C 35%, #7FB069 65%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.06;
    z-index: 1;
    border-radius: 1px;
}

.service-card:nth-child(3)::after {
    content: '';
    position: absolute;
    top: -90%;
    left: -100%;
    width: 300%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #5A8A4D 45%, #7FB069 55%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.03;
    z-index: 1;
    border-radius: 1px;
}

/* Top-right area diagonal lines to fill the gap */
.services .container:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 5%;
    left: -30%;
    width: 160%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 40%, #6B9B5C 60%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.15;
    z-index: 1;
    border-radius: 1px;
}

.services .container:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 15%;
    left: -30%;
    width: 160%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #6B9B5C 35%, #7FB069 65%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.12;
    z-index: 1;
    border-radius: 1px;
}

/* Additional top-right coverage lines */
.services .section-title:nth-child(1)::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -40%;
    width: 180%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #5A8A4D 30%, #7FB069 70%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.1;
    z-index: 1;
    border-radius: 1px;
}

.services .section-subtitle:nth-child(1)::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -40%;
    width: 180%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 25%, #6B9B5C 75%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.08;
    z-index: 1;
    border-radius: 1px;
}

/* Extra coverage for top-right corner */
.services .services-grid:nth-child(1)::before {
    content: '';
    position: absolute;
    top: -15%;
    left: -50%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #6B9B5C 20%, #7FB069 80%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.18;
    z-index: 1;
    border-radius: 1px;
}

.services .services-grid:nth-child(1)::after {
    content: '';
    position: absolute;
    top: -5%;
    left: -50%;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 45%, #5A8A4D 55%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.14;
    z-index: 1;
    border-radius: 1px;
}

/* Dedicated right-side coverage lines using unique selectors */
.services .container:first-child::before {
    content: '';
    position: absolute;
    top: 25%;
    left: -50%;
    width: 220%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 30%, #6B9B5C 70%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.2;
    z-index: 1;
    border-radius: 1px;
}

.services .container:first-child::after {
    content: '';
    position: absolute;
    top: 45%;
    left: -50%;
    width: 220%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #6B9B5C 25%, #7FB069 75%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.16;
    z-index: 1;
    border-radius: 1px;
}

/* Additional right-side lines at different heights */
.services .section-title::after {
    content: '';
    position: absolute;
    top: 150%;
    left: -60%;
    width: 220%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #5A8A4D 40%, #7FB069 60%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.12;
    z-index: 1;
    border-radius: 1px;
}

.services .section-subtitle::after {
    content: '';
    position: absolute;
    top: 200%;
    left: -60%;
    width: 220%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 35%, #6B9B5C 65%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.1;
    z-index: 1;
    border-radius: 1px;
}

/* More right-side coverage */
.service-card:first-child::before {
    content: '';
    position: absolute;
    top: -200%;
    left: -150%;
    width: 400%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #6B9B5C 20%, #7FB069 80%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.08;
    z-index: 1;
    border-radius: 1px;
}

.service-card:last-child::after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: -150%;
    width: 400%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 25%, #5A8A4D 75%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.06;
    z-index: 1;
    border-radius: 1px;
}

/* Ensure container has relative positioning for pseudo-elements */
.services .container {
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    z-index: 2;
}

/* Ensure reading section content appears above background */
.reading-section .section-title,
.reading-section .section-subtitle {
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Force 2 columns on large screens */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: #fff;
    padding: 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(127, 176, 105, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-placeholder {
    transform: scale(1.05);
}

/* Adjust focal point for Mindfulness Workshops and Mindfulness Meditation images */
.services-grid .service-card:nth-child(3) .service-placeholder,
.services-grid .service-card:nth-child(4) .service-placeholder {
    object-position: center 15%;
}

.service-content {
    padding: 2.5rem;
}

.service-icon {
    margin-bottom: 1.5rem;
}

.icon-placeholder {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: #7FB069;
    font-weight: 600;
    font-size: 1.1rem;
}

.service-link:hover {
    color: #6B9B5C;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
    position: relative;
    overflow: hidden;
}

/* Triangular green fills for About Christiane Roy section */
.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 50%;
    background: #7FB069;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    opacity: 0.1;
    z-index: 1;
}

.about-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 50%;
    background: #7FB069;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    opacity: 0.1;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.credentials-preview h3 {
    color: #7FB069;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.credentials-preview ul {
    list-style: none;
    margin-bottom: 2rem;
}

.credentials-preview li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.credentials-preview li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7FB069;
    font-weight: bold;
}

.about-image .image-placeholder,
.about-image .professional-headshot {
    width: 300px;
    height: 350px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

/* Background decorative elements */
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 40%;
    background: rgba(127, 176, 105, 0.05);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 80%);
    z-index: 1;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25%;
    height: 35%;
    background: rgba(107, 155, 92, 0.08);
    clip-path: polygon(30% 0, 100% 20%, 100% 100%, 0 100%);
    z-index: 1;
}

/* Mindful Meditation Pauses Section – match Contact background design */
.meditation-pauses {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

.meditation-pauses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 40%;
    background: rgba(127, 176, 105, 0.05);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 80%);
    z-index: 1;
}

.meditation-pauses::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25%;
    height: 35%;
    background: rgba(107, 155, 92, 0.08);
    clip-path: polygon(30% 0, 100% 20%, 100% 100%, 0 100%);
    z-index: 1;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(127, 176, 105, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: #7FB069;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(127, 176, 105, 0.2);
    box-shadow: 0 4px 20px rgba(127, 176, 105, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-header .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.contact-header .title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #7FB069, #6B9B5C);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(127, 176, 105, 0.2);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "info form"
                         "map map";
    gap: 4rem;
    margin-top: 3rem;
    align-items: stretch;
    position: relative;
    z-index: 2;
    overflow: visible;
    grid-auto-rows: min-content;
}

.contact-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    grid-area: info;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    justify-content: space-between;
}

/* Contact Cards */
.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(127, 176, 105, 0.15);
    border-color: rgba(127, 176, 105, 0.2);
}

.contact-card-icon {
    flex-shrink: 0;
}

.contact-card-icon .icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
}

.contact-card-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.contact-card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-link {
    color: #7FB069;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #6B9B5C;
    text-decoration: underline;
}

.contact-card-highlight {
    color: #7FB069;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(127, 176, 105, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    border: 1px solid rgba(127, 176, 105, 0.2);
}

/* Specialties Card */
.specialties-card {
    background: linear-gradient(135deg, rgba(127, 176, 105, 0.05), rgba(107, 155, 92, 0.05));
    border-left: 4px solid #7FB069;
}

.specialties-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.specialty-tag {
    background: #7FB069;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Contact Map */
.contact-map {
    grid-column: 1 / -1;
    grid-area: map;
    margin-top: 2rem;
}

.google-map {
    width: 100%;
    height: 320px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.google-map:hover {
    box-shadow: 0 15px 40px rgba(127, 176, 105, 0.15);
    transform: translateY(-2px);
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-icon {
    margin-bottom: 1rem;
}

.form-icon .icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin: 0 auto;
}

.form-header h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Enhanced Form Styles */
.form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: visible;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #7FB069;
    font-size: 1.1rem;
    z-index: 2;
}

.textarea-icon {
    top: 16px;
    align-self: flex-start;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 2px solid rgba(127, 176, 105, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7FB069;
    box-shadow: 0 0 0 4px rgba(127, 176, 105, 0.15);
    background: rgba(255, 255, 255, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 16px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237FB069'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    position: relative;
    z-index: 999;
}

/* Custom Select (Service of Interest) */
.custom-select-trigger {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 2px solid rgba(127, 176, 105, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    font-size: 1rem;
    color: #333;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.custom-select-trigger:focus {
    outline: none;
    border-color: #7FB069;
    box-shadow: 0 0 0 4px rgba(127, 176, 105, 0.15);
    background: rgba(255, 255, 255, 1);
}

.custom-select-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    background: #fff;
    border: 2px solid rgba(127, 176, 105, 0.25);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 2000;
}

.custom-select-item {
    padding: 10px 16px;
    font-size: 1rem;
    color: #2c3e50;
    white-space: nowrap;
    cursor: pointer;
}

.custom-select-item:hover,
.custom-select-item.selected {
    background: rgba(127, 176, 105, 0.1);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 999;
}

/* Specific fix for service select dropdown */
.form-group:has(select[name="service"]) {
    position: relative;
    z-index: 999;
}

.form-group:has(select[name="service"]) .input-wrapper {
    position: static;
}

.form-group:has(select[name="service"]) select {
    position: relative;
    z-index: 1000;
}

/* Ensure form container allows overflow for dropdown */
.contact-form {
    position: relative;
    z-index: 5;
    grid-area: form;
}

/* Form Footer */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(127, 176, 105, 0.2);
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #7FB069;
    font-size: 0.9rem;
    font-weight: 500;
}

.privacy-note i {
    font-size: 1.1rem;
}

.btn-form {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-form:hover::before {
    left: 100%;
}

.btn-form:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(127, 176, 105, 0.4);
}

.btn-form .btn-icon {
    transition: transform 0.3s ease;
}

.btn-form:hover .btn-icon {
    transform: translateX(3px);
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #7FB069;
    margin-bottom: 1rem;
}

.footer-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    height: 24px;
    width: auto;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #7FB069;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    text-align: left;
    flex: 1;
}

.footer-center {
    text-align: center;
    flex: 1;
}

.footer-right {
    text-align: right;
    flex: 1;
}

.footer-right a {
    color: #7FB069;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #9BC53D;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile Dropdown Styles */
    .nav-dropdown {
        width: 100%;
        text-align: center;
    }
    
    .nav-dropdown .dropdown-toggle {
        justify-content: center;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background: rgba(127, 176, 105, 0.05);
        border: none;
        border-radius: 0;
        margin: 0.5rem 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
    }
    
    .dropdown-item {
        padding: 0.8rem 2rem;
        border-left: none;
        border-bottom: 1px solid rgba(127, 176, 105, 0.1);
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    /* Mobile: remove underline/bar effects on nav links */
    .nav-link::after,
    .nav-link:hover::after,
    .nav-link.active::after {
        display: none !important;
        width: 0 !important;
    }
    
    /* Mobile: remove background tint and borders from dropdown list */
    .dropdown-menu {
        background: transparent;
    }
    
    .dropdown-item {
        border-bottom: none;
    }
    
    .dropdown-item:hover,
    .dropdown-item.active {
        background: transparent;
        color: #333;
        border-left-color: transparent;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle h2 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .title-divider {
        margin: 1rem auto;
    }
    
    .hero-description {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-sidebar {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-card .stat-number {
        font-size: 2.2rem;
    }
    
    .image-placeholder,
    .professional-headshot {
        width: 300px !important;
        height: 300px !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        grid-template-areas: "info" "map" "form";
        gap: 3rem;
    }
    
    .contact-header .section-title {
        font-size: 2.5rem;
    }
    
    .contact-info {
        height: auto;
    }
    
    .contact-info-content {
        justify-content: initial;
        gap: 1.5rem;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        align-items: center;
    }
    
    .contact-card-icon {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .contact-card-icon .icon {
        margin: 0;
    }
    
    .contact-card-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .specialties-list {
        justify-content: center;
    }
    
    .contact-map {
        grid-column: 1 / -1;
        margin-top: 2rem;
        padding-top: 0;
    }
    
    .google-map {
        height: 260px;
    }
    
    .form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        flex: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Shift hero video left on tablets/phones to reveal right-side content */
    .hero-video {
        object-position: 70% center;
    }

    /* Horizontal credentials: stack on tablet */
    .trust-cards-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-subtitle h2 {
        font-size: 1.4rem;
    }
    
    .main-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        padding: 1rem;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sidebar-section {
        padding: 1.5rem;
    }
    
    .trust-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 0.8rem;
    }
    
    .trust-content h4 {
        font-size: 1rem;
    }
    
    .trust-content p {
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .services,
    .about-preview,
    .contact {
        padding: 60px 0;
    }
    
    .service-content,
    .form {
        padding: 2rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .google-map {
        height: 200px;
    }
    
    .contact-header .section-title {
        font-size: 2rem;
    }
    
    .contact-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .contact-card {
        padding: 1.2rem;
    }
    
    .contact-card-content h3 {
        font-size: 1.1rem;
    }
    
    .form {
        padding: 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 14px 14px 45px;
    }
    
    .btn-form {
        width: 100%;
        min-width: auto;
    }
    
    .image-placeholder,
    .professional-headshot {
        width: 250px !important;
        height: 250px !important;
    }

    /* Stronger shift on small phones */
    .hero-video {
        object-position: 80% center;
    }
}

/* Professional Icons */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7FB069, #6B9B5C);
    color: white;
    font-size: 1.5rem;
    position: relative;
    flex-shrink: 0;
}

.icon-small {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.icon-large {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

/* Tabler Icons sizing within circular icon container */
.icon > i[class^="ti-"],
.icon > i[class*=" ti-"] {
    font-size: 1.4em;
    line-height: 1;
}

.icon-small > i[class^="ti-"],
.icon-small > i[class*=" ti-"] {
    font-size: 1.3em;
}

.icon-large > i[class^="ti-"],
.icon-large > i[class*=" ti-"] {
    font-size: 1.6em;
}

/* Brain/Psychology Icon */
.icon-brain::before {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.69 2 6 4.69 6 8c0 1.5.6 2.85 1.56 3.85-.95.65-1.56 1.75-1.56 3.15 0 2.21 1.79 4 4 4h4c2.21 0 4-1.79 4-4 0-1.4-.61-2.5-1.56-3.15C17.4 10.85 18 9.5 18 8c0-3.31-2.69-6-6-6z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Mind/Meditation Icon */
.icon-meditation::before {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-1.5 5c-.83 0-1.5.67-1.5 1.5v3c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-3zm-2.5 7v3c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-3h-2v2h-4v-2H8z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Hypnosis/Moon Icon */
.icon-hypnosis::before {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10c1.82 0 3.53-.5 5-1.35-2.99.85-6.27-1.08-6.27-4.65 0-3.57 3.28-5.5 6.27-4.65C15.53 2.5 13.82 2 12 2z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Heart/Wellness Icon */
.icon-heart::before {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Shield/Protection Icon */
.icon-shield::before {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Balance/Scales Icon */
.icon-balance::before {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3 7h6l-5 4 2 7-6-4-6 4 2-7-5-4h6l3-7zm0 3.5L10.5 9h3L12 5.5zM7 13l-2 1.5L7 16l2-1.5L7 13zm10 0l-2 1.5L17 16l2-1.5L17 13z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Growth/Plant Icon */
.icon-growth::before {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22c-1.1 0-2-.9-2-2v-7c0-1.1.9-2 2-2s2 .9 2 2v7c0 1.1-.9 2-2 2zm-6-8c-1.1 0-2-.9-2-2s.9-2 2-2h4c1.1 0 2 .9 2 2s-.9 2-2 2H6zm12 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm-6-8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Eye/Vision Icon */
.icon-eye::before {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Compass/Direction Icon */
.icon-compass::before {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l1.5-6L17 9.5 15.5 15 10 17z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Calm/Waves Icon */
.icon-waves::before {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.5 18.5c.8 0 1.5-.4 2.1-1.1.6-.7 1.3-1.1 2.1-1.1s1.5.4 2.1 1.1c.6.7 1.3 1.1 2.1 1.1s1.5-.4 2.1-1.1c.6-.7 1.3-1.1 2.1-1.1s1.5.4 2.1 1.1c.6.7 1.3 1.1 2.1 1.1v-2c-.4 0-.8-.2-1.1-.5-.6-.7-1.3-1.1-2.1-1.1s-1.5.4-2.1 1.1c-.6.7-1.3 1.1-2.1 1.1s-1.5-.4-2.1-1.1c-.6-.7-1.3-1.1-2.1-1.1s-1.5.4-2.1 1.1c-.3.3-.7.5-1.1.5v2zm0-6c.8 0 1.5-.4 2.1-1.1.6-.7 1.3-1.1 2.1-1.1s1.5.4 2.1 1.1c.6.7 1.3 1.1 2.1 1.1s1.5-.4 2.1-1.1c.6-.7 1.3-1.1 2.1-1.1s1.5.4 2.1 1.1c.6.7 1.3 1.1 2.1 1.1v-2c-.4 0-.8-.2-1.1-.5-.6-.7-1.3-1.1-2.1-1.1s-1.5.4-2.1 1.1c-.6.7-1.3 1.1-2.1 1.1s-1.5-.4-2.1-1.1c-.6-.7-1.3-1.1-2.1-1.1s-1.5.4-2.1 1.1c-.3.3-.7.5-1.1.5v2z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Reset/Refresh Icon */
.icon-reset::before {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Strength/Muscle Icon */
.icon-strength::before {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.5 6c-.28 0-.5.22-.5.5V9h-2V7.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V9h-2V7.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V9H9V7.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V9H6V7.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V9H3.5c-.28 0-.5.22-.5.5s.22.5.5.5H5v4H3.5c-.28 0-.5.22-.5.5s.22.5.5.5H5v1.5c0 .28.22.5.5.5s.5-.22.5-.5V15h2v1.5c0 .28.22.5.5.5s.5-.22.5-.5V15h2v1.5c0 .28.22.5.5.5s.5-.22.5-.5V15h2v1.5c0 .28.22.5.5.5s.5-.22.5-.5V15h2v1.5c0 .28.22.5.5.5s.5-.22.5-.5V15h1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H19v-4h1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H19V6.5c0-.28-.22-.5-.5-.5z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Tree/Growth Icon */
.icon-tree::before {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3 7h4l-3.2 2.3L17 18h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H9l1.2-6.7L7 9h4l1-2.5L12 2z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Enhanced Animation Classes */
@keyframes heroContainerFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes highlightGlow {
    0% {
        opacity: 0.5;
        transform: scaleX(0.8);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Animation Utilities */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

/* Animation Delays */
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

/* Legacy Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #7FB069;
    outline-offset: 2px;
}

/* Page-specific Styles */

/* Page Hero Styles */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* About page specific hero background */
.page-hero.about-hero {
    background: linear-gradient(135deg, rgba(248, 253, 248, 0.50) 0%, rgba(232, 245, 232, 0.50) 100%), url('assets/images/background-abstract5.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Match About hero background on other hero sections */
.page-hero.mindfulness-meditation-hero,
.page-hero.mindfulness-hero,
.page-hero.hypnotherapy-hero {
    background: linear-gradient(135deg, rgba(248, 253, 248, 0.50) 0%, rgba(232, 245, 232, 0.50) 100%), url('assets/images/background-abstract5.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero .hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-hero .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-features,
.workshop-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item,
.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(127, 176, 105, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.8rem;
    border-radius: 25px;
    color: #7FB069;
    font-weight: 600;
    border: 1px solid rgba(127, 176, 105, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(127, 176, 105, 0.1);
}

.feature-item:hover,
.highlight-item:hover {
    background: rgba(127, 176, 105, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 176, 105, 0.2);
}

/* What is Mindfulness Meditation Styles */
.what-is-mindfulness {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Triangular green fills for What is Mindfulness section - same as Professional Background section */
.what-is-mindfulness::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 50%;
    background: #7FB069;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    opacity: 0.1;
    z-index: 1;
}

.what-is-mindfulness::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 50%;
    background: #7FB069;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    opacity: 0.1;
    z-index: 1;
}

/* Professional Profile Styles */
.professional-profile {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Triangular green fills for Professional Background section - same as About Christiane Roy section */
.professional-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 50%;
    background: #7FB069;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    opacity: 0.1;
    z-index: 1;
}

.professional-profile::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 50%;
    background: #7FB069;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    opacity: 0.1;
    z-index: 1;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.profile-image .image-placeholder,
.profile-image .professional-headshot {
    width: 350px;
    height: 400px;
    margin: 0 auto;
}

.profile-text h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.profile-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Therapeutic Approaches Styles */
.therapeutic-approaches {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 253, 248, 0.85) 0%, rgba(232, 245, 232, 0.85) 100%), url('assets/images/about-hero-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.approaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(127, 176, 105, 0.15);
}

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Specializations Styles */
.specializations {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

/* Background decorative elements */
.specializations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 40%;
    background: rgba(127, 176, 105, 0.05);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 80%);
    z-index: 1;
}

.specializations::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25%;
    height: 35%;
    background: rgba(107, 155, 92, 0.08);
    clip-path: polygon(30% 0, 100% 20%, 100% 100%, 0 100%);
    z-index: 1;
}

.specializations-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.specializations-text {
    text-align: center;
}

.specializations-text h2 {
    margin-bottom: 1.5rem;
}

.specializations-text p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.specialization-list {
    margin-top: 2rem;
    text-align: left;
}

.specialization-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fdf8;
    border-radius: 15px;
    border-left: 4px solid #7FB069;
}

.spec-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.spec-content h3 {
    color: #7FB069;
    margin-bottom: 0.5rem;
}

.military-card {
    background: linear-gradient(135deg, #7FB069, #6B9B5C);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.military-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.military-features ul {
    list-style: none;
    margin-top: 1rem;
}

.military-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    align-items: center;
}

.military-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

/* Credentials Styles */
.credentials {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 253, 248, 0.55) 0%, rgba(232, 245, 232, 0.55) 100%), url('assets/images/background-abstract2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.credentials-content {
    margin-top: 3rem;
}

.education-section,
.certifications-section,
.mindfulness-section {
    margin-bottom: 3rem;
}

.credentials-content h3 {
    color: #7FB069;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.credential-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.credential-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.certifications-grid,
.mindfulness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.cert-item,
.mindfulness-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cert-item h4,
.mindfulness-item h4 {
    color: #7FB069;
    margin-bottom: 0.5rem;
}

/* Content Layout Styles */
.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.content-text h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Mindfulness-specific Styles */
.who-should-attend {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Background line designs for who-should-attend section - Parallel diagonal lines */
.who-should-attend::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -100%;
    width: 300%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 30%, #6B9B5C 70%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.3;
    z-index: 1;
    border-radius: 1px;
}

.who-should-attend::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -100%;
    width: 300%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #6B9B5C 25%, #7FB069 75%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.25;
    z-index: 1;
    border-radius: 1px;
}

/* Additional parallel diagonal lines */
.who-should-attend .container::before {
    content: '';
    position: absolute;
    bottom: 30%;
    left: -100%;
    width: 300%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 40%, #5A8A4D 60%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.2;
    z-index: 1;
    border-radius: 1px;
}

.who-should-attend .container::after {
    content: '';
    position: absolute;
    bottom: 50%;
    left: -100%;
    width: 300%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #6B9B5C 35%, #7FB069 65%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.15;
    z-index: 1;
    border-radius: 1px;
}

/* Additional parallel lines using section elements */
.who-should-attend .section-header-center::before {
    content: '';
    position: absolute;
    bottom: -200%;
    left: -150%;
    width: 400%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 20%, #6B9B5C 80%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.2;
    z-index: 1;
    border-radius: 1px;
}

.who-should-attend .section-header-center::after {
    content: '';
    position: absolute;
    bottom: -300%;
    left: -150%;
    width: 400%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #5A8A4D 30%, #7FB069 70%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.15;
    z-index: 1;
    border-radius: 1px;
}

/* Top-right area diagonal lines */
.who-should-attend .container:first-child::before {
    content: '';
    position: absolute;
    top: 5%;
    left: -100%;
    width: 300%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 40%, #6B9B5C 60%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.15;
    z-index: 1;
    border-radius: 1px;
}

.who-should-attend .container:first-child::after {
    content: '';
    position: absolute;
    top: 15%;
    left: -100%;
    width: 300%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #6B9B5C 35%, #7FB069 65%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.12;
    z-index: 1;
    border-radius: 1px;
}

/* Additional coverage lines */
.who-should-attend .attend-content::before {
    content: '';
    position: absolute;
    bottom: 70%;
    left: -100%;
    width: 300%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #5A8A4D 40%, #7FB069 60%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.1;
    z-index: 1;
    border-radius: 1px;
}

.who-should-attend .attend-content::after {
    content: '';
    position: absolute;
    bottom: 85%;
    left: -100%;
    width: 300%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 30%, #6B9B5C 70%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.08;
    z-index: 1;
    border-radius: 1px;
}

/* Ensure container has relative positioning for pseudo-elements */
.who-should-attend .container {
    position: relative;
}

/* Override: Use background image and remove decorative line designs */
.who-should-attend {
    background: linear-gradient(135deg, rgba(248, 253, 248, 0.55) 0%, rgba(232, 245, 232, 0.55) 100%), url('assets/images/background-abstract3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.who-should-attend::before,
.who-should-attend::after,
.who-should-attend .container::before,
.who-should-attend .container::after,
.who-should-attend .section-header-center::before,
.who-should-attend .section-header-center::after,
.who-should-attend .container:first-child::before,
.who-should-attend .container:first-child::after,
.who-should-attend .attend-content::before,
.who-should-attend .attend-content::after {
    content: none;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.section-header-center h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.attend-content {
    position: relative;
    z-index: 2;
}

/* Participant Cards */
.ideal-participants {
    margin-bottom: 4rem;
}

.participant-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.participant-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.participant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(127, 176, 105, 0.1), transparent);
    transition: left 0.6s ease;
}

.participant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(127, 176, 105, 0.15);
    border-color: rgba(127, 176, 105, 0.2);
}

.participant-card:hover::before {
    left: 100%;
}

.card-icon {
    margin-bottom: 1.5rem;
}

.participant-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.participant-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Experience Section */
.experience-section {
    background: #fff;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(127, 176, 105, 0.1);
    position: relative;
    z-index: 3;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.experience-text h3 {
    color: #7FB069;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.experience-text > p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.experience-grid {
    display: grid;
    gap: 1.5rem;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fdf8;
    border-radius: 15px;
    border-left: 4px solid #7FB069;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.experience-item:hover {
    background: rgba(127, 176, 105, 0.05);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(127, 176, 105, 0.1);
}

.item-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.item-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Experience Image */
.experience-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.meditation-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Specific spacing for mindfulness meditation page image */
.what-is-mindfulness .image-container {
    margin: 2rem 0;
}

.what-is-mindfulness .content-layout {
    align-items: center;
    gap: 4rem;
}

.image-container:hover .meditation-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    color: white;
    text-align: center;
}

.overlay-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.overlay-text .icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: 35px;
    height: 35px;
    font-size: 1rem;
}

.overlay-text p {
    margin: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Section CTA Styles */
.section-cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-container {
    background: linear-gradient(135deg, #7FB069, #6B9B5C);
    color: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(127, 176, 105, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 3;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-container h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-container p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.btn-cta {
    background: white;
    color: #7FB069;
    border-color: white;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #6B9B5C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta .btn-icon {
    font-size: 1.1rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

/* Schedule Styles */
.schedule-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

/* Background decorative elements - same as contact section */
.schedule-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 40%;
    background: rgba(127, 176, 105, 0.05);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 80%);
    z-index: 1;
}

.schedule-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25%;
    height: 35%;
    background: rgba(107, 155, 92, 0.08);
    clip-path: polygon(30% 0, 100% 20%, 100% 100%, 0 100%);
    z-index: 1;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.schedule-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.schedule-header {
    padding: 1.5rem;
    background: #7FB069;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule-header h3 {
    color: white;
    margin: 0;
}

.schedule-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.schedule-badge.primary {
    background: rgba(255, 255, 255, 0.3);
}

.schedule-details {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.schedule-details > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.schedule-details span:first-child {
    font-weight: 600;
    color: #7FB069;
}

.schedule-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.total-commitment {
    margin-top: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.commitment-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: center;
}

.commitment-details {
    display: flex;
    gap: 3rem;
    margin-top: 1.5rem;
    justify-content: center;
    align-items: center;
}

.commitment-item {
    text-align: center;
}

.commitment-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #7FB069;
}

.commitment-label {
    color: #666;
    font-weight: 600;
}

/* Format Section Styles */
.format-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
}

/* What to Expect (Meditation page) - reuse diagonal lines design with darker lines */
.format-section.what-to-expect {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(248, 253, 248, 0.55) 0%, rgba(232, 245, 232, 0.55) 100%), url('assets/images/background-abstract1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.format-section.what-to-expect::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -50%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #6B9B5C 30%, #4F8043 70%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.5; /* darker than who-should-attend for visibility on green background */
    z-index: 1;
    border-radius: 1px;
}

.format-section.what-to-expect::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -50%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #4F8043 25%, #6B9B5C 75%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.45;
    z-index: 1;
    border-radius: 1px;
}

.format-section.what-to-expect .container::before {
    content: '';
    position: absolute;
    bottom: 30%;
    left: -50%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #6B9B5C 40%, #46753B 60%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.38;
    z-index: 1;
    border-radius: 1px;
}

.format-section.what-to-expect .container::after {
    content: '';
    position: absolute;
    bottom: 50%;
    left: -50%;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #4F8043 35%, #6B9B5C 65%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.3;
    z-index: 1;
    border-radius: 1px;
}

.format-section.what-to-expect .container {
    position: relative;
}

/* Remove previous decorative line designs in favor of image background */
.format-section.what-to-expect::before,
.format-section.what-to-expect::after,
.format-section.what-to-expect .container::before,
.format-section.what-to-expect .container::after {
    display: none;
}

/* Ensure content sits above decorative lines */
.format-section.what-to-expect .section-title,
.format-section.what-to-expect .section-subtitle,
.format-section.what-to-expect .format-content-grid,
.format-section.what-to-expect .format-category {
    position: relative;
    z-index: 2;
}

.format-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
@media (min-width: 1200px) {
    .format-section.what-to-expect .format-content-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.format-category {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.format-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(127, 176, 105, 0.05), transparent);
    transition: left 0.6s ease;
}

.format-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(127, 176, 105, 0.15);
    border-color: rgba(127, 176, 105, 0.2);
}

.format-category:hover::before {
    left: 100%;
}

.category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-header h3 {
    color: #333;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.format-category p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Special styling for language categories */
.language-primary .category-header .icon {
    background: linear-gradient(135deg, #7FB069, #6B9B5C);
}

.language-english .category-header .icon {
    background: linear-gradient(135deg, #6B9B5C, #5A8A4D);
}

/* Reading Section Styles */
.reading-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 253, 248, 0.80) 0%, rgba(232, 245, 232, 0.80) 100%), url('assets/images/background-abstract4.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Triangular green fills for Recommended Reading section - same as About Christiane Roy section */
.reading-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 50%;
    background: #7FB069;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    opacity: 0.1;
    z-index: 1;
}

.reading-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 50%;
    background: #7FB069;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    opacity: 0.1;
    z-index: 1;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.book-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(127, 176, 105, 0.15);
}

.book-cover {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.book-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.book-card:hover .book-image {
    transform: scale(1.05);
}

.book-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7FB069;
    font-weight: 600;
}

.book-info {
    padding: 1.5rem;
}

.book-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.author {
    color: #7FB069;
    font-weight: 600;
    margin-bottom: 1rem;
}

.book-description {
    color: #666;
    line-height: 1.6;
}

/* Registration Section Styles */
.registration-section {
    padding: 80px 0;
    background: #fff;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.cost-card {
    background: linear-gradient(135deg, #7FB069, #6B9B5C);
    color: white;
    border-radius: 20px;
    overflow: hidden;
}

.cost-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cost-header h3 {
    color: white;
    margin-bottom: 1rem;
}

.cost-amount {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.cost-details {
    padding: 2rem;
}

.cost-details ul {
    list-style: none;
    margin-top: 1rem;
}

.cost-details li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.cost-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

.cost-cta {
    margin-top: 2rem;
    text-align: center;
}

.cost-cta .btn {
    background: rgba(255, 255, 255, 0.9);
    color: #7FB069;
    border-color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cost-cta .btn:hover {
    background: rgba(255, 255, 255, 1);
    color: #6B9B5C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.registration-card {
    background: #f8fdf8;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e8f5e8;
}

.registration-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-number {
    background: #7FB069;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #7FB069;
    margin-bottom: 0.5rem;
}

.payment-options {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.payment-icon {
    font-size: 1.2rem;
}

.insurance-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #7FB069;
}

.insurance-note h4 {
    color: #7FB069;
    margin-bottom: 0.5rem;
}

/* Hypnotherapy-specific Styles */
.what-is-hypnotherapy {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Triangular green fills for What is Hypnotherapy section - same as About Christiane Roy section */
.what-is-hypnotherapy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 50%;
    background: #7FB069;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    opacity: 0.1;
    z-index: 1;
}

.what-is-hypnotherapy::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 50%;
    background: #7FB069;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    opacity: 0.1;
    z-index: 1;
}

.hypnotherapy-benefits {
    margin-top: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hypnotherapy-benefits h3 {
    color: #7FB069;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefits-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fdf8;
    border-radius: 10px;
}

.benefits-grid-horizontal .benefit-item {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefits-grid-horizontal .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(127, 176, 105, 0.15);
    border-color: rgba(127, 176, 105, 0.2);
}

.benefits-grid-horizontal .benefit-item .icon {
    margin-bottom: 1rem;
}

.benefits-grid-horizontal .benefit-text {
    text-align: center;
}

.benefits-grid-horizontal .benefit-text h4 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.benefits-grid-horizontal .benefit-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.relaxation-image {
    width: 350px;
    height: 300px;
    border-radius: 15px;
}

/* Stress and Anxiety Section */
.stress-anxiety-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
}

.stress-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stress-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.how-hypnotherapy-helps h3 {
    color: #7FB069;
    text-align: center;
    margin-bottom: 2rem;
}

.help-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.method-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
}

.method-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    color: #7FB069;
}

.method-content h4 {
    color: #333;
    margin-bottom: 1rem;
}

/* Session Process Styles */
.session-process {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Background line designs for session-process section - Parallel diagonal lines (same as who-should-attend) */
.session-process::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -100%;
    width: 300%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 30%, #6B9B5C 70%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.3;
    z-index: 1;
    border-radius: 1px;
}

.session-process::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -100%;
    width: 300%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #6B9B5C 25%, #7FB069 75%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.25;
    z-index: 1;
    border-radius: 1px;
}

/* Additional parallel diagonal lines */
.session-process .container::before {
    content: '';
    position: absolute;
    bottom: 30%;
    left: -100%;
    width: 300%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 40%, #5A8A4D 60%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.2;
    z-index: 1;
    border-radius: 1px;
}

.session-process .container::after {
    content: '';
    position: absolute;
    bottom: 50%;
    left: -100%;
    width: 300%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #6B9B5C 35%, #7FB069 65%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.15;
    z-index: 1;
    border-radius: 1px;
}

/* Top-right area diagonal lines */
.session-process .container:first-child::before {
    content: '';
    position: absolute;
    top: 5%;
    left: -100%;
    width: 300%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 40%, #6B9B5C 60%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.15;
    z-index: 1;
    border-radius: 1px;
}

.session-process .container:first-child::after {
    content: '';
    position: absolute;
    top: 15%;
    left: -100%;
    width: 300%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #6B9B5C 35%, #7FB069 65%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.12;
    z-index: 1;
    border-radius: 1px;
}

/* Additional coverage lines for process steps */
.session-process .process-steps::before {
    content: '';
    position: absolute;
    bottom: 70%;
    left: -100%;
    width: 300%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #5A8A4D 40%, #7FB069 60%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.1;
    z-index: 1;
    border-radius: 1px;
}

.session-process .process-steps::after {
    content: '';
    position: absolute;
    bottom: 85%;
    left: -100%;
    width: 300%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #7FB069 30%, #6B9B5C 70%, transparent 100%);
    transform: rotate(15deg);
    opacity: 0.08;
    z-index: 1;
    border-radius: 1px;
}

/* Ensure container has relative positioning for pseudo-elements */
.session-process .container {
    position: relative;
}

/* Override: Use background image (match who-should-attend) and remove decorative line designs */
.session-process {
    background: linear-gradient(135deg, rgba(248, 253, 248, 0.55) 0%, rgba(232, 245, 232, 0.55) 100%), url('assets/images/background-abstract3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.session-process::before,
.session-process::after,
.session-process .container::before,
.session-process .container::after,
.session-process .section-header-center::before,
.session-process .section-header-center::after,
.session-process .container:first-child::before,
.session-process .container:first-child::after,
.session-process .process-steps::before,
.session-process .process-steps::after {
    content: none;
}

.process-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.process-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.process-steps {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.step-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    border-left: 5px solid #7FB069;
    position: relative;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-card .step-number {
    background: #7FB069;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-card .step-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.step-details {
    margin-top: 1rem;
}

.step-details ul {
    list-style: none;
    margin-top: 0.5rem;
}

.step-details li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #666;
}

.step-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #7FB069;
    font-weight: bold;
}

/* Benefits Section Styles */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

/* Mindfulness Meditation page: match About credentials background on Benefits */
.page-hero.mindfulness-meditation-hero ~ .benefits-section {
    background: linear-gradient(135deg, rgba(248, 253, 248, 0.55) 0%, rgba(232, 245, 232, 0.55) 100%), url('assets/images/background-abstract2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Darker, opaque decorative shapes so image doesn't show through */
/* Remove opaque overlays so background image shows naturally */
.page-hero.mindfulness-meditation-hero ~ .benefits-section::before,
.page-hero.mindfulness-meditation-hero ~ .benefits-section::after {
    content: none;
}

/* Background decorative elements - same as schedule section */
.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 40%;
    background: rgba(127, 176, 105, 0.05);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 80%);
    z-index: 1;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25%;
    height: 35%;
    background: rgba(107, 155, 92, 0.08);
    clip-path: polygon(30% 0, 100% 20%, 100% 100%, 0 100%);
    z-index: 1;
}

.benefits-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.benefits-section .benefits-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(127, 176, 105, 0.15);
}

.benefit-card .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #7fb069;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Meditation Pauses Section Styles */
.meditation-pauses {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

/* Match Contact section decorative shapes */
.meditation-pauses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 40%;
    background: rgba(127, 176, 105, 0.05);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 80%);
    z-index: 1;
}

.meditation-pauses::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25%;
    height: 35%;
    background: rgba(107, 155, 92, 0.08);
    clip-path: polygon(30% 0, 100% 20%, 100% 100%, 0 100%);
    z-index: 1;
}

.meditation-pauses .container {
    position: relative;
    z-index: 2;
}

/* Safety Section Styles */
.safety-section {
    padding: 80px 0;
    background: #fff;
}

.safety-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.safety-card,
.myth-card {
    padding: 2rem;
    border-radius: 15px;
}

.safety-card {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    border-left: 5px solid #28a745;
}

.myth-card {
    background: linear-gradient(135deg, #fce8e8, #f8d7da);
    border-left: 5px solid #dc3545;
}

.safety-card h3 {
    color: #28a745;
    margin-bottom: 1rem;
}

.myth-card h3 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.reality-list,
.myth-list {
    list-style: none;
}

.reality-list li,
.myth-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.reality-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.myth-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
    font-size: 1.2rem;
}

.professional-assurance {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #f8fdf8;
    border-radius: 15px;
    border: 2px solid #e8f5e8;
}

.professional-assurance h3 {
    color: #7FB069;
    margin-bottom: 1rem;
}

/* CTA Section Styles */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7FB069, #6B9B5C);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: #7FB069;
    border-color: white;
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #6B9B5C;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #7FB069;
}

/* Desktop-specific improvements for page hero */
@media (min-width: 1024px) {
    .page-hero .hero-content {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .page-hero h1 {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .page-hero h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: #34495e;
    }
    
    .hero-features,
    .workshop-highlights {
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .feature-item,
    .highlight-item {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    /* Specializations Section Desktop Layout */
    .specializations-content {
        display: block;
    }
    
    .specializations-text {
        margin-bottom: 3rem;
    }
    
    .specialization-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .specialization-item {
        margin-bottom: 0;
    }
    
    .military-service {
        width: 100%;
    }
    
    .military-card {
        width: 100%;
        max-width: none;
    }
    
    .military-features ul {
        display: grid;
        grid-template-columns: auto auto;
        gap: 1rem 4rem;
        justify-content: center;
        justify-items: start;
    }
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .content-layout,
    .profile-content,
    .specializations-content,
    .registration-content,
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Center the professional profile image on mobile */
    .profile-content {
        text-align: center;
    }
    
    .profile-image {
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    /* Make Professional Background header horizontal on mobile */
    .profile-text h2 {
        white-space: nowrap;
        font-size: 1.8rem;
    }
    
    /* Mindfulness & MBSR Training mobile layout */
    .mindfulness-section h3 {
        display: flex;
        align-items: flex-start;
    }
    
    .mindfulness-title br {
        display: block;
    }
    
    .training-text {
        display: block;
        margin-left: 0;
    }
    
    .content-image {
        display: flex;
        justify-content: center;
    }
    
    .relaxation-image {
        margin: 0 auto;
        display: block;
    }
    
    /* Center "What is Mindfulness Meditation?" heading on mobile */
    .what-is-mindfulness .content-text h2 {
        text-align: center;
    }
    
    .approaches-grid,
    .help-methods {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-details {
        gap: 1.5rem;
    }
    
    .format-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .format-category {
        padding: 1.5rem;
    }
    
    .books-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 400px;
    }
    
    .hero-features,
    .workshop-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .feature-item,
    .highlight-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step-card .step-number {
        align-self: center;
        margin-bottom: 1.5rem;
    }
    
    .method-card {
        flex-direction: column;
        text-align: center;
    }
    
    .method-card .icon {
        align-self: center;
        margin-bottom: 1rem;
    }
    
    .benefit-card .icon {
        margin: 0 auto 1rem auto;
    }
    
    /* Center all icons in cards on mobile */
    .participant-card .icon,
    .step-card .icon,
    .approach-card .icon,
    .format-category .icon {
        margin: 0 auto 1rem auto;
    }
    
    .specialization-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Hypnotherapy Benefits - Mobile */
    .benefits-grid-horizontal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Mindfulness Meditation Benefits - Mobile */
    .benefits-section .benefits-grid-2x2 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    /* Who Should Attend Section - Mobile */
    .participant-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-section {
        padding: 2rem;
    }
    
    .meditation-image {
        height: 600px;
    }
    
    /* Section CTA - Mobile */
    .section-cta {
        margin-top: 3rem;
    }
    
    .cta-container {
        padding: 2rem 1.5rem;
    }
    
    .cta-container h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .hero-features,
    .workshop-highlights {
        gap: 1rem;
    }
    
    .feature-item,
    .highlight-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .approach-card,
    .service-content,
    .benefit-card {
        padding: 1.5rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .cost-amount {
        font-size: 2.5rem;
    }
    
    .commitment-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Larger meditation image on small mobile */
    .meditation-image {
        height: 550px;
    }
    
    /* Who Should Attend Section - Small Mobile */
    .participant-card {
        padding: 1.5rem;
    }
    
    .section-header-center {
        margin-bottom: 3rem;
    }
    
    .section-intro {
        font-size: 1.1rem;
    }
    
    .experience-text h3 {
        font-size: 1.5rem;
    }
    
    .experience-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    /* Ensure the mindfulness image is large enough on small phones */
    .what-is-mindfulness .image-container {
        max-width: 95vw;
        width: 100%;
    }
    .meditation-image {
        height: 450px;
    }
    
    .image-overlay {
        padding: 1.5rem;
    }
    
    .overlay-text p {
        font-size: 0.9rem;
    }
    
    /* Section CTA - Small Mobile */
    .cta-container {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }
    
    .cta-container h3 {
        font-size: 1.3rem;
    }
    
    .cta-container p {
        font-size: 1rem;
    }
    
    .btn-cta {
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
        width: 100%;
        max-width: 280px;
    }
}

/* 404 Error Page Styles */
.error-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: #7FB069;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7FB069, #6B9B5C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-content h1 {
    color: #333;
    margin-bottom: 1.5rem;
}

.error-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.helpful-links {
    text-align: left;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.helpful-links h3 {
    color: #7FB069;
    margin-bottom: 1rem;
    text-align: center;
}

.helpful-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.helpful-links li {
    padding: 0.5rem 0;
}

.helpful-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.helpful-links a:hover {
    color: #7FB069;
}

.helpful-links a::before {
    content: '→ ';
    color: #7FB069;
    font-weight: bold;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 6rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .helpful-links ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .error-code {
        font-size: 4rem;
    }
    
    .error-section {
        padding: 100px 0 60px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-buttons,
    .contact-form,
    .cta-buttons,
    .error-actions {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}
