:root {
     --primary-color: #E9CDD0;
     --primary-dark: #D4B5BA;
     --primary-light: #F1DDE0;
     --secondary-color: #2C5F41;
     --accent-color: #E9CDD0;
     --emory-blue: #002F6C;
     --text-dark: #2D3748;
     --text-light: #4A5568;
     --bg-soft: #F8FAFC;
     --white: #FFFFFF;
     --gradient-1: linear-gradient(135deg, #E9CDD0 0%, #F1DDE0 100%);
     --gradient-2: linear-gradient(135deg, #D4B5BA 0%, #E9CDD0 100%);
     --gradient-3: linear-gradient(135deg, #E9CDD0 0%, #F1DDE0 100%);
     --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
     --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
     --radius: 16px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(135deg, #F8FAFC 0%, #EDF2F7 100%);
    min-height: 100vh;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-1);
    border-radius: var(--radius);
    padding: 60px 40px;
    margin-bottom: 60px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Crimson Pro', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #FFFFFF, #FED7D7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin-bottom: 32px;
}

/* Intro Container Enhancement */
.intro-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.intro-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
}

.intro-container p {
    flex: 1 1 300px;
    font-family: 'Crimson Pro', serif;
    font-size: 24px;
    color: var(--emory-blue);
    line-height: 1.7;
    margin: 0;
}

.intro-image {
    width: 180px;
    height: auto;
    margin-left: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.intro-image:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .intro-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .intro-image {
        margin-left: 0;
        margin-top: 20px;
        align-self: center;
    }
}
.wellbeing-callout {
     background: var(--gradient-1);
     padding: 40px;
     font-size: 2.5rem;
     font-weight: 400;
     font-family: 'Crimson Pro', serif;
     border-radius: var(--radius);
     box-shadow: var(--shadow-hover);
     max-width: 600px;
     margin: 60px auto;
     text-align: center;
     color: white;
     position: relative;
     overflow: hidden;
     transition: transform 0.3s ease;
}

.wellbeing-callout::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: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Section Header */
 .section-header {
     display: flex;
     align-items: center;
     margin-bottom: 24px;
}
 .section-icon {
     width: 44px;
     height: 44px;
     border-radius: 8px;
     margin-right: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 22px;
     color: white;
}
 .assessment-icon {
     background: var(--gradient-2);
}
 .explore-icon {
     background: var(--gradient-3);
}
 .support-icon {
     background: var(--gradient-1);
}
 .section h2 {
     font-family: 'Crimson Pro', serif;
     color: var(--text-dark);
     font-size: 1.75rem;
     font-weight: 600;
     margin: 0;
}

/* Elements Descriptions */
.simple-elements .element {
    position: relative;
    padding-left: 28px;
    margin: 12px 0;
    font-family: 'Crimson Pro', serif;
    font-size: 22px;
    color: var(--text-dark);
    line-height: 1.6;
}

.simple-elements .element::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
}
.check-in-text {
    font-family: 'Crimson Pro', serif;
    font-size: 22px;
    font-weight: 500;
}

.assessment-item {
    margin-bottom: 24px;
}

.assessment-item-text {
    font-family: 'Crimson Pro', serif;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 500;
}

/* Self-Assessment Rating System - Framework Override */
.assessment-item {
    margin-bottom: 24px;
    position: relative;
}

.assessment-item-text {
    font-family: 'Crimson Pro', serif;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 500;
}

.rating-options {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.rating-options label {
    cursor: pointer !important;
    display: inline-block !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    flex-shrink: 0;
}

.rating-options input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.rating-option {
    display: inline-block !important;
    padding: 6px 10px !important;
    background: var(--bg-soft) !important;
    border: 2px solid transparent !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
    user-select: none !important;
    position: relative !important;
    z-index: 1 !important;
    margin: 0 !important;
    color: var(--text-dark) !important;
}

.rating-options input[type="radio"]:checked + .rating-option {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

.rating-options label:hover .rating-option {
    border-color: var(--primary-color) !important;
    background: rgba(83, 84, 134, 0.1) !important;
}

/* Reset any Bootstrap/Tailwind form styling */
.interactive-list {
    all: unset;
}

.interactive-list * {
    box-sizing: border-box;
}
/* Dig Deeper Section */
.dig-deeper .element {
    position: relative;
    padding-left: 28px;
    margin: 12px 0;
    font-family: 'Crimson Pro', serif;
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.6;
}

.dig-deeper .element::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
}

/* Support Section Enhancement */
.support-card {
    background: var(--gradient-2);
    color: white;
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

/* Grid layout for elements */
/* Interactive Card Elements - For hyperlinked resources */
.interactive-elements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.interactive-elements .element {
    background: var(--white);
    border: 2px solid var(--bg-soft);
    border-radius: var(--radius);
    padding: 24px;
    margin: 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    min-height: 200px; /* Changed from fixed height to min-height */
    height: auto; /* Allow height to expand as needed */
}

.interactive-elements .element:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.interactive-elements .element::before {
    content: none; /* Remove bullet point */
}

.interactive-elements .element .resource-title {
    font-family: 'Crimson Pro', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
    flex-shrink: 0; /* Prevent title from shrinking */
}


.interactive-elements .element .resource-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 40px; /* Space for the arrow */
    flex-grow: 1; /* Fill remaining space */
    overflow: hidden; /* Hide overflow if text is too long */
}
.interactive-elements .element::after {
    content: '→';
    position: absolute;
    bottom: 16px;
    right: 20px;
    color: var(--primary-color);
    font-size: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.interactive-elements .element:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Alternative card style with icon */
.interactive-elements .element.with-icon {
    padding-left: 60px;
}

.interactive-elements .element.with-icon::before {
    content: '🔗';
    position: absolute;
    left: 20px;
    top: 24px;
    font-size: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}