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

:root {
    --primary-color: #008B8B;
    --primary-dark: #006666;
    --primary-light: #20B2AA;
    --secondary-color: #48D1CC;
    --accent-color: #00CED1;
    --accent-light: #7FFFD4;
    --text-color: #1a1a1a;
    --text-light: #4a5568;
    --text-lighter: #718096;
    --bg-color: #ffffff;
    --bg-light: #f7fafc;
    --bg-gradient: linear-gradient(180deg, #ffffff 0%, #f0fdfd 100%);
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --hover-color: #006666;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.75;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.011em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation - Premium Design */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 139, 139, 0.1);
    color: var(--text-color);
    padding: 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 32px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-brand a:hover {
    transform: translateY(-1px);
}

.logo {
    height: 48px;
    width: auto;
    max-width: 200px;
    max-height: 48px;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
}

.nav-brand a:hover .logo {
    transform: scale(1.05) rotate(2deg);
}

.brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    letter-spacing: -0.01em;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(0, 206, 209, 0.08);
}

.nav-link:hover::before {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 206, 209, 0.12);
    font-weight: 600;
}

.nav-link.active::before {
    transform: scaleX(1);
}

/* Dropdown Menu - Premium */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    min-width: 240px;
    box-shadow: var(--shadow-xl);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.96);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    padding: 12px;
    margin: 0;
    border: 1px solid rgba(0, 139, 139, 0.1);
}

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

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
    transform: scaleY(0);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(0, 206, 209, 0.1) 0%, transparent 100%);
    color: var(--primary-color);
    padding-left: 1.5rem;
    transform: translateX(4px);
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

/* Nested Dropdown Menu - appears to the right */
.dropdown-menu .dropdown {
    position: relative;
}

.dropdown-menu .dropdown > .dropdown-menu {
    top: 0;
    left: calc(100% + 12px);
    margin-top: 0;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(-12px) scale(0.96);
    display: block;
}

/* Only show nested menu when hovering directly on the nested dropdown item */
.dropdown-menu .dropdown:hover > .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) scale(1);
}

.dropdown-menu .dropdown > a::after {
    content: '→';
    float: right;
    margin-left: 0.5rem;
    color: var(--text-lighter);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu .dropdown:hover > a::after {
    transform: translateX(4px);
    color: var(--primary-color);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: none;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 206, 209, 0.05);
        margin: 0.5rem 0;
        border: 1px solid rgba(0, 206, 209, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }
    
    .dropdown-menu.active {
        max-height: 1000px;
        padding: 12px;
    }
    
    .dropdown-menu a {
        color: var(--text-color);
        padding-left: 2rem;
    }
    
    /* Nested dropdown on mobile */
    .dropdown-menu .dropdown-menu {
        position: static;
        left: auto;
        margin-top: 0.5rem;
        margin-left: 1rem;
        background: rgba(0, 206, 209, 0.08);
        border-left: 3px solid var(--primary-color);
    }
    
    .dropdown-menu .dropdown > a::after {
        content: '▼';
        float: right;
        margin-left: 0.5rem;
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }
    
    .dropdown-menu .dropdown.active > a::after {
        transform: rotate(180deg);
    }
}

/* Tablet/Mid-size screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        gap: 4px;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .dropdown-menu {
        min-width: 220px;
    }
    
    .dropdown-menu .dropdown > .dropdown-menu {
        left: calc(100% + 8px);
    }
}

/* Main Content - Premium Layout */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 4rem 0 6rem;
    background: var(--bg-gradient);
}

.page-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 4rem 0;
    position: relative;
}

.hero-header {
    background-image: url('../img/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    margin: 3rem 0 5rem;
    padding: 6rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 250, 252, 0.6) 100%);
    z-index: 0;
}

.hero-header h1,
.hero-header .lead {
    position: relative;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 2px;
}

.page-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.content-section {
    margin-bottom: 4rem;
    background: white;
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 139, 139, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-section:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.content-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-color);
    margin-bottom: 2rem;
    margin-top: 0;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, var(--accent-color), var(--accent-light)) 1;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.content-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.875rem);
    color: var(--text-color);
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.content-section h4 {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: var(--text-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.content-section p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.85;
    font-size: 1.05rem;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.content-section li {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1.05rem;
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    font-weight: 500;
    position: relative;
}

.content-section a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Quick Links - Premium Cards */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.quick-link-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.05) 0%, rgba(127, 255, 212, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.quick-link-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.quick-link-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
    border-color: var(--accent-color);
}

.quick-link-card:hover::before {
    opacity: 1;
}

.quick-link-card:hover::after {
    transform: scaleY(1);
}

.quick-link-card h3 {
    color: var(--text-color);
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.quick-link-card:hover h3 {
    color: var(--primary-color);
}

.quick-link-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

.quick-link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.quick-link-card:hover .quick-link-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2.5rem 0;
    background-color: white;
    box-shadow: var(--shadow);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

th, td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background-color: rgba(0, 206, 209, 0.05);
}

/* Footer - Premium */
.footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 4rem 0 2.5rem;
    margin-top: 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer p {
    margin: 1rem 0;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Page-specific styles */
.event-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border-left: 5px solid;
    border-image: linear-gradient(180deg, var(--accent-color), var(--accent-light)) 1;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px) translateY(-4px);
}

.event-card h3 {
    margin-top: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.event-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.participant-list {
    list-style: none;
    margin-left: 0;
}

.participant-list li {
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.participant-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.resource-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.resource-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.resource-card h4 {
    margin-top: 0;
    color: var(--primary-color);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

/* Team Member Grid - Premium */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.team-member {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    align-items: start;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.team-member-image {
    position: relative;
    width: 200px;
    height: 200px;
    min-width: 200px;
    max-width: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.team-member-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: 200px !important;
    max-height: 200px !important;
    object-fit: cover;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-info h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.875rem);
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.team-member-info h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 2px solid transparent;
}

.team-member-info h3 a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.team-member-info p {
    margin-bottom: 0;
    color: var(--text-light);
    line-height: 1.85;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
    }
    
    .team-member-image {
        width: 180px !important;
        height: 180px !important;
        min-width: 180px !important;
        max-width: 180px !important;
        margin: 0 auto;
    }
    
    .team-member-image img {
        max-width: 180px !important;
        max-height: 180px !important;
    }
}

/* Breadcrumb - Premium */
.breadcrumb {
    padding: 2rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 600;
    position: relative;
}

.breadcrumb a::after {
    content: '/';
    margin: 0 0.75rem;
    color: var(--text-lighter);
    font-weight: 400;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb a:last-child::after {
    display: none;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background-color: rgba(0, 206, 209, 0.25);
    color: var(--text-color);
}

/* Focus styles */
a:focus,
button:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.quick-link-card {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.quick-link-card:nth-child(1) { animation-delay: 0.1s; }
.quick-link-card:nth-child(2) { animation-delay: 0.2s; }
.quick-link-card:nth-child(3) { animation-delay: 0.3s; }
.quick-link-card:nth-child(4) { animation-delay: 0.4s; }
.quick-link-card:nth-child(5) { animation-delay: 0.5s; }

.content-section {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

/* Form Container */
.form-container {
    margin-top: 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: white;
    border: 1px solid var(--border-color);
}

.form-container iframe {
    display: block;
    width: 100%;
    min-height: 600px;
    border: none;
}

@media (max-width: 768px) {
    .form-container iframe {
        min-height: 800px;
    }
}

/* PDF Link Styling */
.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.pdf-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.pdf-link::before {
    content: '📄';
    font-size: 1.2rem;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .content-section {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .quick-link-card {
        padding: 2rem;
    }
    
    .hero-header {
        padding: 4rem 2rem;
        border-radius: 16px;
    }
}
