/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #3d52a0;
    --secondary-dark: #7091e6;
    --accent-blue: #8697c4;
    --dark-gray: #3d444e;
    --medium-gray: #5a6472;
    --accent-teal: #5b9aa9;
    --text-dark: #3d52a0;
    --text-medium: #5a6472;
    --text-light: #8697c4;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(61,82,160,0.15);
    --shadow-md: 0 4px 16px rgba(61,82,160,0.2);
    --shadow-lg: 0 8px 32px rgba(61,82,160,0.25);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-light);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    position: relative;
}

.logo {
    z-index: 1001;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3d52a0;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: #8697c4;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: #3d52a0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7091e6, #8697c4);
    transition: var(--transition-base);
}

.nav-menu a:hover {
    color: #7091e6;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 8px;
    background: transparent;
    border: none;
    transition: var(--transition-base);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #3d52a0;
    transition: var(--transition-base);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3d52a0 0%, #5a6472 50%, #7091e6 100%);
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(112, 145, 230, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(91, 154, 169, 0.3) 0%, transparent 50%);
    animation: pulseGlow 10s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    z-index: 1;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 900px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    margin-bottom: 2.5rem;
}

.logo-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #7091e6 0%, #8697c4 100%);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(61, 82, 160, 0.4), 0 0 80px rgba(112, 145, 230, 0.3);
    animation: float 4s ease-in-out infinite;
    position: relative;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #7091e6, #5b9aa9, #8697c4);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

.logo-circle span {
    font-size: 1.8rem;
    font-weight: 900;
    color: #3d52a0;
    line-height: 1;
    letter-spacing: 1px;
}

.hero-date {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeIn 1.5s ease 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1.2s ease 0.2s both;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 400;
    animation: fadeInUp 1.2s ease 0.4s both;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #7091e6 0%, #8697c4 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: var(--transition-base);
    box-shadow: 0 8px 24px rgba(112, 145, 230, 0.5);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease 0.6s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-smooth);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(112, 145, 230, 0.7);
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: #f5f7fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7091e6, #8697c4);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-card.highlight {
    border: 2px solid #7091e6;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #3d52a0;
    font-weight: 800;
}

.stat-subtitle {
    color: #7091e6;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.conference-date {
    font-size: 1.5rem;
    color: #8697c4;
    margin-bottom: 2rem;
    font-weight: 700;
}

.stat-features {
    display: flex;
    gap: 2.5rem;
    justify-content: space-around;
}

.feature-item {
    text-align: center;
    flex: 1;
}

.feature-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #7091e6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.feature-label {
    display: block;
    color: #5a6472;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: #3d52a0;
    margin-bottom: 1rem;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #7091e6, #8697c4);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #5a6472;
    margin-top: 1.5rem;
}

/* About Section */
.about {
    background: #ffffff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #5a6472;
}

.about-content p {
    margin-bottom: 1.8rem;
}

/* Goals Section */
.goals {
    background: #f5f7fa;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.goal-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 82, 160, 0.05) 0%, rgba(112, 145, 230, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.goal-card:hover::before {
    opacity: 1;
}

.goal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.goal-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.3);
    transition: var(--transition-base);
}

.goal-card:hover .goal-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.goal-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #3d52a0;
    font-weight: 700;
}

.goal-card p {
    color: #5a6472;
    line-height: 1.7;
}

/* Committees Section */
.committees {
    background: #ffffff;
}

.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.committee-card {
    background: linear-gradient(135deg, #3d52a0 0%, #3d444e 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.committee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #7091e6, #5b9aa9);
}

.committee-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(112, 145, 230, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.committee-card:hover::after {
    transform: scale(1.5);
    right: -20px;
}

.committee-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(61,82,160,0.4);
}

.committee-number {
    font-size: 4rem;
    font-weight: 900;
    color: #8697c4;
    margin-bottom: 1rem;
    opacity: 0.6;
    line-height: 1;
}

.committee-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.committee-card p {
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.committee-topics {
    list-style: none;
    padding: 0;
}

.committee-topics li {
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #8697c4;
    font-weight: 600;
    transition: var(--transition-base);
    padding-left: 1.5rem;
    position: relative;
}

.committee-topics li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #7091e6;
    font-weight: bold;
}

.committee-topics li:hover {
    padding-left: 2rem;
    color: #ffffff;
}

/* Speakers Section */
.speakers {
    background: #f5f7fa;
}

.speakers-content {
    max-width: 1000px;
    margin: 0 auto;
}

.speakers-content > p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    text-align: center;
    color: #5a6472;
}

.speakers-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.highlight-box {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border-top: 4px solid #8697c4;
}

.highlight-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: #7091e6;
}

.highlight-box h4 {
    font-size: 1.8rem;
    color: #7091e6;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.highlight-box p {
    color: #5a6472;
    line-height: 1.7;
}

.potential-speakers {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 6px solid #7091e6;
}

.potential-speakers h4 {
    font-size: 1.5rem;
    color: #3d52a0;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.potential-speakers p {
    line-height: 1.9;
    color: #5a6472;
    font-size: 1.05rem;
}

/* Theme Section */
.theme {
    background: linear-gradient(135deg, #3d52a0 0%, #3d444e 50%, #5a6472 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.theme-header {
    position: relative;
    z-index: 1;
}

.theme-label {
    display: inline-block;
    background: linear-gradient(135deg, #3d52a0 0%, #3d444e 50%, #5a6472 100%);
    color: #ffffff;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.theme-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 900;
    line-height: 1.2;
}

.theme-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.theme-content p {
    margin-bottom: 1.8rem;
    opacity: 0.95;
}

.theme-content strong {
    color: #8697c4;
    font-weight: 700;
}

.theme-quote {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.theme-quote p {
    font-size: 2.5rem;
    font-style: italic;
    color: #8697c4;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(61,82,160,0.4);
}

/* Register Section */
.register {
    background: linear-gradient(135deg, #3d52a0 0%, #3d444e 50%, #5a6472 100%);
    color: #ffffff;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.register-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.register-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.register .cta-button {
    background: #3d52a0;
    color: #ffffff;
}

.register .cta-button:hover {
    background: #3d444e;
}

/* Footer */
.footer {
    background: #3d52a0;
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #8697c4;
    font-weight: 800;
}

.footer-col p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
    color: rgba(255,255,255,0.85);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: var(--transition-base);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.social-links a::before {
    content: '';
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
    transition: var(--transition-base);
}

.social-links a[aria-label="Instagram"]::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path><line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line></svg>');
}

.social-links a[aria-label="LinkedIn"]::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path><rect x="2" y="9" width="4" height="12"></rect><circle cx="4" cy="4" r="2"></circle></svg>');
}

.social-links a[aria-label="Twitter"]::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"></path></svg>');
}

.social-links a[aria-label="Facebook"]::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"></path></svg>');
}

.social-links a:hover {
    color: #8697c4;
    padding-left: 8px;
}

.social-links a:hover::before {
    filter: brightness(0) invert(1) sepia(0.5) saturate(2) hue-rotate(200deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Mobile & Tablet Responsive */
@media (max-width: 1024px) {
    .nav-menu {
gap: 1.5rem;
}
.hero-title {
    font-size: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
}
}
@media (max-width: 768px) {
.hamburger {
display: flex;
}
.nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    padding: 3rem 0;
    gap: 0;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-menu a {
    font-size: 1.1rem;
    display: block;
    padding: 1rem 2rem;
}

.nav-menu a::after {
    display: none;
}

.hero {
    min-height: 80vh;
    margin-top: 80px;
}

.hero-title {
    font-size: 2rem;
}

.hero-subtitle {
    font-size: 1.1rem;
}

.logo-circle {
    width: 160px;
    height: 160px;
}

.logo-circle span {
    font-size: 1.4rem;
}

.section-header h2 {
    font-size: 2rem;
}

.theme-title {
    font-size: 1.8rem;
}

.theme-quote p {
    font-size: 1.8rem;
}

.stat-features {
    flex-direction: column;
    gap: 1.5rem;
}

.goals-grid,
.committees-grid,
.speakers-highlights {
    grid-template-columns: 1fr;
}

section {
    padding: 60px 0;
}

.register-content h2 {
    font-size: 2rem;
}

.cta-button {
    padding: 14px 36px;
    font-size: 1rem;
}
}
@media (max-width: 480px) {
.container {
padding: 0 16px;
}
.logo a {
    font-size: 1.5rem;
}

.hero-title {
    font-size: 1.7rem;
}

.section-header h2 {
    font-size: 1.7rem;
}

.stat-card,
.goal-card,
.committee-card {
    padding: 2rem;
}

.feature-number {
    font-size: 2.5rem;
}

.committee-number {
    font-size: 3rem;
}
}
/* Smooth Scrolling */
html {
scroll-behavior: smooth;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #f5f7fa;
}
::-webkit-scrollbar-thumb {
background: #8697c4;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: #7091e6;
}
/* Selection Color */
::selection {
background: #7091e6;
color: #ffffff;
}
::-moz-selection {
background: #7091e6;
color: #ffffff;
}