/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 900;
}

.mobile-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: none;
}

.mobile-menu-title {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.75);
}

.mobile-menu-close {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(226, 232, 240, 0.25);
    background: rgba(15, 23, 42, 0.4);
    color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    touch-action: manipulation;
}

.mobile-menu-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
    border-color: rgba(248, 250, 252, 0.6);
    background: rgba(30, 41, 59, 0.6);
    transform: scale(1.05);
    outline: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation - ADVANCED MODERN HYBRID */
.header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    box-shadow: 
        0 1px 0 rgba(0, 0, 0, 0.05),
        0 4px 20px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    border-bottom: 1px solid rgba(220, 38, 38, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible !important;
}

/* Header scroll effect */
.header.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.98) 100%);
    box-shadow: 
        0 1px 0 rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    border-bottom: 1px solid rgba(220, 38, 38, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center !important;
    height: 85px !important;
    padding-top: 0 !important;
    overflow: visible !important;
    position: relative;
}

.logo {
    display: flex !important;
    align-items: center !important;
    padding-top: 0 !important;
    overflow: visible !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.logo a {
    display: block !important;
    line-height: 0 !important;
}

.logo-img {
    height: 65px !important;
    width: auto !important;
    transition: transform 0.3s ease;
    object-fit: contain !important;
    display: block !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    transform: translateY(0) !important;
    vertical-align: middle !important;
}

.logo-img:hover {
    transform: translateY(0) scale(1.05) !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-menu li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    overflow: hidden;
    display: flex;
    align-items: center;
    line-height: 1;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 10px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #dc2626;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.2);
}

/* Hero Section */

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(248, 113, 113, 0.06) 0%, transparent 60%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(220, 38, 38, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(239, 68, 68, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(248, 113, 113, 0.08) 0%, transparent 40%);
    z-index: 1;
}

/* Hero with black and white background image */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.8) 50%, rgba(51, 65, 85, 0.75) 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/photo_2025-07-03%2015.01.26.jpeg');
    background-size: cover;
    background-position: center 15%;
    background-attachment: fixed;
    filter: grayscale(100%) contrast(1.4) brightness(0.7);
    z-index: -1;
    opacity: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #ffffff !important;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    letter-spacing: -0.02em;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
    filter: none !important;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #dc2626 !important;
    border-radius: 2px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scaleX(1.1); }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
}

/* Additional geometric elements */
.hero-content::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.1), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: -1;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: 15%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(239, 68, 68, 0.08), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    border-color: #dc2626;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    border-color: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: #dc2626;
    border-color: #dc2626;
    position: relative;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.btn-tour {
    background: #ffffff;
    color: #1e293b;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-tour:hover {
    background: #f1f5f9;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
}

.about h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: #1f2937;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #4b5563;
    line-height: 1.8;
}

.training-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

/* About section: blend training photo into page (soft edges, no harsh “box”) */
.about .about-image {
    position: relative;
    border-radius: 22px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.about .about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    pointer-events: none;
    z-index: 1;
    /* Top + bottom only — no side feathering */
    background: linear-gradient(
        to bottom,
        rgba(248, 250, 252, 0.97) 0%,
        rgba(248, 250, 252, 0.72) 7%,
        rgba(241, 245, 249, 0.35) 16%,
        transparent 30%,
        transparent 70%,
        rgba(241, 245, 249, 0.35) 84%,
        rgba(248, 250, 252, 0.72) 93%,
        rgba(241, 245, 249, 0.97) 100%
    );
}

.about .about-image .training-image {
    display: block;
    position: relative;
    z-index: 0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    /* Vertical mask only: blend top & bottom into section; sides stay full strength */
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.45) 8%,
        #000 22%,
        #000 78%,
        rgba(0, 0, 0, 0.45) 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.45) 8%,
        #000 22%,
        #000 78%,
        rgba(0, 0, 0, 0.45) 92%,
        transparent 100%
    );
}

.about .about-image .training-image:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
    .about .about-image::before {
        background: linear-gradient(
            to bottom,
            rgba(248, 250, 252, 0.98) 0%,
            rgba(248, 250, 252, 0.78) 6%,
            rgba(241, 245, 249, 0.4) 14%,
            transparent 28%,
            transparent 72%,
            rgba(241, 245, 249, 0.4) 86%,
            rgba(248, 250, 252, 0.78) 94%,
            rgba(241, 245, 249, 0.98) 100%
        );
    }

    .about .about-image .training-image {
        -webkit-mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.5) 7%,
            #000 20%,
            #000 80%,
            rgba(0, 0, 0, 0.5) 93%,
            transparent 100%
        );
        mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.5) 7%,
            #000 20%,
            #000 80%,
            rgba(0, 0, 0, 0.5) 93%,
            transparent 100%
        );
    }
}

.quote {
    text-align: center;
    font-style: italic;
    font-size: 1.4rem;
    color: #6b7280;
    border-left: 5px solid #dc2626;
    padding: 30px 40px;
    margin: 0 auto;
    max-width: 700px;
    background: white;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: #dc2626;
    opacity: 0.3;
}

.quote cite {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #374151;
    font-style: normal;
}

/* Seminars Gallery */
.seminars-gallery {
    margin-top: 80px;
    text-align: center;
}

.seminars-gallery h3 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 700;
}

.gallery-title {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 50px;
    font-style: italic;
    text-align: center;
}

.seminar-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.seminar-group {
    min-width: 100%;
    padding: 40px;
    background: white;
}

.seminar-group h4 {
    font-size: 1.8rem;
    color: #dc2626;
    margin-bottom: 30px;
    font-weight: 600;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.photo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.seminar-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
}

.photo-item:hover .seminar-photo {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-caption {
    font-size: 0.9rem;
    font-weight: 500;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-btn svg {
    color: #dc2626;
    stroke-width: 2.5;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    background: white;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #dc2626;
    transform: scale(1.2);
}

.indicator:hover {
    background: #ef4444;
}

/* Responsive styles for seminars gallery */
@media (max-width: 768px) {
    .seminars-gallery h3 {
        font-size: 2rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .seminar-group {
        padding: 20px;
    }
    
    .seminar-group h4 {
        font-size: 1.4rem;
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .seminar-photo {
        height: 200px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .seminars-gallery {
        margin-top: 50px;
    }
    
    .seminars-gallery h3 {
        font-size: 1.6rem;
    }
    
    .seminar-group {
        padding: 15px;
    }
    
    .seminar-group h4 {
        font-size: 1.2rem;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .seminar-photo {
        height: 180px;
    }
    
    .photo-overlay {
        padding: 15px 10px 10px;
    }
    
    .photo-caption {
        font-size: 0.8rem;
    }
}

/* Blog Post Styles */
.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #6b7280;
}

.post-category {
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.post-excerpt {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 30px;
    font-style: italic;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 40px;
    font-weight: 500;
}

.photo-grid-inline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.inline-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
}

.inline-photo:hover {
    transform: translateY(-3px);
}

/* Specific image positioning for France seminar blog */
.annecy-photo {
    object-position: center 40% !important;
}

.besancon-photo {
    object-position: center 27% !important;
}

.quote-inline {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-left: 4px solid #dc2626;
    padding: 25px 30px;
    margin: 40px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    position: relative;
}

.quote-inline::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #dc2626;
    opacity: 0.3;
}

.quote-inline p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
}

.call-to-action {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.2);
}

.call-to-action h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.call-to-action p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.tag {
    background: #f3f4f6;
    color: #374151;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #dc2626;
    color: white;
}

/* Related Posts */
.related-posts {
    background: #f8fafc;
    padding: 80px 0;
}

.related-posts h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 50px;
    font-weight: 700;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.related-post-image {
    overflow: hidden;
}

.related-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post:hover .related-img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 25px;
}

.related-post-content h4 {
    margin-bottom: 15px;
}

.related-post-content h4 a {
    color: #1f2937;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
    color: #dc2626;
}

.related-post-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.related-post-date {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
}

/* Responsive styles for blog post */
@media (max-width: 768px) {
    .photo-grid-inline {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .inline-photo {
        height: 180px;
    }
    
    .quote-inline {
        padding: 20px;
        margin: 30px 0;
    }
    
    .call-to-action {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .post-excerpt {
        font-size: 1.1rem;
    }
    
    .lead {
        font-size: 1.2rem;
    }
    
    .quote-inline {
        padding: 15px;
    }
    
    .call-to-action h3 {
        font-size: 1.5rem;
    }
    
    .post-tags {
        justify-content: center;
    }
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: white;
}

.programs h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: #1f2937;
    position: relative;
}

.programs h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

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

.program-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.program-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1f2937;
    font-weight: 700;
}

.program-card p {
    color: #6b7280;
    margin-bottom: 35px;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Location Section */
.location {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.location h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: #1f2937;
    position: relative;
}

.location h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

.location-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.location-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1f2937;
    font-weight: 700;
}

.location-info address {
    font-style: normal;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #4b5563;
    line-height: 1.8;
}

.location-info p {
    color: #6b7280;
    margin-bottom: 35px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
}

.made-with {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Instructors Section */
.instructors {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.instructors h2 {
    font-size: 3rem;
    color: #1f2937;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.instructors h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

.instruction-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    margin-top: 40px;
}

.instruction-text {
    flex: 1;
}

.instruction-image {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.lineage-portrait {
    width: 280px;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lineage-portrait:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.instructor-content {
    margin-bottom: 80px;
}

.instructor-gallery {
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.instructor-text h3 {
    color: #dc2626;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 700;
}

.association-badge {
    text-align: center;
    margin-bottom: 30px;
}

.badge-image {
    width: 140px;
    height: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.badge-image:hover {
    transform: scale(1.1);
}

.seminar-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
}

.seminar-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.zoomed-image {
    transform: scale(1.8) !important;
    object-fit: cover !important;
    object-position: 45% 50% !important;
}

.instructor-image:has(.zoomed-image) {
    overflow: hidden !important;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 500;
}

/* Program Images */
.program-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.program-image:hover {
    transform: scale(1.05);
}

/* Schedule Section */
.schedule {
    padding: 100px 0;
    background-color: white;
}

.schedule h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: #1f2937;
    position: relative;
}

.schedule h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.schedule-day {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border-left: 5px solid #dc2626;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.schedule-day:hover::before {
    transform: scaleX(1);
}

.schedule-day:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.schedule-day h4 {
    color: #dc2626;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.schedule-day p {
    margin: 12px 0;
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Contact Details */
.contact-details {
    margin: 40px 0;
}

.contact-details p {
    margin: 15px 0;
    font-size: 1.1rem;
}

.contact-details a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-badge {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-badge:hover {
    transform: scale(1.1);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin: 8px 0;
    font-size: 1rem;
    opacity: 0.9;
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .instruction-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    
    .lineage-portrait {
        width: 250px;
        height: 320px;
    }
    
    .instructor-gallery {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    
    .seminar-image {
        height: 300px;
    }
    
    .program-image {
        height: 200px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .association-badge {
        margin-top: 30px;
    }
    
    .badge-image {
        width: 120px;
        height: 120px;
    }
    
    .about h2,
    .programs h2,
    .cta h2,
    .location h2,
    .instructors h2,
    .schedule h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about h2,
    .programs h2,
    .cta h2,
    .location h2,
    .instructors h2,
    .schedule h2 {
        font-size: 2rem;
    }
    
    .program-card {
        padding: 40px 25px;
    }
    
    .location-info {
        padding: 40px 25px;
    }
    
    .schedule-day {
        padding: 30px 20px;
    }
}

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

/* Focus styles for accessibility */
.btn:focus,
.nav-menu a:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

/* Section spacing */
section {
    scroll-margin-top: 100px;
}

/* Additional hover effects */
.program-card:hover .program-image {
    transform: scale(1.05);
}

.schedule-day:hover h4 {
    color: #b91c1c;
}

/* Loading animations for images */
.program-image,
.training-image,
.lineage-portrait,
.seminar-image {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.program-image:nth-child(1) { animation-delay: 0.1s; }
.program-image:nth-child(2) { animation-delay: 0.2s; }
.program-image:nth-child(3) { animation-delay: 0.3s; }

/* Hamburger Menu (Mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    margin-left: 10px;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background: #dc2626;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(82vw, 320px);
        background: linear-gradient(160deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.92));
        box-shadow: -12px 0 32px rgba(15, 23, 42, 0.45);
        padding: 112px 32px 48px;
        transform: translateX(110%);
        transition: transform 0.35s cubic-bezier(.4, 0, .2, 1), opacity 0.25s ease;
        z-index: 1050;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        color: #f8fafc;
        opacity: 0;
        pointer-events: none;
    }
    .nav-menu.is-open,
    .nav-toggle[aria-expanded="true"] + .nav-menu {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    .nav-menu a {
        font-size: 1.1rem;
        color: #f8fafc;
        padding: 15px 20px;
        display: block;
        width: 100%;
        border-radius: 14px;
        background: rgba(15, 23, 42, 0.72);
        border: 1px solid rgba(30, 41, 59, 0.65);
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.35);
    }
    .nav-menu a::before {
        background: rgba(15, 23, 42, 0.55);
    }
    .nav-menu a::after {
        background: transparent;
    }
    .nav-menu a:hover {
        color: #f8fafc;
        transform: translateY(-2px);
        box-shadow: 0 18px 36px rgba(15, 23, 42, 0.35);
        background: linear-gradient(120deg, rgba(220, 38, 38, 0.98), rgba(239, 68, 68, 0.9));
        border-color: rgba(248, 113, 113, 0.6);
    }
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin: 0 0 24px;
        padding: 0 0 16px;
        border-bottom: 1px solid rgba(148, 163, 184, 0.25);
        position: sticky;
        top: 0;
        background: rgba(15, 23, 42, 0.96);
        z-index: 1;
    }
    .mobile-menu-title {
        color: rgba(226, 232, 240, 0.75);
        letter-spacing: 0.18em;
    }
}

/* Hamburger animation (optional: X icon on open) */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.contact h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: #1f2937;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-section {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-form-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 700;
}

.contact-form-section p {
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* ZenPlanner Form Styling - Enhanced Approach */
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 {
    min-height: 600px !important;
    width: 100% !important;
    padding: 20px !important;
    background: #f9fafb !important;
    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    position: relative !important;
}

/* Target iframe specifically with better scaling */
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 iframe {
    width: 100% !important;
    height: 600px !important;
    border: none !important;
    transform: scale(1.15) !important;
    transform-origin: top left !important;
}

/* Alternative approach - scale the container but adjust positioning */
.contact-form-section {
    position: relative !important;
    overflow: visible !important;
}

/* Ensure the form section can accommodate the scaled content */
.contact-form-section #leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 {
    transform: scale(1.1) !important;
    transform-origin: center top !important;
    margin-bottom: 50px !important;
}

/* Homepage ZenPlanner Form Styling */
#leadcapture_cae4901e-bb67-424a-9bf5-35e20596ca6f {
    min-height: 600px !important;
    width: 100% !important;
    padding: 20px !important;
    background: #f9fafb !important;
    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    position: relative !important;
    transform: scale(1.1) !important;
    transform-origin: center top !important;
    margin-bottom: 50px !important;
}

/* Target homepage iframe specifically */
#leadcapture_cae4901e-bb67-424a-9bf5-35e20596ca6f iframe {
    width: 100% !important;
    height: 600px !important;
    border: none !important;
    transform: scale(1.1) !important;
    transform-origin: center top !important;
}

/* Target all possible ZenPlanner containers */
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 iframe,
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 form,
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 div[class*="form"],
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 div[class*="widget"] {
    width: 100% !important;
    min-height: 500px !important;
    border: none !important;
}

/* Universal form element targeting */
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 input,
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 select,
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 textarea {
    font-size: 18px !important;
    padding: 16px 20px !important;
    border: 2px solid #d1d5db !important;
    border-radius: 10px !important;
    width: 100% !important;
    margin-bottom: 20px !important;
    transition: all 0.3s ease !important;
    background: white !important;
    box-sizing: border-box !important;
}

#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 input:focus,
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 select:focus,
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 textarea:focus {
    border-color: #dc2626 !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15) !important;
    transform: translateY(-1px) !important;
}

/* Target all labels */
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 label {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin-bottom: 12px !important;
    display: block !important;
    line-height: 1.4 !important;
}

/* Target all buttons */
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 button,
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 input[type="submit"],
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 input[type="button"] {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    color: white !important;
    border: none !important;
    padding: 20px 40px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    margin-top: 30px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 button:hover,
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 input[type="submit"]:hover,
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 input[type="button"]:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4) !important;
}

/* Target any form containers */
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 .form-container,
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 .zp-form,
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 .zenplanner-form,
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 [class*="form"] {
    padding: 30px !important;
    background: white !important;
    border-radius: 15px !important;
    border: 2px solid #e5e7eb !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Target form fields with more specific selectors */
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 .form-field,
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 .field,
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 .input-group,
#leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 [class*="field"] {
    margin-bottom: 25px !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 {
        min-height: 500px !important;
        padding: 15px !important;
    }
    
    #leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 input,
    #leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 select,
    #leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 textarea {
        font-size: 16px !important;
        padding: 18px 20px !important;
    }
    
    #leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 button,
    #leadcapture_f5d9f6f2-566f-4df5-a895-cfcecb2cb069 input[type="submit"] {
        padding: 18px 30px !important;
        font-size: 18px !important;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #1f2937;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

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

.contact-form .btn {
    margin-top: 10px;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-info-section {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-info-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1f2937;
    font-weight: 700;
}

.contact-info-section h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #dc2626;
    font-weight: 600;
}

.contact-info-section address {
    font-style: normal;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #4b5563;
    line-height: 1.8;
}

.contact-info-section p {
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-details a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #b91c1c;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 40px 30px;
    }
    
    .contact h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form-section,
    .contact-info-section {
        padding: 30px 20px;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
}

/* Contact Page Hero */
.contact-hero {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Active Navigation State */
.nav-menu a.active {
    color: #dc2626;
    font-weight: 600;
}

/* Prominent Instagram link styles */
.prominent-instagram {
  display: inline-flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #E1306C; /* Instagram pink */
  text-decoration: none;
  margin-top: 0.5em;
  transition: color 0.2s;
}
.prominent-instagram svg {
  margin-right: 0.5em;
  stroke: #E1306C;
  transition: stroke 0.2s;
}
.prominent-instagram:hover,
.prominent-instagram:focus {
  color: #C13584; /* Instagram purple */
}
.prominent-instagram:hover svg,
.prominent-instagram:focus svg {
  stroke: #C13584;
}

/* Events Section */
.events {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.events h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #1f2937;
    font-weight: 700;
}

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

.event-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.featured-event {
    border: 3px solid #dc2626;
    position: relative;
}

.featured-event::before {
    content: 'FEATURED EVENT';
    position: absolute;
    top: 20px;
    right: 20px;
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.event-header {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.event-day {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.event-title h3 {
    font-size: 2rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.event-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.event-details {
    padding: 40px;
}

.event-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
}

.event-time,
.event-location {
    font-size: 1rem;
    line-height: 1.6;
}

.location-detail {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
    display: block;
}

.event-description h4 {
    color: #1f2937;
    font-size: 1.3rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.event-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.event-highlights li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 25px;
}

.event-highlights li:last-child {
    border-bottom: none;
}

.event-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
    font-size: 1.1rem;
}

.event-schedule {
    background: #fef3c7;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid #f59e0b;
}

.schedule-timeline {
    margin-top: 15px;
}

.timeline-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #fde68a;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item .time {
    font-weight: 600;
    color: #92400e;
    min-width: 80px;
    font-size: 0.9rem;
}

.timeline-item .activity {
    margin-left: 15px;
    color: #78350f;
}

.event-cta {
    background: #ecfdf5;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid #10b981;
}

.special-offers {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.special-offers li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.special-offers li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
    justify-content: center;
}

.event-actions .btn {
    min-width: 200px;
    text-align: center;
}

.event-reminder {
    background: #dbeafe;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid #3b82f6;
}

.event-reminder p {
    margin: 0;
    color: #1e40af;
    font-size: 0.95rem;
}

.events-footer {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.events-footer h3 {
    color: #1f2937;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.events-footer p {
    color: #6b7280;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.events-cta {
    margin-top: 20px;
}

/* Membership Section */
.membership {
    padding: 100px 0;
    background: white;
}

.membership h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1f2937;
    font-weight: 700;
}

.membership p {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.membership-form-container {
    margin-top: 40px;
}

/* Grand Opening Decoration Styles */
.grand-opening-decoration {
    position: relative;
}

.decoration-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border: 2px solid #e5e7eb;
}

.decoration-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) contrast(1.2) brightness(0.9);
}

.decoration-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.decoration-bottom {
    margin-top: 30px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border: 2px solid #e5e7eb;
}

.decoration-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.decoration-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
    transition: transform 0.3s ease;
}

.decoration-image:hover {
    transform: scale(1.05);
}

.decoration-quote {
    font-size: 1.1rem;
    font-weight: 600;
    color: #dc2626;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Event Card Decoration Styles */
.event-decoration-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.event-decoration-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%) contrast(1.2) brightness(0.9);
}

.event-decoration-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-decoration-bottom {
    margin-top: 20px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.event-decoration-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.event-decoration-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
    transition: transform 0.3s ease;
}

.event-decoration-image:hover {
    transform: scale(1.05);
}

.event-decoration-quote {
    font-size: 0.9rem;
    font-weight: 600;
    color: #dc2626;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design for Events */
@media (max-width: 768px) {
    .events {
        padding: 60px 0;
    }
    
    .events h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .event-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .event-title h3 {
        font-size: 1.6rem;
    }
    
    .event-details {
        padding: 25px 20px;
    }
    
    .event-info {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .event-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .event-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .timeline-item .time {
        min-width: auto;
    }
    
    .timeline-item .activity {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .events h2 {
        font-size: 2rem;
    }
    
    .event-header {
        padding: 25px 15px;
    }
    
    .event-title h3 {
        font-size: 1.4rem;
    }
    
    .event-details {
        padding: 20px 15px;
    }
    
    .event-info {
        padding: 15px;
    }
    
    .event-schedule,
    .event-cta {
        padding: 20px 15px;
    }
    
    .events-footer {
        padding: 30px 20px;
    }
}

/* Responsive Design for Membership */
@media (max-width: 768px) {
    .membership {
        padding: 60px 0;
    }
    
    .membership h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .membership p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .membership-form-container {
        margin: 30px 20px 0;
    }
}

@media (max-width: 480px) {
    .membership h2 {
        font-size: 2rem;
    }
    
    .membership p {
        font-size: 0.95rem;
        padding: 0 15px;
    }
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-content {
    padding: 80px 0;
    background: #f8fafc;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Blog Posts */
.blog-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.featured-post {
    border: 3px solid #dc2626;
    position: relative;
}

.post-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-img {
    transform: scale(1.05);
}

.post-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.post-content {
    padding: 40px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #6b7280;
}

.post-date {
    font-weight: 500;
}

.post-category {
    background: #f3f4f6;
    color: #374151;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.post-title {
    margin-bottom: 20px;
}

.post-title a {
    color: #1f2937;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #dc2626;
}

.post-excerpt {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-stats {
    color: #9ca3af;
    font-size: 0.9rem;
}

.read-time {
    font-weight: 500;
}

.load-more-section {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background: #6b7280;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    color: #1f2937;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Search Widget */
.blog-search-form {
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #dc2626;
}

.search-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #b91c1c;
}

/* Categories Widget */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    color: #6b7280;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #dc2626;
}

.category-list span {
    background: #f3f4f6;
    color: #6b7280;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Recent Posts Widget */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.recent-post-content h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    line-height: 1.3;
}

.recent-post-content h4 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
    color: #dc2626;
}

.recent-post-date {
    color: #9ca3af;
    font-size: 0.85rem;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
}

.newsletter-widget h3 {
    color: white;
}

.newsletter-widget p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    padding: 12px 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
}

.newsletter-btn {
    background: white;
    color: #dc2626;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

/* Social Links Widget */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6b7280;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #f3f4f6;
    color: #dc2626;
    border-color: #e5e7eb;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Events Page Styles */
.events-hero {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.events-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/seminars/besancon-seminar/besancon-seminar-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(100%) contrast(1.3) brightness(0.8);
    z-index: -1;
    opacity: 0.9;
}

.events-hero-content {
    position: relative;
    z-index: 2;
}

.events-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
    position: relative;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

.events-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #f8fafc;
}

.seminars-section {
    padding: 80px 0;
    background: #f8fafc;
}

.seminars-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.upcoming-events {
    padding: 80px 0;
    background: white;
}

.upcoming-events h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1f2937;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-date {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.event-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
}

.event-content p {
    color: #6b7280;
    margin-bottom: 10px;
    line-height: 1.5;
}

.event-time {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.9rem;
}

.event-link {
    display: inline-block;
    margin-top: 15px;
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.event-link:hover {
    color: #b91c1c;
    text-decoration: underline;
}

/* Event Page Styles */
.event-hero {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.event-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/seminars/besancon-seminar/besancon-seminar-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(100%) contrast(1.3) brightness(0.8);
    z-index: -1;
    opacity: 0.9;
}

.event-hero-content {
    position: relative;
    z-index: 2;
}

.event-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
    position: relative;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

.event-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #f8fafc;
}

.event-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.event-meta span {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.event-details {
    padding: 80px 0;
    background: #f8fafc;
}

.event-content {
    max-width: 800px;
    margin: 0 auto;
}

.event-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f2937;
}

.event-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.event-highlights li {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #dc2626;
}

.schedule-timeline {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.timeline-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item .time {
    font-weight: 700;
    color: #dc2626;
    min-width: 100px;
    font-size: 1.1rem;
}

.timeline-item .activity {
    margin-left: 20px;
    color: #374151;
    font-weight: 500;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.offer-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #dc2626;
}

.offer-card h3 {
    color: #dc2626;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.offer-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

.event-cta {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.event-cta h2 {
    color: #1f2937;
    margin-bottom: 15px;
}

.event-cta p {
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .event-hero h1 {
        font-size: 2.5rem;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-item .time {
        margin-bottom: 5px;
    }
    
    .timeline-item .activity {
        margin-left: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Page-specific Hero Sections */
.about-hero, .instructors-hero, .programs-hero, .schedule-hero {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before, .instructors-hero::before, .programs-hero::before, .schedule-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/seminars/besancon-seminar/besancon-seminar-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(100%) contrast(1.3) brightness(0.8);
    z-index: -1;
    opacity: 0.9;
}

.about-hero-content, .instructors-hero-content, .programs-hero-content, .schedule-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1, .instructors-hero h1, .programs-hero h1, .schedule-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
    position: relative;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

.about-hero-subtitle, .instructors-hero-subtitle, .programs-hero-subtitle, .schedule-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #f8fafc;
}

/* About Page Styles */
.our-story {
    padding: 80px 0;
    background: #f8fafc;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f2937;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.about-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
}

.mission-values {
    padding: 80px 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #dc2626;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.mission-card ul {
    list-style: none;
    padding: 0;
}

.mission-card li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.mission-card li:last-child {
    border-bottom: none;
}

.what-makes-us-different {
    padding: 80px 0;
    background: #f8fafc;
}

.what-makes-us-different h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

.academy-location {
    padding: 80px 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f2937;
}

.location-details {
    margin-bottom: 40px;
}

.location-item {
    margin-bottom: 25px;
}

.location-item strong {
    color: #dc2626;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.location-item p {
    color: #4b5563;
    line-height: 1.6;
}

.location-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.location-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
}

/* Instructors Page Styles */
.main-instructor {
    padding: 80px 0;
    background: #f8fafc;
}

.instructor-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.instructor-image {
    position: relative;
}

.instructor-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.instructor-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instructor-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1f2937;
}

.instructor-rank {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.belt-rank {
    background: #1f2937;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.association {
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.instructor-bio {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 30px;
}

.instructor-achievements, .instructor-experience, .instructor-philosophy, .instructor-role, .instructor-journey, .instructor-education {
    margin-bottom: 30px;
}

.instructor-achievements h4, .instructor-experience h4, .instructor-philosophy h4, .instructor-role h4, .instructor-journey h4, .instructor-education h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.instructor-education p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
}

.instructor-achievements ul, .instructor-experience ul {
    list-style: none;
    padding: 0;
}

.instructor-achievements li, .instructor-experience li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.instructor-achievements li:last-child, .instructor-experience li:last-child {
    border-bottom: none;
}

.assistant-instructor-yves {
    padding: 80px 0;
    background: white;
}

.additional-instructors {
    padding: 80px 0;
    background: #f8fafc;
}

.assistant-instructors h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.instructor-card {
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-5px);
}

.instructor-card .instructor-image {
    height: 250px;
    overflow: hidden;
}

.instructor-card .instructor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-details {
    padding: 30px;
}

.instructor-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.instructor-details p {
    color: #6b7280;
    line-height: 1.6;
}

.teaching-philosophy {
    padding: 80px 0;
    background: #f8fafc;
}

.philosophy-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.philosophy-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.philosophy-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.philosophy-card p {
    color: #6b7280;
    line-height: 1.6;
}

.instructor-training {
    padding: 80px 0;
    background: white;
}

.training-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.training-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f2937;
}

.training-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 30px;
}

.training-list {
    list-style: none;
    padding: 0;
}

.training-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.training-list li:last-child {
    border-bottom: none;
}

.training-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
}

.join-team {
    padding: 80px 0;
    background: #f8fafc;
}

.join-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.join-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.join-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 40px;
}

.join-requirements, .join-note {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    text-align: left;
}

.join-note {
    border-left: 4px solid #dc2626;
    background: #fef2f2;
}

.join-requirements h3, .join-note h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.join-requirements ul {
    list-style: none;
    padding: 0;
}

.join-requirements li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.join-requirements li:last-child {
    border-bottom: none;
}

.join-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Programs Page Styles */
.adult-programs, .kids-programs, .special-programs {
    padding: 80px 0;
}

.adult-programs {
    background: #f8fafc;
}

.kids-programs {
    background: white;
}

.special-programs {
    background: #f8fafc;
}

.adult-programs h2, .kids-programs h2, .special-programs h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.program-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card.featured {
    border: 3px solid #dc2626;
}

.program-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.program-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
}

.program-level {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-content {
    padding: 20px 30px 30px;
}

.program-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.program-features li {
    padding: 5px 0;
    color: #4b5563;
    position: relative;
    padding-left: 20px;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.program-benefits {
    background: linear-gradient(135deg, #fef3f2 0%, #fef7f7 100%);
    border-left: 4px solid #dc2626;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 15px;
}

.program-benefits strong {
    color: #dc2626;
    font-weight: 600;
}

.program-schedule {
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #4b5563;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 60px;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 2px;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.faq-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 2px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
    color: #dc2626;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc2626;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 25px 30px;
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-answer strong {
    color: #1f2937;
    font-weight: 600;
}

/* Academic Blog Post Styling */
.article-intro {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
    margin-bottom: 40px;
}

.article-intro .lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #1f2937;
    font-weight: 400;
    margin: 0;
}

.section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.section:last-of-type {
    border-bottom: none;
}

.section h2 {
    color: #dc2626;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 2px;
}

.section h3 {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.section p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
}

.technique-steps {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin: 25px 0;
}

.step {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 3px solid #dc2626;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.step:last-child {
    margin-bottom: 0;
}

.step h3 {
    color: #dc2626;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.step p {
    margin: 0;
    line-height: 1.6;
}

.error-analysis {
    background: #fef3f2;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #fecaca;
    margin: 25px 0;
}

.error-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 3px solid #ef4444;
}

.error-item:last-child {
    margin-bottom: 0;
}

.error-item h3 {
    color: #dc2626;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.error-item p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.error-item p:last-child {
    margin-bottom: 0;
}

.technique-variations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.variation {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #bae6fd;
    border-left: 3px solid #0ea5e9;
}

.variation h3 {
    color: #0c4a6e;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.variation p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.training-principles {
    background: #f0fdf4;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
    margin: 25px 0;
}

.training-principles h3 {
    color: #166534;
    font-size: 1.2rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.training-principles h3:first-child {
    margin-top: 0;
}

.training-principles ul {
    margin-bottom: 20px;
}

.training-principles li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.safety-guidelines {
    background: #fffbeb;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #fed7aa;
    margin: 25px 0;
}

.safety-guidelines h3 {
    color: #92400e;
    font-size: 1.2rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.safety-guidelines h3:first-child {
    margin-top: 0;
}

.safety-guidelines ul {
    margin-bottom: 20px;
}

.safety-guidelines li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.conclusion {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-top: 50px;
}

.conclusion h2 {
    color: #dc2626;
    text-align: center;
    margin-bottom: 30px;
}

.conclusion p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.conclusion p:last-child {
    margin-bottom: 0;
}

/* Related Posts Links */
.related-post-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.related-post-link:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.related-post-link:hover .related-post-content h4 {
    color: #dc2626;
}

.related-post-link:hover .related-img {
    transform: scale(1.05);
}

/* Kids BJJ Development Sections */
.development-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.development-item {
    background: #f0f9ff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #bae6fd;
    border-left: 4px solid #0ea5e9;
    transition: transform 0.3s ease;
}

.development-item:hover {
    transform: translateY(-3px);
}

.development-item h3 {
    color: #0c4a6e;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.development-item p {
    margin: 0;
    line-height: 1.6;
    color: #1e40af;
}

.cognitive-benefits {
    background: #f0fdf4;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
    margin: 25px 0;
}

.cognitive-benefits h3 {
    color: #166534;
    font-size: 1.2rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.cognitive-benefits h3:first-child {
    margin-top: 0;
}

.cognitive-benefits p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.physical-development {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.fitness-area {
    background: #fef3c7;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #fbbf24;
    border-left: 3px solid #f59e0b;
}

.fitness-area h3 {
    color: #92400e;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.fitness-area p {
    margin: 0;
    line-height: 1.6;
    color: #78350f;
}

.social-skills {
    background: #fdf2f8;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #f9a8d4;
    margin: 25px 0;
}

.social-skills h3 {
    color: #be185d;
    font-size: 1.2rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.social-skills h3:first-child {
    margin-top: 0;
}

.social-skills p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.safety-benefits {
    background: #fef2f2;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #fecaca;
    margin: 25px 0;
}

.safety-benefits h3 {
    color: #dc2626;
    font-size: 1.2rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.safety-benefits h3:first-child {
    margin-top: 0;
}

.safety-benefits p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-structure {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin: 25px 0;
}

.program-structure h3 {
    color: #475569;
    font-size: 1.2rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.program-structure h3:first-child {
    margin-top: 0;
}

.program-structure p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

.cta-section h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.cta-section .btn {
    background: white;
    color: #dc2626;
    border: none;
}

.cta-section .btn:hover {
    background: #f8fafc;
    color: #dc2626;
}
}

.program-benefits {
    padding: 80px 0;
    background: white;
}

.program-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

.program-registration {
    padding: 80px 0;
    background: #f8fafc;
}

.registration-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.registration-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.registration-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 40px;
}

.registration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.registration-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.registration-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.registration-card p {
    color: #6b7280;
    margin-bottom: 30px;
}

.registration-card .btn-secondary {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    border-color: #dc2626;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.registration-card .btn-secondary:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    border-color: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Schedule Page Styles */
.weekly-schedule {
    padding: 80px 0;
    background: #f8fafc;
}

.weekly-schedule h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.schedule-note {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    background: white;
    border-left: 4px solid #dc2626;
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.schedule .schedule-note {
    text-align: left;
    margin: 0 0 24px 0;
    max-width: none;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.day-schedule {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.day-schedule h3 {
    background: #dc2626;
    color: white;
    padding: 20px;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
}

.class-list {
    padding: 20px;
}

.class-item {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
}

.class-item:last-child {
    border-bottom: none;
}

.class-item.closed {
    grid-template-columns: 1fr;
    text-align: center;
    color: #9ca3af;
    font-style: italic;
}

.class-time {
    font-weight: 700;
    color: #dc2626;
    font-size: 0.9rem;
}

.class-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9rem;
}

.class-level {
    background: #f3f4f6;
    color: #6b7280;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    text-align: center;
}

.class-descriptions {
    padding: 80px 0;
    background: white;
}

.class-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

.descriptions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.description-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.description-card:hover {
    transform: translateY(-5px);
}

.description-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.description-card p {
    color: #6b7280;
    line-height: 1.6;
}

.schedule-info {
    padding: 80px 0;
    background: #f8fafc;
}

.info-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.info-card p {
    color: #6b7280;
    line-height: 1.6;
}

.schedule-cta {
    padding: 80px 0;
    background: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-content, .location-content, .instructor-profile, .training-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero h1, .instructors-hero h1, .programs-hero h1, .schedule-hero h1 {
        font-size: 2.5rem;
    }
    
    .class-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .class-time, .class-name, .class-level {
        display: block;
        margin-bottom: 5px;
    }
    
    .cta-buttons, .join-cta, .location-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Blog Post Styles */
.blog-post-hero {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 140px 0 80px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.blog-post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.blog-post-header {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.post-date {
    font-weight: 500;
}

.post-category {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.blog-post-hero .post-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.post-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.blog-post-content {
    padding: 80px 0;
    background: #f8fafc;
}

.post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.post-main {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.post-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-main:hover .featured-img {
    transform: scale(1.02);
}

.post-body {
    padding: 50px 40px;
}

.post-body .lead {
    font-size: 1.3rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 500;
}

.post-body h2 {
    color: #1f2937;
    font-size: 2rem;
    margin: 50px 0 25px 0;
    font-weight: 700;
    line-height: 1.3;
}

.post-body h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin: 40px 0 20px 0;
    font-weight: 600;
    line-height: 1.4;
}

.post-body h4 {
    color: #374151;
    font-size: 1.3rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
    line-height: 1.4;
}

.post-body p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.post-body ul,
.post-body ol {
    margin: 25px 0;
    padding-left: 30px;
}

.post-body li {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.post-body strong {
    color: #1f2937;
    font-weight: 600;
}

.post-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    text-align: center;
    border-left: 5px solid #dc2626;
}

.post-cta h3 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.post-cta p {
    margin-bottom: 25px;
    color: #6b7280;
}

.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-post {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.related-post-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.related-post-content h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    line-height: 1.3;
}

.related-post-content h4 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
    color: #dc2626;
}

.related-post-date {
    color: #9ca3af;
    font-size: 0.85rem;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .post-image {
        height: 250px;
    }
    
    .post-content {
        padding: 30px 25px;
    }
    
    .post-title a {
        font-size: 1.5rem;
    }
    
    .post-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .sidebar-widget {
        padding: 25px 20px;
    }
    
    .blog-search-form {
        flex-direction: column;
    }
    
    .recent-post {
        flex-direction: column;
        text-align: center;
    }
    
    .recent-post-img {
        width: 100%;
        height: 150px;
        align-self: center;
    }
    
    /* Blog Post Responsive Styles */
    .blog-post-hero {
        padding: 120px 0 60px;
    }
    
    .blog-post-hero .post-title {
        font-size: 2.2rem;
    }
    
    .post-subtitle {
        font-size: 1.1rem;
    }
    
    .post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .post-featured-image {
        height: 300px;
    }
    
    .post-body {
        padding: 40px 30px;
    }
    
    .post-body h2 {
        font-size: 1.7rem;
    }
    
    .post-body h3 {
        font-size: 1.3rem;
    }
    
    .post-body h4 {
        font-size: 1.2rem;
    }
    
    .post-body p,
    .post-body li {
        font-size: 1rem;
    }
    
    .post-cta {
        padding: 30px 25px;
    }
    
    .related-post {
        flex-direction: column;
        text-align: center;
    }
    
    .related-post-img {
        width: 100%;
        height: 150px;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 120px 0 80px;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-content {
        padding: 60px 0;
    }
    
    .post-image {
        height: 200px;
    }
    
    .post-content {
        padding: 25px 20px;
    }
    
    .post-title a {
        font-size: 1.3rem;
    }
    
    .sidebar-widget {
        padding: 20px 15px;
    }
    
    /* Blog Post Mobile Styles */
    .blog-post-hero {
        padding: 100px 0 50px;
    }
    
    .blog-post-hero .post-title {
        font-size: 1.8rem;
    }
    
    .post-subtitle {
        font-size: 1rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .post-featured-image {
        height: 250px;
    }
    
    .post-body {
        padding: 30px 20px;
    }
    
    .post-body h2 {
        font-size: 1.5rem;
    }
    
    .post-body h3 {
        font-size: 1.2rem;
    }
    
    .post-body h4 {
        font-size: 1.1rem;
    }
    
    .post-body p,
    .post-body li {
        font-size: 0.95rem;
    }
    
    .post-cta {
        padding: 25px 20px;
    }
    
    .post-cta h3 {
        font-size: 1.3rem;
    }
}

/* === Premium refinements === */

/* Footer legal links */
.footer-info .privacy-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info .privacy-link:hover {
    color: #ffffff;
}

/* Understated accent rule in place of emoji icons */
.feature-card h3::before,
.benefit-card h3::before,
.philosophy-card h3::before {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: #dc2626;
    border-radius: 2px;
    margin: 0 auto 14px;
}
