
/* --- CSS Variables & Global Styles --- */
:root {
    --primary-yellow: #FFD60A;
    --black-base: #000000;
    --white-text: #FFFFFF;
    --dark-gray: #121212;
    --medium-gray: #1a1a1a;
    --light-gray: #333;
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius: 8px;
    --transition-speed: 0.3s;
    
    --glow-intensity: 0 0 15px rgba(255, 214, 10, 0.7);
    --neon-glow: 0 0 20px rgba(255, 214, 10, 0.8);
}
.text-accent{
    color: var(--primary-yellow);
}

/* --- Custom Cursor --- */
body { cursor: none; }
.custom-cursor {
    width: 20px; height: 20px;
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.1s ease; z-index: 9999;
    mix-blend-mode: difference;
}
.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(255, 214, 10, 0.5);
}

/* --- Loading Screen --- */
.loading-screen {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--black-base);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; }
.loader-logo { width: 8rem !important; height: 8rem !important; max-width: 180px !important; max-height: 180px !important; margin-bottom: 20px; object-fit: contain; }
.loading-screen img.loader-logo, .loading-screen .loader-logo { width: 8rem !important; height: 8rem !important; max-width: 180px !important; max-height: 180px !important; }
.loader-logo .ring { stroke: var(--primary-yellow); stroke-width: 0.5; fill: none; stroke-dasharray: 500; stroke-dashoffset: 500; }
.loader-logo .h-shape { stroke: var(--white-text); stroke-width: 1; fill: none; stroke-dasharray: 300; stroke-dashoffset: 300; }
.loader-text { 
    font-family: var(--font-heading); 
    font-size: 1.5rem; 
    color: var(--white-text); 
    text-align: center; 
    max-width: 80%;
    opacity: 0;
    transform: translateY(20px);
}

/* --- Page Transition Overlay --- */
.page-transition-overlay {
    position: fixed; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--primary-yellow);
    z-index: 9998;
    pointer-events: none;
}

.nav-logo{
    width: 3rem !important;
    height: 3rem !important;
    max-width: 4rem !important;
    max-height: 4rem !important;
    display: inline-block !important;
    vertical-align: middle !important;
    object-fit: contain !important;
}

/* Force override of inline styles on nav logo elements */
header.navbar img.nav-logo, img.nav-logo, .nav-logo {
    width: 56px !important;
    height: 56px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    header.navbar img.nav-logo, img.nav-logo, .nav-logo {
        width: 40px !important;
        height: 40px !important;
        max-width: 48px !important;
        max-height: 48px !important;
    }
}

@media (max-width: 480px) {
    header.navbar img.nav-logo, img.nav-logo, .nav-logo {
        width: 32px !important;
        height: 32px !important;
        max-width: 36px !important;
        max-height: 36px !important;
    }
}

/* --- NAVIGATION BAR --- */
.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 15px 0; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(15px); z-index: 1000; transition: all 0.3s ease; }
.navbar.scrolled { padding: 10px 0; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5); }
.navbar-container { display: flex; justify-content: space-between; align-items: center; }
.navbar-logo { display: flex; align-items: center; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 900; color: var(--primary-yellow); text-decoration: none; }
.navbar-logo img, .navbar-logo svg { width: 56px; height: 56px; max-width: 80px; max-height: 80px; margin-right: 12px; object-fit: contain; display: inline-block; }

/* Stronger constraints for small screens so logo doesn't grow unexpectedly */
@media (max-width: 768px) {
    .navbar-logo img, .navbar-logo svg, .nav-logo { width: 40px !important; height: 40px !important; max-width: 48px !important; max-height: 48px !important; }
    .navbar-logo { font-size: 0.95rem; }
}
@media (max-width: 480px) {
    .navbar-logo img, .navbar-logo svg, .nav-logo { width: 32px !important; height: 32px !important; max-width: 36px !important; max-height: 36px !important; }
    .navbar-logo { font-size: 0.9rem; }
}
.navbar-logo .ring { stroke: var(--primary-yellow); stroke-width: 0.5; fill: none; transform-origin: center; transition: transform 0.5s ease; }
.navbar-logo:hover .ring-1 { transform: rotate(360deg); }
.navbar-logo:hover .ring-2 { transform: rotate(-360deg); }
.navbar-logo:hover .ring-3 { transform: rotate(720deg); }
.navbar-menu { display: flex; list-style: none; gap: 30px; }
.navbar-menu a { color: var(--white-text); text-decoration: none; font-family: var(--font-heading); text-transform: uppercase; font-size: 0.9rem; position: relative; transition: color 0.3s ease; }
.navbar-menu a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background-color: var(--primary-yellow); transition: width 0.3s ease; }
.navbar-menu a:hover::after, .navbar-menu a.active::after { width: 100%; }
.navbar-menu a:hover, .navbar-menu a.active { color: var(--primary-yellow); }
.hamburger { display: none; flex-direction: column; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background-color: var(--white-text); margin: 3px 0; transition: 0.3s; }
@media (max-width: 768px) {
    .navbar-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background-color: var(--black-base); width: 100%; text-align: center; transition: 0.3s; padding: 20px 0; }
    .navbar-menu.active { left: 0; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

/* --- Rest of the Styles --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--black-base); color: var(--white-text); line-height: 1.6; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html, * { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 100px 0; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 50px; text-align: center; }
.section-title { position: relative; display: inline-block; width: 100%; }
.section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: var(--primary-yellow); }
.btn { display: inline-block; padding: 15px 30px; background-color: transparent; color: var(--white-text); border: 2px solid var(--primary-yellow); border-radius: var(--border-radius); font-family: var(--font-heading); font-weight: 500; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; position: relative; overflow: hidden; transition: all var(--transition-speed) ease; z-index: 1; }
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background-color: var(--primary-yellow); transition: left 0.5s ease; z-index: -1; }
.btn:hover::before { left: 0; }
.btn:hover { color: var(--black-base); transform: translateY(-3px); box-shadow: var(--neon-glow); }
.glass-panel { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border-radius: var(--border-radius); border: 1px solid rgba(255, 255, 255, 0.1); padding: 30px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}
.nav-logo {
    display: flex;
    align-items: center;
}
.logo-image {
    height: 3rem;
    width: 3rem;
    margin-right: 0.75rem;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}
.logo-accent {
    color: var(--color-mustard);
}
.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}
@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
}
.nav-link {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--color-mustard);
    text-decoration: underline;
}
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 0.5rem;
}
@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}
.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}
.mobile-menu {
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(12px);
}
.mobile-menu-content {
    padding: 0.5rem 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mobile-nav-link {
    display: block;
    color: var(--color-white);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}
.mobile-nav-link:hover {
    color: var(--color-mustard);
}
/* Buttons */
.btn-primary {
    padding: 0.625rem 1.5rem;
    background-color: var(--primary-yellow);
    color: var(--black-base);
    font-weight: 600;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    position: relative;
    will-change: transform, box-shadow, filter;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 6px rgba(255,214,10,0.16), 0 4px 14px rgba(0,0,0,0.12);
}
.btn-primary:hover {
    background-color: rgba(255,214,10,0.98);
    transform: translateY(-3px) scale(1.08) rotate(-0.6deg);
    box-shadow: 0 8px 30px rgba(255,214,10,0.18), 0 6px 24px rgba(0,0,0,0.18);
    filter: brightness(1.04);
}
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
}
.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--color-white);
    font-weight: 700;
    border: 2px solid var(--color-white);
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}
.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    transform: scale(1.05);
}
.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}
.mobile-btn {
    width: 100%;
}


/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.hero-decorations {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.decoration-circle {
    position: absolute;
    border: 1px solid rgba(225, 173, 1, 0.2);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.decoration-circle-1 {
    top: 5rem;
    left: 2.5rem;
    width: 16rem;
    height: 16rem;
}
.decoration-circle-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    animation-delay: 1s;
}
.decoration-dot {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-mustard);
    border-radius: 50%;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.decoration-dot-1 {
    top: 50%;
    left: 25%;
}
.decoration-dot-2 {
    top: 33.333333%;
    right: 33.333333%;
    animation-delay: 0.5s;
}
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    transition: all 1s ease;
}
.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (min-width: 640px) {
    .hero-content {
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    .hero-content {
        padding: 0 2rem;
    }
}
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
@media (min-width: 640px) {
    .hero-title {
        font-size: 3.75rem;
    }
}
@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}
@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-300);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}
@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.875rem;
    }
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}
.btn-primary.btn-large {
    opacity: 1 !important;
    pointer-events: auto !important;
    box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, filter 0.35s ease;
}
.btn-primary.btn-large:hover {
    box-shadow: 0 12px 40px rgba(255,214,10,0.22), 0 8px 24px rgba(0,0,0,0.18);
    transform: translateY(-4px) scale(1.08) rotate(-0.6deg);
    filter: brightness(1.03);
}
.btn-secondary.btn-large {
    opacity: 1 !important;
    pointer-events: auto !important;
     color: #fff !important;
     background: transparent !important;
     border: 2px solid #fff !important;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.2s ease, color 0.2s ease;
    box-shadow: 0 6px 18px -6px rgba(0,0,0,0.12);
    will-change: transform, box-shadow, background, color;
}
 .btn-secondary.btn-large:hover {
    background: #fff !important;
    color: #000 !important;
    box-shadow: 0 12px 40px rgba(255,255,255,0.16), 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px) scale(1.08) rotate(0.6deg);
    filter: brightness(1.03);
}

.btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 6px rgba(255,255,255,0.12), 0 6px 20px rgba(0,0,0,0.12);
}
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.scroll-indicator-container {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--primary-yellow);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}
.scroll-indicator-dot {
    width: 0.25rem;
    height: 0.75rem;
    background-color: var(--primary-yellow);
    border-radius: 9999px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0.5rem);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
.web3 { color: var(--primary-yellow); }
.the-problem { text-align: left; font-size: 0.85rem; margin-bottom: 8px; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; color: var(--primary-yellow); }
.hero-cta { display: flex; flex-direction: column; gap: 12px; justify-content: center; align-items: center; }
.hero-cta .btn { margin: 0; padding: 12px 24px; font-size: 0.9rem; }

/* Responsive hero section */

.about-section { background-color: var(--dark-gray); }
.features-section {
    padding: 6rem 0;
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}
.features-background {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        linear-gradient(to right, var(--color-mustard) 1px, transparent 1px),
        linear-gradient(to bottom, var(--color-mustard) 1px, transparent 1px);
    background-size: 4rem 4rem;
}
.features-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
}
.feature-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(225, 173, 1, 0.2), transparent);
}
.feature-card-content {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    height: 100%;
}
.feature-card:hover .feature-card-content {
    border-color: rgba(225, 173, 1, 0.5);
}
.feature-icon {
    background-color: rgba(225, 173, 1, 0.1);
    border-radius: 9999px;
    padding: 1rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
    background-color: rgba(225, 173, 1, 0.2);
}
.feature-icon .icon {
    width: 2rem;
    height: 2rem;
    color: var(--color-mustard);
}
.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}
.feature-description {
    color: var(--color-gray-300);
    line-height: 1.75;
}
.course-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.course-card { background-color: var(--medium-gray); border-radius: var(--border-radius); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
.course-card:hover { transform: translateY(-10px); box-shadow: var(--neon-glow); }
.course-image { width: 100%; height: 200px; background-color: var(--light-gray); }
.course-content { padding: 25px; }
.course-title { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 10px; }
.stats-section { background-color: var(--dark-gray); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; text-align: center; }
.stat-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: var(--primary-yellow); }
.stat-label { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.testimonial-slider { padding: 50px 0; }
.swiper { width: 100%; height: 100%; }
.swiper-slide { display: flex; justify-content: center; align-items: center; }
.testimonial-card { max-width: 700px; text-align: center; }
.testimonial-text { font-size: 1.2rem; font-style: italic; margin-bottom: 20px; min-height: 100px; }
.testimonial-author { font-family: var(--font-heading); font-weight: 700; color: var(--primary-yellow); }

/* --- New Sections Styles --- */

.newsletter-section { background-color: var(--medium-gray); text-align: center; }
.newsletter-form { max-width: 500px; margin: 0 auto; display: flex; gap: 10px; }
.newsletter-form input { flex-grow: 1; padding: 15px; background: rgba(255,255,255,0.1); border: 1px solid var(--light-gray); border-radius: var(--border-radius); color: var(--white-text); font-family: var(--font-body); }
.newsletter-form input:focus { outline: none; border-color: var(--primary-yellow); }
.newsletter-form .btn { padding: 15px 25px; }
.success-message-subscribe { display: none; margin-top: 20px; color: var(--primary-yellow); font-weight: 600; }

/* --- Beautiful Footer --- */
footer {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 20px;
    color: var(--white-text);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-yellow);
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a {
    color: var(--white-text);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}
.footer-column ul li a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}
.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}
.footer-logo svg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.footer-newsletter-form {
    display: flex;
    margin-top: 15px;
}
.footer-newsletter-form input {
    flex-grow: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    color: var(--white-text);
    font-family: var(--font-body);
}
.footer-newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-yellow);
}
.footer-newsletter-form button {
    padding: 12px 20px;
    background-color: var(--primary-yellow);
    color: var(--black-base);
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 10px;
}
.footer-newsletter-form button:hover {
    background-color: var(--white-text);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
