/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a3a52;
    --secondary-color: #d4a574;
    --accent-color: #e8d5c4;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(26, 58, 82, 0.08);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.2;
}

.logo-icon {
    height: 160px;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.logo-text {
    display: none;
    color: var(--primary-color);
    font-size: 12px;
}

.logo-text strong {
    color: var(--secondary-color);
    font-size: 14px;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
    background-color: rgba(212, 165, 116, 0.1);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(232, 213, 196, 0.1) 100%);
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5aa0 100%);
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: slideInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: slideInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: slideInUp 0.8s ease 0.4s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: #e8c54a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Stats Section */
.stats {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.stat-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Mission Section */
.mission {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-content p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.quote {
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
    margin-top: 2rem;
}

.quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quote span {
    color: #666;
    font-style: normal;
    font-size: 0.95rem;
}

.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.mission-logo {
    max-width: 300px;
    max-height: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(212, 165, 116, 0.2));
    animation: float 6s ease-in-out infinite;
}

.visual-element {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
    animation: float 6s ease-in-out infinite;
}

/* Featured Section */
.featured {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.featured-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.featured-card p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5aa0 100%);
    color: var(--text-light);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-section a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.page-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5aa0 100%);
    z-index: -1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--accent-color);
}

.content-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.content-section p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Focus List */
.focus-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.focus-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.focus-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.focus-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.focus-item p {
    color: #666;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
    padding: 4rem 2rem;
    border-radius: 10px;
    border: none;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
}

/* Mission Statement */
.mission-statement {
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.08) 0%, rgba(212, 165, 116, 0.08) 100%);
    padding: 3rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.mission-statement p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-statement p:first-child {
    font-size: 1.15rem;
    color: var(--primary-color);
}

/* Philosophy Box */
.philosophy-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
    border-top: 4px solid var(--secondary-color);
    text-align: center;
    margin: 2rem 0;
}

.philosophy-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.philosophy-author {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Objectives Grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.objective-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    padding-top: 3.5rem;
}

.objective-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.objective-number {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    opacity: 0.8;
}

.objective-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.objective-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Scope List */
.scope-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.scope-column {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.scope-column ul {
    list-style: none;
}

.scope-column li {
    padding: 0.8rem 0;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 25px;
}

.scope-column li:last-child {
    border-bottom: none;
}

.scope-column li:before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid var(--secondary-color);
}

.contact-info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-info-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info-card .small {
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Contact Form */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.contact-form button {
    width: 100%;
}

/* Involvement Grid */
.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.involvement-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.involvement-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.involvement-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.involvement-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1rem 0;
}

.resource-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, #fafbfc 100%);
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(26, 58, 82, 0.08);
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resource-card:hover::before {
    opacity: 1;
}

.resource-card:hover {
    box-shadow: 0 12px 35px rgba(26, 58, 82, 0.15);
    transform: translateY(-8px) scale(1.01);
    border-left-color: var(--primary-color);
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 600;
    flex-grow: 1;
}

.resource-meta {
    color: #555;
    font-size: 0.9rem;
    margin: 0.4rem 0;
    line-height: 1.5;
}

.resource-meta strong {
    color: var(--primary-color);
    font-weight: 600;
}

.resource-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    margin: 1rem 0 0.8rem 0;
    padding: 0.6rem 1.2rem;
    border: 1.5px solid var(--secondary-color);
    border-radius: 6px;
    align-self: flex-start;
    background-color: transparent;
}

.resource-link:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: translateX(4px);
}

.resource-type {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16293f 100%);
    color: var(--accent-color);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Associate Detail Page Styles */
.associate-detail {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
}

.associate-profile {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 4rem;
}

.profile-hero {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    padding: 3rem;
    border-bottom: 2px solid var(--accent-color);
}

.profile-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-image .no-image {
    width: 100%;
    max-width: 280px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 2rem;
}

.profile-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.profile-field {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profile-affiliation {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.profile-bio {
    padding: 3rem;
}

.profile-bio h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.profile-bio p {
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
}

.back-link {
    padding: 1.5rem 3rem;
    text-align: center;
}

.back-link a {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-link a:hover {
    background-color: var(--primary-color);
    color: white;
}

.related-associates {
    margin-top: 3rem;
}

.related-associates h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Associates Page Section */
.associates-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.03) 0%, rgba(212, 165, 116, 0.03) 100%);
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-intro p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.search-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0 3rem;
}

.search-input {
    width: 100%;
    max-width: 500px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    background-color: white;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
}

.search-input::placeholder {
    color: #999;
}

.associates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.associate-card-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.associate-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.associate-card-link:hover .associate-card {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-left: 4px solid var(--secondary-color);
}

.associate-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.associate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.associate-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

.associate-card-link:hover .associate-image img {
    transform: scale(1.05);
}

.associate-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.associate-info h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.associate-info .field {
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.associate-info .affiliation {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    color: #999;
    font-size: 1.1rem;
}

.resource-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Publications List */
.publications-list {
    margin-top: 2rem;
}

.publication-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.publication-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.publication-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.publication-author {
    color: var(--secondary-color);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.publication-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Pathways Grid */
.pathways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pathway-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--secondary-color);
    transition: var(--transition);
}

.pathway-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pathway-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.pathway-card ul {
    list-style: none;
}

.pathway-card li {
    padding: 0.6rem 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.pathway-card li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Associates Page */
.search-box {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.search-input {
    width: 100%;
    max-width: 500px;
    padding: 12px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
    background: var(--bg-white);
}

.associates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.associate-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.associate-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.associate-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.associate-card .field {
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.associate-card .affiliation {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Activities Section */
.activities-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.03) 0%, rgba(212, 165, 116, 0.03) 100%);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.activity-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.activity-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-header {
    padding: 1.5rem 2rem 0.5rem;
    flex: 0 0 auto;
}

.activity-body {
    padding: 0 2rem 2rem;
    flex: 1 1 auto;
}

.activity-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.activity-header h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.activity-body p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.activity-details {
    background: rgba(212, 165, 116, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.activity-details p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.activity-details ul {
    list-style: none;
    padding-left: 0;
}

.activity-details li {
    color: #555;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.activity-details li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.activity-link {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.activity-link .btn {
    width: 100%;
    text-align: center;
    display: inline-block;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16293f 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

