/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, #E85A5A, #7BCCC4);
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-content p {
    margin: 0;
    color: white;
    font-weight: 500;
}

.banner-btn {
    background: white;
    color: #E85A5A;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background: #5A7A8A;
    color: white;
}

.banner-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 10px;
    line-height: 1;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #5A7A8A;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #E85A5A;
}

em {
    font-style: italic;
    color: #5A7A8A;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

/* Navigation */
.navbar {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s ease;
}

/* These styles are no longer needed since navbar is not fixed */
/* .top-banner + .navbar {
    top: 44px;
}

.navbar.fixed-top {
    top: 0 !important;
} */

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #7BCCC4;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
}

/* Program Pricing */
.program-pricing {
    margin-bottom: 2.5rem;
    font-size: 1.4rem;
    color: #5A7A8A;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(123, 204, 196, 0.1) 0%, rgba(232, 90, 90, 0.1) 100%);
    padding: 15px 20px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #7BCCC4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-pricing:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.program-pricing span {
    position: relative;
    padding: 0 5px;
}

.program-pricing span:first-child {
    color: #E85A5A;
}

.program-pricing span {
    color: #E85A5A;
}

/* Program Packages on Home Page */
.program-packages {
    margin-top: 4rem;
    text-align: center;
}

.package-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.package-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.package-card h3 {
    color: #5A7A8A;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.package-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Program Images */
.program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.program-image:hover .program-img {
    transform: scale(1.05);
}


/* Removed redundant hover style */

/* Ecosystem Images */
.ecosystem-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #7BCCC4;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ecosystem-img:hover {
    transform: scale(1.1);
    border-color: #E85A5A;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: #5A7A8A;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #E85A5A;
}

/* Hero Section */
.hero, .story-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 80px;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.hero::before, .story-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #7BCCC4, #E85A5A);
    z-index: 1;
}

.hero::after, .story-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
    z-index: 1;
}

.top-banner ~ .hero, .top-banner ~ .story-hero {
    padding-top: 80px;
}

.hero-cta {
    margin-top: 2.5rem;
    position: relative;
    z-index: 3;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #7BCCC4, #5A7A8A);
    color: white;
    padding: 16px 38px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(90, 122, 138, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 2;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.hero-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E85A5A, #d64545);
    transition: transform 0.4s ease;
    transform: translateX(-100%);
    z-index: -1;
}

.hero-cta .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(232, 90, 90, 0.4);
    color: white;
}

.hero-cta .btn-primary:hover::before {
    transform: translateX(0);
}

.programs-hero .btn-primary {
    background: linear-gradient(135deg, #7BCCC4, #5A7A8A);
    color: white;
    padding: 16px 38px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(90, 122, 138, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 2;
    font-size: 1rem;
}

.programs-hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E85A5A, #d64545);
    transition: transform 0.4s ease;
    transform: translateX(-100%);
    z-index: -1;
}

.programs-hero .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(232, 90, 90, 0.4);
    color: white;
    border: none;
}

.programs-hero .btn-primary:hover::before {
    transform: translateX(0);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 2px solid #7BCCC4;
    border-radius: 20px;
    z-index: 1;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.hero-image:hover::before {
    top: 10px;
    left: 10px;
    opacity: 1;
}

.hero-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}
.story-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
    transition: transform 0.3s ease;
}
.hero-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.hero-content {
    position: relative;
}

.hero-content::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 120px;
    font-family: 'Playfair Display', serif;
    color: rgba(123, 204, 196, 0.15);
    line-height: 1;
}

.hero-content h1 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 3.2rem;
    position: relative;
    line-height: 1.2;
}

.hero-content h1 em {
    color: #E85A5A;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.hero-content h1 em::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #E85A5A, transparent);
}

.hero-content p {
    font-size: 1.2rem;
    color: #5A7A8A;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #7BCCC4;
    max-width: 400px;
}

/* Quote Section */
.quote-section {
    background: #E85A5A;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.quote-section p {
    color: white;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Success Journey Section */
.success-journey {
    padding: 80px 0;
    background: #f8f9fa;
}

.success-journey h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.journey-card {
    background: #7BCCC4;
    padding: 2rem;
    border-radius: 8px;
    color: white;
}

.journey-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.journey-card p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-button {
    text-align: center;
}

.btn-primary {
    background: transparent;
    border: 2px solid #5A7A8A;
    color: #5A7A8A;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #5A7A8A;
    color: white;
}

/* Newsletter Section */
.newsletter-section {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.newsletter-section h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.newsletter-section p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 1.5rem auto 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

/* Ready Section */
.ready-section {
    background: #5A7A8A;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.ready-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.ready-section p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #5A7A8A;
}

/* My Story Page Styles */
.story-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.story-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #7BCCC4, #E85A5A);
    z-index: 1;
}

.top-banner ~ .story-hero {
    padding-top: 200px;
}

.story-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.story-image {
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
    background: #ffffff;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.story-image img:hover {
    transform: scale(1.03);
}

.story-image-caption {
    padding: 20px;
    background: #ffffff;
}

.story-image-caption h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
}

.story-image-caption p {
    margin: 8px 0 0;
}

.story-text {
    padding-top: 1rem;
}

.story-text h2 {
    color: #5A7A8A;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Programs Page Styles */
.programs-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.programs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 204, 196, 0.1) 0%, rgba(232, 90, 90, 0.05) 100%);
    z-index: 0;
}

.programs-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #7BCCC4, #E85A5A);
    z-index: 1;
}

.programs-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.programs-hero h1 {
    color: #5A7A8A;
    margin-bottom: 1.5rem;
    font-size: 3.8rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.programs-hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #7BCCC4, #E85A5A);
    border-radius: 2px;
}

.programs-hero p {
    font-size: 1.3rem;
    color: #5A7A8A;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-cta {
    margin-top: 2rem;
}

.programs-grid {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.programs-grid .container {
    max-width: 1300px;
}

.program-item {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 5rem;
    margin-bottom: 8rem;
    align-items: center;
    position: relative;
    padding: 3.5rem;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    border: 1px solid rgba(123, 204, 196, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.program-item:nth-child(1) {
    animation-delay: 0.2s;
}

.program-item:nth-child(2) {
    animation-delay: 0.4s;
}

.program-item:nth-child(3) {
    animation-delay: 0.6s;
}

.program-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: rgba(123, 204, 196, 0.3);
}

.program-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 204, 196, 0.05) 0%, rgba(232, 90, 90, 0.05) 100%);
    z-index: 0;
    backdrop-filter: blur(10px);
}

.program-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, #7BCCC4, #E85A5A);
    border-radius: 20px 0 0 20px;
    z-index: 1;
    box-shadow: 0 0 20px rgba(123, 204, 196, 0.4);
}

.program-item:nth-child(even) {
    grid-template-columns: 450px 1fr;
}

.program-item:nth-child(even) .program-content {
    order: 2;
}

.program-item:nth-child(even) .program-image {
    order: 1;
}

.program-item:nth-child(even)::after {
    left: auto;
    right: 0;
    border-radius: 0 20px 20px 0;
    background: linear-gradient(180deg, #E85A5A, #7BCCC4);
    box-shadow: 0 0 20px rgba(232, 90, 90, 0.4);
}

.two-column-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-column ul {
    list-style: none;
    margin-bottom: 0;
}

.program-content {
    position: relative;
    z-index: 2;
}

.program-content h3 {
    color: #5A7A8A;
    font-size: 2.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.program-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7BCCC4, #E85A5A);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.program-item:hover .program-content h3::after {
    width: 100%;
}

.program-content h4 {
    color: #E85A5A;
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.program-item:hover .program-content h4 {
    opacity: 1;
}

.program-content ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.program-content li {
    padding: 0.8rem 0;
    color: #555;
    position: relative;
    padding-left: 36px;
    font-size: 1.15rem;
    line-height: 1.6;
    transition: transform 0.3s ease, color 0.3s ease;
}

.program-content li:hover {
    transform: translateX(5px);
    color: #333;
}

.program-content li:before {
    content: "✓";
    color: #7BCCC4;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(123, 204, 196, 0.1);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.program-content li:hover:before {
    background: rgba(123, 204, 196, 0.2);
    transform: scale(1.1);
}

.program-image {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    z-index: 2;
    border: 5px solid white;
    outline: 1px solid rgba(123, 204, 196, 0.2);
}

.program-image:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    outline-color: rgba(123, 204, 196, 0.5);
}

.program-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0));
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.program-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), rgba(0,0,0,0));
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-image:hover::after {
    opacity: 1;
}

.btn-program {
    background: linear-gradient(135deg, #E85A5A, #d64545);
    color: white;
    padding: 18px 42px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    box-shadow: 0 10px 25px rgba(232, 90, 90, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 2;
    font-size: 1rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.btn-program::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7BCCC4, #5A7A8A);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-program:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(232, 90, 90, 0.4);
}

.btn-program:hover::before {
    opacity: 1;
}

.btn-program::after {
    content: '→';
    position: absolute;
    right: 30px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.btn-program:hover::after {
    opacity: 1;
    transform: translateX(0);
    z-index: -1;
}

.btn-program:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(123, 204, 196, 0.4);
    color: white;
}

.btn-program:hover::before {
    transform: translateX(0);
}

/* Resources Page Styles */
.resources-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 40px;
    text-align: center;
}

.sanctuary-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.sanctuary-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.sanctuary-hero h2 {
    color: #5A7A8A;
    margin-bottom: 1rem;
}

.sanctuary-welcome {
    background: linear-gradient(135deg, #E85A5A 0%, #d44848 100%);
    padding: 2.5rem;
    border-radius: 20px;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(232, 90, 90, 0.2);
    position: relative;
    overflow: hidden;
}

.sanctuary-welcome::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.sanctuary-welcome h3 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: white;
    position: relative;
    z-index: 2;
}

.sanctuary-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.sanctuary-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.sanctuary-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.sanctuary-image-main:hover {
    transform: translateY(-5px);
}

.sanctuary-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sanctuary-image-main:hover .sanctuary-main-img {
    transform: scale(1.05);
}

.sanctuary-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    color: white;
}

.sanctuary-quote {
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.sanctuary-description {
    font-size: 1.2rem;
    color: #5A7A8A;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.sanctuary-features {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #7BCCC4;
    text-align: left;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: #E85A5A;
}

.feature-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7BCCC4 0%, #5fb3ac 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1.1rem;
    color: #5A7A8A;
    font-weight: 500;
}

.download-link {
    color: #E85A5A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.download-link:hover {
    color: #7BCCC4;
    text-decoration: underline;
}

.sanctuary-features-old {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.ecosystem-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ecosystem-header h2 {
    color: #5A7A8A;
    margin-bottom: 1rem;
}

.ecosystem-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.ecosystem-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ecosystem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7BCCC4, #E85A5A);
}

.ecosystem-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #E85A5A;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 40px;
    margin-bottom: 1.5rem;
}

.ecosystem-icon {
    margin-bottom: 1.5rem;
}

.ecosystem-card h3 {
    color: #5A7A8A;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ecosystem-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.ecosystem-link {
    color: #7BCCC4;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.ecosystem-link:hover {
    color: #E85A5A;
}

.coming-soon-tag {
    display: inline-block;
    background-color: #E85A5A;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}

.ecosystem-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(123, 204, 196, 0.1);
    border-radius: 12px;
}

.ecosystem-note {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 80px;
    text-align: center;
}

/* Certifications Section */
.certifications-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.certifications-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.certifications-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.certifications-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.certification-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.certification-logo {
    width: 100%;
    height: auto;
    max-width: 200px;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .package-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .journey-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content,
    .program-item,
    .sanctuary-content,
    .sanctuary-features-old {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .sanctuary-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .sanctuary-welcome {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .sanctuary-welcome h3 {
        font-size: 1.8rem;
    }
    
    .sanctuary-intro {
        font-size: 1rem;
    }
    
    .sanctuary-main-img {
        height: 300px;
    }
    
    .sanctuary-overlay {
        padding: 1.5rem;
    }
    
    .sanctuary-quote {
        font-size: 1rem;
    }
    
    .sanctuary-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .feature-item {
        padding: 1rem;
        text-align: left;
    }
    
    .feature-item span {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .program-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ecosystem-card {
        padding: 2rem 1.5rem;
    }
    
    .ecosystem-cta {
        padding: 1.5rem;
    }
    
    .ecosystem-subtitle {
        font-size: 1.1rem;
    }
    
    /* Mobile styles for sanctuary tools */
    .sanctuary-tools-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sanctuary-tools-text {
        padding-right: 0;
        order: 2;
    }
    
    .sanctuary-tools-image {
        order: 1;
    }
    
    .sanctuary-tools-img {
        height: 250px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .certification-item {
        padding: 1.5rem;
    }

    /* Sanctuary Tools Section */
.sanctuary-tools-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.sanctuary-tools-text {
    padding-right: 2rem;
}

.sanctuary-tools-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sanctuary-tools-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Footer Styles */
.footer {
    background: white;
    color: #333;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #666;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 2px solid #7BCCC4;
    border-radius: 50%;
    color: #7BCCC4;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #7BCCC4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 204, 196, 0.3);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #7BCCC4;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #7BCCC4;
}

.footer-cta {
    background: linear-gradient(135deg, #7BCCC4 0%, #5fb3ac 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(123, 204, 196, 0.2);
}

.footer-cta h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.footer-cta p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #999;
}

/* Cookie Notice and GDPR */
.cookie-notice,
.gdpr-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1002;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.cookie-notice {
    border-left: 4px solid #7BCCC4;
}

.gdpr-notice {
    border-left: 4px solid #E85A5A;
    bottom: 100px;
}

.notice-content {
    flex: 1;
    padding-right: 15px;
}

.notice-content h4 {
    margin-bottom: 5px;
    color: #333;
    font-size: 1rem;
}

.notice-content p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: #666;
}

.notice-actions {
    display: flex;
    gap: 10px;
}

.notice-btn {
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background: #7BCCC4;
    color: white;
    border: none;
}

.accept-btn:hover {
    background: #5fb3ac;
}

.decline-btn {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.decline-btn:hover {
    background: #f5f5f5;
}

.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container, .story-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-image, .story-hero .hero-image {
        order: 1;
    }
    
    .hero-content, .story-hero .hero-content {
        order: 2;
    }
    
    .hero-content::before {
        display: none;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        border-left: none;
        padding-bottom: 15px;
        border-bottom: 3px solid #7BCCC4;
    }
    
    .hero, .story-hero {
        padding: 60px 0 60px;
    }
    
    .top-banner ~ .hero, .top-banner ~ .story-hero {
        padding-top: 60px;
    }
    
    .hero-photo {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-cta .btn-primary {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
    
    .hero, .story-hero {
        padding: 50px 0 50px;
        min-height: auto;
    }
    
    .top-banner ~ .hero, .top-banner ~ .story-hero {
        padding-top: 50px;
    }
    
    .hero-photo {
        max-width: 300px;
    }
    
    /* Footer Responsive Design */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-cta {
        padding: 1rem;
    }
    
    .cookie-notice,
    .gdpr-notice {
        flex-direction: column;
        text-align: center;
        left: 10px;
        right: 10px;
    }
    
    .notice-content {
        padding-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-cta .btn-primary {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .hero, .story-hero {
        padding: 40px 0 40px;
    }
    
    .top-banner ~ .hero, .top-banner ~ .story-hero {
        padding-top: 40px;
    }
    
    .hero-photo {
        max-width: 250px;
    }
}