/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4a574;
    --accent-color: #8b7355;
    --rose-color: #c4969e;
    --rose-light: #e8d4d8;
    --rose-subtle: rgba(196, 150, 158, 0.15);
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-color);
    transition: width 0.3s ease;
}

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

.nav-links .mobile-cta {
    display: none;
}

.nav-cta {
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-text {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-countdown {
    margin-bottom: 40px;
}

.countdown-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--rose-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.countdown-timer {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 20px 30px;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.countdown-text {
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

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

.btn-primary, .btn-secondary {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-primary.large {
    padding: 20px 50px;
    font-size: 1.1rem;
}

/* ===================================
   FEATURED PROGRAM SECTION
   =================================== */
.featured-program-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.featured-program-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05), rgba(139, 115, 85, 0.05));
    border-radius: 50% 0 0 50%;
    z-index: 0;
}

.featured-program-content {
    position: relative;
    z-index: 1;
}

.featured-program-header {
    text-align: center;
    margin-bottom: 60px;
}

.featured-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--secondary-color);
    color: white;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
    }
}

.featured-title {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.featured-subtitle {
    font-size: 1.8rem;
    color: var(--rose-color);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-style: italic;
}

.featured-program-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.featured-intro {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 500;
}

.featured-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.program-overview {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.overview-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.overview-grid {
    display: grid;
    gap: 24px;
}

.overview-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.overview-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.overview-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--rose-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Calendar Icon */
.icon-calendar::before {
    content: '';
    width: 28px;
    height: 28px;
    border: 3px solid white;
    border-radius: 4px;
    position: absolute;
}

.icon-calendar::after {
    content: '';
    width: 18px;
    height: 2px;
    background: white;
    position: absolute;
    top: 24px;
    box-shadow: 0 5px 0 white, 0 10px 0 white;
}

/* Hands Icon */
.icon-hands::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-radius: 50%;
    position: absolute;
    top: 8px;
}

.icon-hands::after {
    content: '';
    width: 16px;
    height: 16px;
    border-left: 3px solid white;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    border-radius: 0 0 8px 8px;
    position: absolute;
    bottom: 8px;
}

/* Graduation Cap Icon */
.icon-graduation::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 12px solid white;
    position: absolute;
    top: 12px;
}

.icon-graduation::after {
    content: '';
    width: 24px;
    height: 3px;
    background: white;
    position: absolute;
    bottom: 18px;
    border-radius: 2px;
}

.overview-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 6px;
    font-weight: 600;
}

.overview-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.featured-cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
    flex: 1;
    min-width: 250px;
}

.featured-cta-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
}

.paypal-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #0070ba;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 112, 186, 0.3);
    flex: 1;
    min-width: 250px;
    position: relative;
}

.paypal-btn:hover {
    background: #005a92;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 112, 186, 0.4);
}

.paypal-btn::before {
    content: '💳';
    margin-right: 8px;
    font-size: 1.2rem;
}

.featured-program-curriculum {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.curriculum-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.curriculum-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.curriculum-category h4 {
    font-size: 1.2rem;
    color: var(--rose-color);
    margin-bottom: 16px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--rose-color);
}

.curriculum-category ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.curriculum-category li {
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.curriculum-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rose-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===================================
   QUICK SCHEDULE OVERVIEW
   =================================== */
.quick-schedule-overview {
    background: linear-gradient(135deg, rgba(196, 150, 158, 0.08), rgba(212, 165, 116, 0.08));
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.quick-schedule-overview .schedule-toggle-btn {
    margin-bottom: 0;
}

.quick-schedule-overview .schedule-content {
    background: transparent;
    padding: 0;
}

.quick-schedule-overview .schedule-content.active {
    margin-top: 30px;
}

.quick-schedule-overview .overview-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.schedule-week {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--rose-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.schedule-week:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(196, 150, 158, 0.2);
    border-left-color: var(--secondary-color);
}

.schedule-week.week-final {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(196, 150, 158, 0.1));
    border-left-color: var(--secondary-color);
    border-left-width: 5px;
}

.week-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--rose-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.week-date {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.week-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.5;
}

/* Responsive for quick schedule */
@media (max-width: 768px) {
    .quick-schedule-overview {
        padding: 30px 20px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .schedule-week {
        padding: 16px;
    }
}

/* ===================================
   CLASS SCHEDULE COLLAPSIBLE SECTION
   =================================== */
.class-schedule-section {
    margin: 40px 0;
}

.schedule-toggle-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    background: linear-gradient(135deg, var(--rose-color), var(--secondary-color));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 150, 158, 0.3);
    gap: 16px;
}

.schedule-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 150, 158, 0.4);
}

.schedule-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.schedule-title {
    flex: 1;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.schedule-arrow {
    font-size: 1.2rem;
    color: white;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.schedule-toggle-btn.active .schedule-arrow {
    transform: rotate(180deg);
}

.schedule-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 0;
}

.schedule-content.active {
    max-height: 5000px;
    margin-top: 24px;
}

.week-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.week-card:hover {
    border-color: var(--rose-color);
    box-shadow: 0 4px 15px rgba(196, 150, 158, 0.15);
    transform: translateX(5px);
}

.week-card.week-final {
    background: linear-gradient(135deg, rgba(196, 150, 158, 0.08), rgba(212, 165, 116, 0.08));
    border: 2px solid var(--secondary-color);
}

.week-header h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.week-topic {
    font-size: 1.05rem;
    color: var(--rose-color);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 16px;
}

.week-objectives {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.week-objectives strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.week-objectives ul {
    list-style: none;
    padding-left: 0;
}

.week-objectives li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.week-objectives li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rose-color);
    font-weight: 700;
    font-size: 1rem;
}

/* Responsive for schedule */
@media (max-width: 768px) {
    .schedule-toggle-btn {
        padding: 20px 24px;
    }
    
    .schedule-icon {
        font-size: 1.5rem;
    }
    
    .schedule-title {
        font-size: 1.1rem;
    }
    
    .week-card {
        padding: 20px;
    }
    
    .week-header h4 {
        font-size: 1.05rem;
    }
    
    .week-topic {
        font-size: 0.95rem;
    }
}

/* ===================================
   STATS BAR
   =================================== */
.stats-bar {
    background: var(--primary-color);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--rose-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--rose-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: 120px 0;
    background: var(--bg-white);
}

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

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--rose-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.feature-text {
    font-weight: 500;
    color: var(--text-dark);
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   PROGRAMS SECTION
   =================================== */
.programs-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.program-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.program-card.featured {
    border: 3px solid var(--secondary-color);
}

.program-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.program-badge.popular {
    background: var(--secondary-color);
    color: white;
}

.program-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.program-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.program-description {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.program-list {
    list-style: none;
    margin-bottom: 30px;
}

.program-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

.program-list li::before {
    content: '✓';
    color: var(--rose-color);
    font-weight: 700;
    margin-right: 12px;
}

.program-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.program-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.program-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* ===================================
   TECHNIQUES SECTION (REDESIGNED)
   =================================== */
.techniques-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.techniques-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.technique-card-new {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.technique-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.technique-card-new.active {
    border: 3px solid var(--secondary-color);
}

.technique-card-new.coming-soon {
    opacity: 0.85;
}

.technique-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 24px;
    background: var(--secondary-color);
    color: white;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.technique-badge.coming-soon-badge {
    background: var(--text-light);
}

.technique-image-new {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.technique-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.technique-card-new:hover .technique-image-new img {
    transform: scale(1.08);
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.coming-soon-text {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.technique-content {
    padding: 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.technique-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.technique-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.98rem;
}

.technique-highlights {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.technique-highlights li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
    padding-left: 28px;
}

.technique-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rose-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.technique-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.technique-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.technique-btn.disabled {
    background: var(--border-color);
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.technique-btn.disabled:hover {
    transform: none;
    background: var(--border-color);
}

.techniques-footer {
    text-align: center;
    padding: 50px 0 0;
    border-top: 2px solid var(--border-color);
}

.techniques-footer-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 500;
}

.techniques-footer-btn {
    display: inline-block;
    padding: 16px 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
}

.techniques-footer-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
}

/* ===================================
   SUCCESS STORIES SECTION (REDESIGNED)
   =================================== */
.success-stories-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Carousel Container */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 60px;
    padding: 20px 0;
}

/* Carousel Track - holds all cards */
.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 60s linear infinite;
    width: max-content;
}

/* Pause animation on hover */
.carousel-track:hover {
    animation-play-state: paused;
}

/* Scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Card sizing for carousel */
.carousel-track .story-card {
    flex: 0 0 380px;
    min-width: 380px;
}

.carousel-track .story-card.featured-story {
    flex: 0 0 700px;
    min-width: 700px;
}

/* Featured Story Card */
.story-card.featured-story {
    grid-column: 1 / -1;
    background: white;
    color: var(--text-dark);
    padding: 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
}

.story-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-light);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.story-quote-large {
    position: relative;
    margin-bottom: 40px;
}

.quote-icon {
    font-size: 3rem;
    color: var(--text-light);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
    line-height: 0.5;
    margin-bottom: 12px;
}

.story-quote-large p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    z-index: 1;
    color: var(--text-dark);
    font-style: italic;
}

.story-author-featured {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--text-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.author-details h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--primary-color);
    font-weight: 600;
}

.author-details p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.story-stars {
    color: var(--secondary-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.7;
}

.story-results {
    display: flex;
    gap: 30px;
}

.result-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.result-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

.result-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Regular Story Cards */
.story-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border-color);
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.story-card .story-stars {
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
    opacity: 0.7;
}

.story-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
    flex: 1;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 2px solid var(--bg-light);
    margin-bottom: 16px;
}

.story-card .author-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-info strong {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.story-achievement {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-light);
    color: var(--text-light);
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

/* Success Stories CTA */
.success-stories-cta {
    text-align: center;
    padding: 40px 0 0;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.cta-text-inline {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.success-stories-cta .btn-primary {
    padding: 14px 40px;
    font-size: 0.95rem;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--rose-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Location Pin Icon */
.icon-location::before {
    content: '';
    width: 20px;
    height: 28px;
    border: 3px solid white;
    border-radius: 50% 50% 50% 0;
    position: absolute;
    transform: rotate(-45deg);
}

.icon-location::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 14px;
    left: 21px;
    transform: rotate(-45deg);
}

/* Email Icon */
.icon-email::before {
    content: '';
    width: 30px;
    height: 20px;
    border: 3px solid white;
    border-radius: 4px;
    position: absolute;
}

.icon-email::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 10px solid white;
    position: absolute;
    top: 16px;
}

/* Phone Icon */
.icon-phone::before {
    content: '';
    width: 18px;
    height: 26px;
    border: 3px solid white;
    border-radius: 4px;
    position: absolute;
}

.icon-phone::after {
    content: '';
    width: 8px;
    height: 2px;
    background: white;
    border-radius: 1px;
    position: absolute;
    bottom: 14px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item a {
    color: var(--rose-color);
    font-weight: 500;
}

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

.contact-form {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--rose-color);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--rose-color);
}

.footer-social a.instagram-link {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.footer-social a.instagram-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
    color: white;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--rose-color);
    padding-left: 5px;
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-newsletter {
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
}

.footer-newsletter button {
    padding: 12px 24px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--rose-color);
}

/* ===================================
   VIDEO SECTION
   =================================== */
.video-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.video-container-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--primary-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-placeholder-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(139, 115, 85, 0.95));
}

.video-play-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.video-play-icon:hover {
    transform: scale(1.1);
    background: var(--accent-color);
    box-shadow: 0 10px 40px rgba(212, 165, 116, 0.5);
}

.video-play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 30px solid white;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    margin-left: 8px;
}

.video-placeholder-text {
    color: white;
    text-align: center;
}

.video-placeholder-text h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: white;
}

.video-placeholder-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Video Section */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }

    .video-play-icon {
        width: 80px;
        height: 80px;
    }

    .video-play-icon::after {
        border-left: 24px solid white;
        border-top: 16px solid transparent;
        border-bottom: 16px solid transparent;
        margin-left: 6px;
    }

    .video-placeholder-text h3 {
        font-size: 1.5rem;
    }

    .video-placeholder-text p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* ===================================
   KATIE ABOUT PAGE STYLES
   =================================== */
.katie-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
}

.katie-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.katie-hero-text {
    padding-right: 40px;
}

.katie-hero-title {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.1;
}

.katie-hero-subtitle {
    font-size: 1.5rem;
    color: var(--rose-color);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 20px;
}

.katie-hero-tagline {
    font-size: 1.15rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 500;
}

.katie-hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.katie-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.katie-story-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.katie-story-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: start;
}

.katie-story-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 24px;
}

.katie-credentials {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 16px;
    position: sticky;
    top: 120px;
}

.credentials-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.credential-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.credential-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--rose-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.credential-text h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 6px;
    font-weight: 600;
}

.credential-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.philosophy-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.philosophy-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.philosophy-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--rose-color);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.philosophy-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.philosophy-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.katie-quote-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    position: relative;
    overflow: hidden;
}

.katie-quote-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.katie-quote-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-mark {
    font-size: 8rem;
    color: var(--secondary-color);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
    line-height: 0.5;
    margin-bottom: 30px;
}

.katie-quote {
    font-size: 1.5rem;
    color: white;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 300;
}

.quote-author {
    font-size: 1.2rem;
    color: var(--rose-color);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 20px;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        animation: slideDown 0.3s ease-out;
    }

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

    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .nav-links .mobile-cta {
        display: block;
        margin-top: 10px;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
    }

    .nav-links .mobile-cta a {
        display: block;
        text-align: center;
        padding: 14px 28px;
        background: var(--primary-color);
        color: white !important;
        border-radius: 30px;
        font-weight: 600;
    }

    .nav-links .mobile-cta a::after {
        display: none;
    }

    .nav-links .mobile-cta a:hover {
        background: var(--secondary-color);
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 8px 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-title {
        font-size: 2.5rem;
    }

    .featured-subtitle {
        font-size: 1.5rem;
    }

    .featured-program-grid {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .program-cta-buttons {
        flex-direction: column;
    }

    .featured-cta-btn,
    .paypal-btn {
        width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .techniques-grid-new {
        grid-template-columns: 1fr;
    }

    .carousel-track .story-card {
        flex: 0 0 350px;
        min-width: 350px;
    }

    .carousel-track .story-card.featured-story {
        flex: 0 0 700px;
        min-width: 700px;
    }

    .story-card.featured-story {
        padding: 40px;
    }

    .story-quote-large p {
        font-size: 1.2rem;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .result-number {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    /* Katie Page Responsive */
    .katie-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .katie-hero-text {
        padding-right: 0;
        text-align: center;
    }

    .katie-hero-title {
        font-size: 3rem;
    }

    .katie-story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .katie-credentials {
        position: static;
    }

    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   GALLERY PAGE STYLES
   =================================== */
.gallery-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
    text-align: center;
}

.gallery-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.gallery-hero-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.gallery-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Filter Section */
.gallery-filter-section {
    padding: 40px 0;
    background: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 90px;
    z-index: 100;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
    border-color: var(--rose-color);
    color: var(--rose-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--rose-color);
    border-color: var(--rose-color);
    color: white;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

.gallery-item {
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.9);
    position: absolute;
    pointer-events: none;
}

.gallery-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.gallery-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.gallery-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image-container img {
    transform: scale(1.1);
}

.image-label {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.gallery-image-container.before .image-label {
    background: rgba(139, 115, 85, 0.9);
}

.gallery-image-container.after .image-label {
    background: rgba(196, 150, 158, 0.9);
}

.gallery-info {
    padding: 30px;
}

.gallery-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.gallery-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.gallery-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--rose-subtle);
    color: var(--rose-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery CTA Section */
.gallery-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    text-align: center;
}

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

.gallery-cta-title {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gallery-cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

/* Gallery Video Styles */
.gallery-video-item .gallery-video-card {
    display: flex;
    flex-direction: column;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        padding: 100px 0 60px;
    }

    .gallery-hero-title {
        font-size: 2.5rem;
    }

    .gallery-hero-subtitle {
        font-size: 1rem;
    }

    .gallery-filter-section {
        top: 60px;
        padding: 20px 0;
    }

    .gallery-filters {
        gap: 12px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .gallery-section {
        padding: 60px 0 80px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-image-container {
        height: 220px;
    }

    .gallery-info {
        padding: 24px;
    }

    .gallery-title {
        font-size: 1.2rem;
    }

    .gallery-cta-section {
        padding: 60px 0;
    }

    .gallery-cta-title {
        font-size: 2rem;
    }

    .gallery-cta-text {
        font-size: 1rem;
    }

    .gallery-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .gallery-cta-buttons .btn-primary,
    .gallery-cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .logo-image {
        height: 40px;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
    }

    .nav-links.active {
        top: 60px;
        padding: 20px;
        max-height: calc(100vh - 60px);
    }

    .nav-links.active::before {
        top: 60px;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .hero {
        height: auto;
        min-height: 70vh;
        padding-top: 70px;
        padding-bottom: 40px;
    }

    .hero-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    }

    .hero-content {
        padding: 20px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
        font-weight: 700;
        margin-bottom: 16px;
        line-height: 1.15;
    }

    .hero-text {
        font-size: 0.95rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .hero-countdown {
        margin-bottom: 24px;
    }

    .countdown-label {
        font-size: 0.85rem;
        margin-bottom: 12px;
        letter-spacing: 1px;
    }

    .countdown-timer {
        gap: 8px;
        justify-content: center;
    }

    .countdown-item {
        padding: 12px 16px;
        min-width: 65px;
        gap: 4px;
    }

    .countdown-number {
        font-size: 1.75rem;
    }

    .countdown-text {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-program-section {
        padding: 60px 0;
    }

    .featured-title {
        font-size: 1.8rem;
    }

    .featured-subtitle {
        font-size: 1.3rem;
    }

    .featured-program-grid {
        padding: 30px 20px;
    }

    .program-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .featured-cta-btn,
    .paypal-btn {
        width: 100%;
        min-width: auto;
        padding: 16px 40px;
        font-size: 1rem;
    }

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

    .featured-program-curriculum {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-section,
    .programs-section,
    .techniques-section,
    .success-stories-section,
    .contact-section {
        padding: 60px 0;
    }

    .carousel-track .story-card {
        flex: 0 0 320px;
        min-width: 320px;
    }

    .carousel-track .story-card.featured-story {
        flex: 0 0 320px;
        min-width: 320px;
    }

    .story-card.featured-story {
        padding: 30px;
    }

    .quote-icon {
        font-size: 4rem;
    }

    .story-quote-large p {
        font-size: 1.1rem;
    }

    .story-author-featured {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .author-details h4 {
        font-size: 1.2rem;
    }

    .story-results {
        justify-content: center;
        gap: 30px;
    }

    .result-number {
        font-size: 2rem;
    }

    .story-card {
        padding: 30px;
    }

    .cta-text-inline {
        font-size: 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    /* Katie Page Mobile */
    .katie-hero {
        padding: 100px 0 60px;
    }

    .katie-hero-title {
        font-size: 2.5rem;
    }

    .katie-hero-subtitle {
        font-size: 1.2rem;
    }

    .katie-hero-tagline {
        font-size: 1rem;
    }

    .katie-hero-description {
        font-size: 1rem;
    }

    .katie-story-section,
    .philosophy-section,
    .katie-quote-section {
        padding: 60px 0;
    }

    .katie-credentials {
        padding: 30px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .katie-quote {
        font-size: 1.2rem;
    }

    .quote-mark {
        font-size: 5rem;
    }
}

/* ===================================
   BLOG PAGE STYLES
   =================================== */
.blog-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
    text-align: center;
}

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

.blog-hero-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Featured Blog Section */
.featured-blog-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.featured-blog-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.featured-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.12);
}

.featured-blog-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

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

.featured-blog-card:hover .featured-blog-image img {
    transform: scale(1.05);
}

.featured-blog-image .featured-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 12px 28px;
    background: var(--secondary-color);
    color: white;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.featured-blog-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--rose-subtle);
    color: var(--rose-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.featured-blog-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-blog-excerpt {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.blog-read-more {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
}

.blog-read-more:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

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

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.blog-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.blog-card-meta .blog-date {
    font-size: 0.85rem;
}

.read-time {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-card-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.blog-card-link {
    display: inline-block;
    color: var(--rose-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-card-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.pagination-btn:hover {
    border-color: var(--rose-color);
    color: var(--rose-color);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: var(--rose-color);
    border-color: var(--rose-color);
    color: white;
}

/* Newsletter Section */
.blog-newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    position: relative;
    overflow: hidden;
}

.blog-newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.blog-newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.newsletter-title {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.newsletter-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-submit {
    padding: 18px 40px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.newsletter-submit:hover {
    background: var(--rose-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.newsletter-privacy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .featured-blog-card {
        grid-template-columns: 1fr;
    }

    .featured-blog-image {
        min-height: 400px;
    }

    .featured-blog-content {
        padding: 40px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 60px;
    }

    .blog-hero-title {
        font-size: 2.5rem;
    }

    .blog-hero-subtitle {
        font-size: 1rem;
    }

    .featured-blog-section {
        padding: 60px 0;
    }

    .featured-blog-image {
        min-height: 300px;
    }

    .featured-blog-content {
        padding: 30px;
    }

    .featured-blog-title {
        font-size: 1.8rem;
    }

    .featured-blog-excerpt {
        font-size: 1rem;
    }

    .blog-posts-section {
        padding: 60px 0 80px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-newsletter-section {
        padding: 60px 0;
    }

    .newsletter-icon {
        font-size: 3rem;
    }

    .newsletter-title {
        font-size: 2rem;
    }

    .newsletter-text {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-submit {
        width: 100%;
    }
}

/* ===================================
   EXTRA SMALL SCREENS (< 480px)
   =================================== */
@media (max-width: 480px) {
    .hero {
        min-height: 65vh;
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .hero-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-countdown {
        margin-bottom: 20px;
    }

    .countdown-label {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .countdown-timer {
        gap: 6px;
    }

    .countdown-item {
        padding: 10px 12px;
        min-width: 60px;
        border-width: 1.5px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-text {
        font-size: 0.65rem;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}
