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

picture {
    display: block;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
    overflow-x: hidden;
    line-height: 1.6;
}

.wave-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

canvas {
    width: 100%;
    height: 100%;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #00ff88;
}

.hz {
    font-weight: 700;
}

nav a {
    color: #e8e8e8;
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

nav a:hover {
    color: #00ff88;
}

.sponsor-banner {
    padding: 1rem 0;
    background: rgba(0, 255, 136, 0.05);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    margin-bottom: 2rem;
}

.sponsor-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sponsor-label {
    font-size: 0.8rem;
    color: #b8b8b8;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sponsor-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ff88;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}

.sponsor-logo:hover {
    opacity: 0.8;
}

.sponsor-tagline {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

.hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 200;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.frequency-tag {
    display: inline-block;
    font-size: 1.2rem;
    color: #00ff88;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    padding: 0.5rem 2rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 2rem;
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: #b8b8b8;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 3rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #00ff88;
    color: #0a0a0a;
    font-weight: 600;
}

.btn-primary:hover {
    background: #00dd77;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #e8e8e8;
    border: 1px solid #e8e8e8;
}

.btn-secondary:hover {
    background: rgba(232, 232, 232, 0.1);
    border-color: #00ff88;
    color: #00ff88;
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.1rem;
}

.seminar-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-item picture {
    flex-shrink: 0;
    display: block;
}

.detail-icon {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    display: block;
}

.detail-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.detail-text strong {
    color: #00ff88;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.detail-text span {
    color: #b8b8b8;
    font-size: 0.95rem;
}

.features {
    padding: 6rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transition: all 0.3s;
}

.feature:hover {
    background: rgba(0, 255, 136, 0.03);
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.feature picture {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1.5rem;
}

.feature-icon {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.feature p {
    color: #b8b8b8;
    line-height: 1.7;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    color: #00ff88;
}

.approach-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 136, 0.03) 50%, transparent 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.approach-tagline {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #00ff88;
    text-transform: uppercase;
    margin-bottom: 3rem;
    position: relative;
    padding: 0 2rem;
}

.approach-tagline::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #00ff88 50%, transparent 100%);
    margin: 1rem auto 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-item {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.approach-item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-3px);
    border-color: rgba(0, 255, 136, 0.15);
}

.approach-number {
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 0.75rem;
    font-weight: 200;
    opacity: 0.6;
}

.approach-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #e8e8e8;
    letter-spacing: 0.05em;
}

.approach-item p {
    color: #b8b8b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.highlights-section {
    padding: 6rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.highlight {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #00ff88;
}

.highlight ul {
    list-style: none;
    padding-left: 1.5rem;
}

.highlight li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #b8b8b8;
    line-height: 1.7;
}

.highlight li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00ff88;
    font-size: 1.2rem;
}

.who-section {
    padding: 6rem 0;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.who-item {
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s;
}

.who-item:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-3px);
}

.who-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #b8b8b8;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}

.cta-section {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 136, 0.05) 50%, transparent 100%);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 2.5rem;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    padding: 2rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.timeline-time {
    font-size: 1.2rem;
    color: #00ff88;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.timeline-description {
    color: #b8b8b8;
    line-height: 1.7;
}

.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #00ff88;
}

.content-section h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #00ff88;
}

.content-section p {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.content-section ul {
    list-style: none;
    margin: 2rem 0;
}

.content-section li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #b8b8b8;
    line-height: 1.6;
}

.content-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00ff88;
    font-size: 1.5rem;
}

.science-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    margin: 3rem 0;
}

.science-card h4 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

.testimonial {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: #00ff88;
    font-weight: 500;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00ff88;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #e8e8e8;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff88;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: 6rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00ff88;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Charity Section */
.charity-section {
    text-align: center;
    padding: 2rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.charity-text {
    color: #b8b8b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.charity-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.charity-link {
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.charity-name {
    color: #888;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.charity-link:hover .charity-name {
    color: #00ff88;
}

@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .approach-item {
        max-width: 100%;
    }

    .approach-tagline {
        font-size: 1rem;
        letter-spacing: 0.12em;
    }
}

/* Image Styles */
.hero-image-container {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.1);
}

.hero-image-container picture {
    display: block;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.content-image {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 0.5rem;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.image-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
}

.image-card picture {
    display: block;
    width: 100%;
}

.image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.image-card-content {
    padding: 1.5rem;
}

.image-card-content h3 {
    color: #00ff88;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.image-card-content p {
    color: #b8b8b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.inline-image-left,
.inline-image-right {
    max-width: 400px;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 1rem;
}

.inline-image-left {
    float: left;
    margin-right: 2rem;
}

.inline-image-right {
    float: right;
    margin-left: 2rem;
}

/* Mobile Menu Styles - Luxury Edition */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #00ff88;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
    transition: all 0.3s ease;
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(0, 30, 20, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    transition: right 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #00ff88;
    font-size: 2.5rem;
    cursor: pointer;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    z-index: 10;
}

.mobile-nav-close:active {
    transform: scale(0.9);
    background: rgba(0, 255, 136, 0.1);
}

.mobile-nav-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.15);
    background: rgba(0, 0, 0, 0.3);
}

.mobile-nav-logo {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #00ff88;
    margin-top: 1rem;
}

.mobile-nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
}

.mobile-nav a {
    display: block;
    color: #e8e8e8;
    text-decoration: none;
    padding: 1.5rem 1rem;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00ff88 0%, #00aa66 100%);
    transform: translateX(-4px);
    transition: transform 0.4s ease;
}

.mobile-nav a:active::before {
    transform: translateX(0);
}

.mobile-nav a:active {
    color: #00ff88;
    padding-left: 1.5rem;
    background: rgba(0, 255, 136, 0.05);
}

.mobile-nav-footer {
    padding: 2rem;
    border-top: 1px solid rgba(0, 255, 136, 0.15);
    background: rgba(0, 0, 0, 0.3);
}

.mobile-nav-cta {
    display: block;
    text-align: center;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #00ff88 0%, #00cc77 100%);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.mobile-nav-cta:active {
    transform: scale(0.97);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.mobile-nav-contact {
    text-align: center;
    margin-top: 1.5rem;
    color: #b8b8b8;
    font-size: 0.9rem;
}

.mobile-nav-contact a {
    color: #00ff88;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem;
    border: none;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Premium Mobile Styles - Tablet & Mobile */
@media (max-width: 768px) {
    body {
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .container {
        padding: 0 1.25rem;
    }

    nav {
        display: none;
    }

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

    .mobile-nav {
        display: flex;
    }

    .wave-background {
        opacity: 0.12;
    }

    header {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(0, 255, 136, 0.1);
        background: rgba(10, 10, 10, 0.8);
        backdrop-filter: blur(10px);
        margin: 0 -1.25rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .logo {
        font-size: 1.4rem;
    }

    .sponsor-banner {
        padding: 1.5rem 0;
        margin: 0 -1.25rem 2rem;
        background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 255, 136, 0.03) 100%);
        border-bottom: 1px solid rgba(0, 255, 136, 0.15);
    }

    .sponsor-content {
        gap: 0.75rem;
        padding: 0 1.25rem;
    }

    .sponsor-label {
        font-size: 0.7rem;
    }

    .sponsor-logo {
        font-size: 1.1rem;
    }

    .sponsor-tagline {
        font-size: 0.7rem;
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 3rem 0 2.5rem;
        margin-top: 1rem;
    }

    h1 {
        font-size: 2.75rem;
        line-height: 1.15;
        margin-bottom: 1.25rem;
        letter-spacing: -0.01em;
    }

    .frequency-tag {
        font-size: 0.95rem;
        padding: 0.6rem 1.5rem;
        letter-spacing: 0.25em;
        margin-bottom: 1.5rem;
        border-width: 1.5px;
    }

    .subtitle {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .btn {
        width: 100%;
        padding: 1.35rem 2.5rem;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .btn-primary {
        background: linear-gradient(135deg, #00ff88 0%, #00dd77 100%);
        box-shadow: 0 8px 24px rgba(0, 255, 136, 0.3);
    }

    .btn-secondary {
        border-width: 1.5px;
        background: rgba(255, 255, 255, 0.02);
    }

    .seminar-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2.5rem 1.5rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 255, 136, 0.02) 100%);
        border: 1px solid rgba(0, 255, 136, 0.15);
        border-radius: 1.25rem;
        margin: 3rem 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .detail-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        padding: 1.25rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .detail-item picture {
        display: block;
        margin: 0 auto 0.5rem;
    }

    .detail-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto;
        border-radius: 10px;
        object-fit: cover;
        display: block;
    }

    .detail-text {
        align-items: center;
        text-align: center;
    }

    .detail-text strong {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .detail-text span {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 4rem 0;
    }

    .feature {
        padding: 2.5rem 2rem;
        border-radius: 1.25rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 255, 136, 0.02) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .feature picture {
        display: block;
        width: 100%;
        margin: 0 auto 1.5rem;
    }

    .feature-icon {
        width: 100%;
        height: 200px;
        margin: 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        border-radius: 12px;
        object-fit: cover;
        display: block;
    }

    .feature h3 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
        text-align: center;
    }

    .feature p {
        text-align: center;
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
        line-height: 1.3;
    }

    .approach-section {
        padding: 3rem 0;
    }

    .approach-tagline {
        font-size: 0.95rem;
        letter-spacing: 0.12em;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .approach-tagline::after {
        width: 60px;
        margin: 0.75rem auto 0;
    }

    .approach-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .approach-item {
        padding: 1.75rem 1.5rem;
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .approach-number {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        opacity: 0.5;
    }

    .approach-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        letter-spacing: 0.03em;
    }

    .approach-item p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .highlights-section {
        padding: 4rem 0;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlight {
        padding: 2.5rem 2rem;
        border-radius: 1.25rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 255, 136, 0.02) 100%);
        border: 1px solid rgba(0, 255, 136, 0.15);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .highlight h3 {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }

    .highlight li {
        padding: 0.85rem 0;
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .who-section {
        padding: 4rem 0;
    }

    .who-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .who-item {
        padding: 1.75rem 1.5rem;
        border-radius: 0.75rem;
        font-size: 1.05rem;
        background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 255, 136, 0.04) 100%);
        border: 1.5px solid rgba(0, 255, 136, 0.25);
        box-shadow: 0 4px 16px rgba(0, 255, 136, 0.1);
    }

    .who-note {
        font-size: 1.05rem;
        line-height: 1.9;
        margin-top: 2rem;
        padding: 0 0.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial {
        padding: 2.5rem 2rem;
        border-radius: 1.25rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 255, 136, 0.02) 100%);
        border: 1px solid rgba(0, 255, 136, 0.15);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .testimonial-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }

    .image-card {
        border-radius: 1.25rem;
        overflow: hidden;
        border: 1px solid rgba(0, 255, 136, 0.15);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .image-card picture {
        display: block;
        width: 100%;
    }

    .image-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .image-card-content {
        padding: 2rem 1.75rem;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    }

    .image-card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .image-card-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .inline-image-left,
    .inline-image-right {
        float: none;
        margin: 2.5rem auto;
        display: block;
        max-width: 100%;
        border-radius: 1rem;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    }

    .hero-image-container {
        margin: 2.5rem 0;
        border-radius: 1.25rem;
        box-shadow: 0 16px 48px rgba(0, 255, 136, 0.15);
        overflow: hidden;
        border: 1px solid rgba(0, 255, 136, 0.2);
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-section h2 {
        font-size: 2rem;
        line-height: 1.3;
        padding: 0 1rem;
    }

    .cta-section p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .timeline-item {
        padding: 2rem 1.5rem;
        border-radius: 1rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 255, 136, 0.02) 100%);
        border: 1px solid rgba(0, 255, 136, 0.15);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    }

    .content-section {
        padding: 3rem 0;
    }

    .content-section h2 {
        font-size: 2rem;
        padding: 0 0.5rem;
    }

    .content-section h3 {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }

    .content-section p {
        font-size: 1.05rem;
        line-height: 1.9;
    }

    .science-card {
        padding: 2.5rem 2rem;
        border-radius: 1.25rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 255, 136, 0.02) 100%);
        border: 1px solid rgba(0, 255, 136, 0.15);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .form-container {
        padding: 2.5rem 2rem;
        border-radius: 1.25rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 255, 136, 0.02) 100%);
        border: 1px solid rgba(0, 255, 136, 0.15);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.25rem;
        font-size: 1rem;
        border-radius: 0.75rem;
        border: 1.5px solid rgba(255, 255, 255, 0.1);
    }

    footer {
        padding: 3rem 0 2rem;
        margin-top: 4rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .charity-section {
        padding: 2.5rem 0;
        margin: 2.5rem 0;
    }

    .charity-logos {
        gap: 2rem;
        flex-direction: column;
    }

    .charity-name {
        font-size: 0.95rem;
    }

    /* Enhanced button interactions */
    .btn {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    /* Elegant separator lines */
    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, #00ff88 50%, transparent 100%);
        margin: 1.5rem auto 0;
    }

    /* Safe area padding for notched devices */
    @supports (padding: max(0px)) {
        header {
            padding-left: max(1.25rem, env(safe-area-inset-left));
            padding-right: max(1.25rem, env(safe-area-inset-right));
        }

        .container {
            padding-left: max(1.25rem, env(safe-area-inset-left));
            padding-right: max(1.25rem, env(safe-area-inset-right));
        }

        footer {
            padding-left: max(1.25rem, env(safe-area-inset-left));
            padding-right: max(1.25rem, env(safe-area-inset-right));
            padding-bottom: max(2rem, env(safe-area-inset-bottom));
        }
    }
}

/* Premium Mobile Styles - Small Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    header {
        padding: 1.25rem 0;
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    h1 {
        font-size: 2.25rem;
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .frequency-tag {
        font-size: 0.85rem;
        padding: 0.55rem 1.25rem;
        letter-spacing: 0.2em;
    }

    .subtitle {
        font-size: 1.05rem;
        line-height: 1.65;
    }

    .btn {
        padding: 1.25rem 2rem;
        font-size: 0.95rem;
        letter-spacing: 0.06em;
    }

    .btn-large {
        padding: 1.35rem 2.5rem;
        font-size: 1rem;
    }

    .seminar-details {
        padding: 2rem 1.25rem;
        gap: 1.25rem;
    }

    .detail-item {
        padding: 1.5rem 1rem;
    }

    .detail-item picture {
        display: block;
        margin: 0 auto 0.5rem;
    }

    .detail-icon {
        width: 52px;
        height: 52px;
        border-radius: 9px;
        object-fit: cover;
        display: block;
        margin: 0 auto;
    }

    .detail-text strong {
        font-size: 1.15rem;
    }

    .feature {
        padding: 2.25rem 1.75rem;
    }

    .feature picture {
        display: block;
        width: 100%;
        margin: 0 auto 1.25rem;
    }

    .feature-icon {
        width: 100%;
        height: 190px;
        border-radius: 12px;
        object-fit: cover;
        display: block;
        margin: 0;
    }

    .feature h3 {
        font-size: 1.3rem;
    }

    .feature p {
        font-size: 1.02rem;
    }

    .section-title {
        font-size: 1.85rem;
        padding: 0 0.5rem;
    }

    .approach-tagline {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
        padding: 0 0.5rem;
    }

    .approach-item {
        padding: 1.5rem 1.25rem;
    }

    .approach-number {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }

    .approach-item h3 {
        font-size: 1.05rem;
        margin-bottom: 0.65rem;
    }

    .approach-item p {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .highlight {
        padding: 2.25rem 1.75rem;
    }

    .highlight h3 {
        font-size: 1.3rem;
    }

    .highlight li {
        font-size: 1.02rem;
    }

    .who-item {
        padding: 1.5rem 1.25rem;
        font-size: 1.02rem;
    }

    .who-note {
        font-size: 1.02rem;
    }

    .testimonial {
        padding: 2.25rem 1.75rem;
    }

    .testimonial-text {
        font-size: 1.05rem;
    }

    .image-card img {
        height: 200px;
    }

    .image-card-content {
        padding: 1.75rem 1.5rem;
    }

    .image-card-content h3 {
        font-size: 1.15rem;
    }

    .image-card-content p {
        font-size: 0.98rem;
    }

    .science-card {
        padding: 2.25rem 1.75rem;
    }

    .science-card h4 {
        font-size: 1.3rem;
    }

    .timeline-item {
        padding: 1.75rem 1.25rem;
    }

    .timeline-time {
        font-size: 1.1rem;
    }

    .timeline-title {
        font-size: 1.3rem;
    }

    .content-section h2 {
        font-size: 1.85rem;
    }

    .content-section h3 {
        font-size: 1.4rem;
    }

    .content-section p {
        font-size: 1.02rem;
    }

    .cta-section h2 {
        font-size: 1.85rem;
    }

    .cta-section p {
        font-size: 1.05rem;
    }

    .form-container {
        padding: 2.25rem 1.5rem;
    }

    .form-group {
        margin-bottom: 1.75rem;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.15rem;
        font-size: 0.98rem;
    }

    .mobile-nav a {
        font-size: 1.45rem;
        padding: 1.35rem 1rem;
    }

    .mobile-nav-logo {
        font-size: 1.6rem;
    }

    .mobile-nav-cta {
        padding: 1.15rem 1.75rem;
        font-size: 0.95rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .charity-logos {
        gap: 1.5rem;
    }

    .sponsor-content {
        padding: 0 1rem;
    }
}

/* Luxury Touch Interactions */
@media (hover: none) and (pointer: coarse) {
    .btn:active {
        transform: scale(0.97);
    }

    .feature:active {
        transform: translateY(-2px);
    }

    .approach-item:active {
        transform: translateY(-2px);
    }

    .who-item:active {
        transform: translateY(-2px);
        background: rgba(0, 255, 136, 0.12);
    }

    .image-card:active {
        transform: translateY(-3px);
    }
}

/* Smooth Scrolling for Premium Feel */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Add subtle animations - Premium feel */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00ff88 0%, #00aa66 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00ff88;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}