:root {
    --primary-color: #6B4EE6;
    --secondary-color: #F5F3FF;
    --text-color: #333;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.lang-en {
    display: none;
}

header {
    background: white;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    height: 40px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

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

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

.nav-links a.active {
    color: var(--primary-color);
}

.language-switch {
    margin-left: 2rem;
    display: flex;
    gap: 0.5rem;
}

.language-switch button {
    padding: 0.5rem 1rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.language-switch button.active {
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .language-switch {
        margin-left: 1rem;
    }
}

.hero {
    background: var(--secondary-color);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.hero h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.hero-app {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.app-qrcode {
    width: 120px;
    height: 120px;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(107, 78, 230, 0.1);
}

.app-qrcode img {
    width: 100%;
    height: 100%;
}

.app-info {
    text-align: left;
}

.app-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.app-buttons {
    padding-top: 40px;
    display: flex;
    gap: 1rem;
}
.app-buttons1 {
    padding-top: 20px;
    display: flex;
    gap: 1rem;
}
.app-buttons img {
    height: 40px;
    transition: transform 0.3s ease;
}

.app-buttons img:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-app {
        flex-direction: column;
        align-items: center;
    }
    
    .app-info {
        text-align: center;
    }
}

.features {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(107, 78, 230, 0.1);
    transition: all 0.3s ease;
    align-items: center;
}

.feature-card:nth-child(even) {
    direction: rtl;
}

.feature-card:nth-child(even) .feature-content {
    direction: ltr;
}

.feature-content {
    padding: 2rem;
}

.feature-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-color: var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 2rem;
    display: none;
}

.feature-image img.lang-zh,
.feature-image img.lang-en {
    display: none;
}

.feature-image img.active {
    display: block;
}

@media (max-width: 768px) {
    .feature-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .feature-card:nth-child(even) {
        direction: ltr;
    }
    
    .feature-content {
        padding: 1rem 0;
        order: 1;
    }
    
    .feature-image {
        min-height: 200px;
        order: 2;
    }
    
    .feature-image img {
        padding: 1rem;
    }
}

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

@media (max-width: 768px) {
    .feature-image {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .feature-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .feature-card:nth-child(even) {
        direction: ltr;
    }
    
    .feature-content {
        padding: 1rem 0;
    }
}

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

.feature-card h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.about {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 4rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #6B4EE6 0%, #8A6FFF 100%);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(107, 78, 230, 0.2);
    color: white;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
}

.about h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

@media (max-width: 768px) {
    .about {
        margin: 2rem;
        padding: 2rem;
    }
}

footer {
    background: #333;
    color: white;
    padding: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    max-width: 400px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-left .logo {
    margin-bottom: 2rem;
}

.footer-left p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.app-download {
    text-align: center;
}

.app-qrcode {
    width: 140px;
    height: 140px;
    padding: 10px;
    background: white;
    border-radius: 10px;
    margin: 0 auto 1rem;
}

.app-qrcode img {
    width: 100%;
    height: 100%;
}

.app-info h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.app-buttons img {
    height: 40px;
    transition: transform 0.3s ease;
}

.app-buttons img:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-left {
        max-width: 100%;
    }
    
    .app-download {
        margin-top: 2rem;
    }
}

.contact {
    background: linear-gradient(135deg, #6B4EE6 0%, #8A6FFF 100%);
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-text {
    color: white;
    text-align: center;
}

.contact-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.icon-wrapper {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-item p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
}

.social-media {
    margin-top: 2rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-item img {
    width: 24px;
    height: 24px;
}

.contact-item p,
.social-item p {
    color: white;
    font-size: 1.1rem;
}

.contact-image {
    position: relative;
    width: 100%;
    height: 400px;
}

.contact-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

.contact-image img.lang-zh,
.contact-image img.lang-en {
    display: none;
}

.contact-image img.active {
    display: block;
}

@media (max-width: 768px) {
    .contact-image {
        height: 300px;
    }
    
    .social-media {
        margin-top: 1.5rem;
    }
}

.contact-image img {
    width: 100%;
    max-width: 500px;
}
header h1 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: 1.5rem;
    color: var(--text-color);
}

footer .logo h1 span {
    color: white;
}
header h1 img {
    height: 40px;
    width: auto;
}
.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.logo h1 img {
    height: 40px;
    width: auto;
}

.logo h1 span {
    font-size: