:root {
    --green-primary: #22c55e;
    --green-dark: #16a34a;
    --green-light: #4ade80;
    --teal: #14b8a6;
    --mint: #a7f3d0;
    --bg-cream: #fefcf3;
    --bg-white: #ffffff;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gentium Book Plus', 'Quicksand', 'Garamond', serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.85;
    overflow-x: hidden;
    letter-spacing: 0.015em;
}

.well-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.well-header {
    background: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.well-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.well-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.well-brand i {
    font-size: 2rem;
    color: var(--green-primary);
}

.well-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.well-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.well-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.well-nav {
    display: flex;
    gap: 2.5rem;
}

.well-nav a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.well-nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--green-primary);
    transition: width 0.3s;
    border-radius: 2px;
}

.well-nav a:hover {
    color: var(--green-primary);
}

.well-nav a:hover::before {
    width: 100%;
}

/* Hero */
.well-hero {
    position: relative;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--teal) 100%);
    color: white;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.well-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: wellPulse 8s ease-in-out infinite;
}

@keyframes wellPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.well-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.well-hero-text {
    position: relative;
}

.well-hero-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.well-hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.well-hero-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.well-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: white;
    color: var(--green-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.well-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.well-hero-img-wrapper {
    text-align: center;
}

.well-hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Topics Section */
.well-topics {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.well-section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.well-section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.well-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.well-section-text {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.well-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.well-topic-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.well-topic-card:hover {
    transform: translateY(-8px);
    border-color: var(--green-primary);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.well-topic-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--green-primary), var(--teal));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.well-topic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.well-topic-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.well-topic-desc {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.well-topic-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.well-tag {
    padding: 0.4rem 1rem;
    background: var(--mint);
    color: var(--green-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Practices Section */
.well-practices {
    padding: 6rem 2rem;
    background: var(--bg-cream);
}

.well-practices-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.well-practice-item {
    display: flex;
    gap: 2rem;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--green-primary);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.well-practice-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.well-practice-num {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-primary), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.well-practice-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.well-practice-text p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* Resources Section */
.well-resources {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.well-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.well-resource-box {
    background: var(--bg-cream);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.well-resource-box:hover {
    transform: translateY(-5px);
    border-color: var(--green-primary);
}

.well-resource-box i {
    font-size: 3rem;
    color: var(--green-primary);
    margin-bottom: 1.5rem;
}

.well-resource-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.well-resource-box p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Footer */
.well-footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem;
    margin-top: auto;
}

.well-footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.well-footer-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 968px) {
    .well-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .well-menu-toggle {
        display: flex;
    }

    .well-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .well-nav.active {
        display: flex;
    }
}

@media (max-width: 768px) {
    .well-topics-grid {
        grid-template-columns: 1fr;
    }

    .well-practice-item {
        flex-direction: column;
        text-align: center;
    }

    .well-hero-heading {
        font-size: 2.5rem;
    }
}

