/* CSS for Sunkraftde - Premium Solar Energy Design */

:root {
    --primary-color: #ff6600;
    /* Orange Accent */
    --primary-dark: #e65c00;
    --secondary-color: #1a2b3c;
    /* Navy Blue */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --container-width: 1200px;
}

/* Base resets without * selector */
.site-body,
.main-header,
.nav-container,
.logo-wrapper,
.logo-link,
.nav-links-wrapper,
.nav-list,
.nav-item,
.nav-link,
.header-actions,
.hamburger-btn,
.page-content,
.section-container,
.hero-section,
.hero-container,
.hero-text-content,
.hero-title,
.hero-description,
.hero-btn-group,
.primary-hero-btn,
.secondary-hero-btn,
.hero-image-wrapper,
.hero-image,
.about-section,
.about-grid,
.about-image-side,
.about-img,
.about-text-side,
.section-subtitle,
.section-title,
.about-text,
.about-stats,
.stat-card,
.stat-num,
.stat-label,
.benefits-section,
.section-header-centered,
.benefits-grid,
.benefit-card,
.benefit-icon-wrapper,
.benefit-img-icon,
.benefit-card-title,
.benefit-card-text,
.product-highlight-section,
.highlight-box,
.highlight-content,
.highlight-title,
.highlight-text,
.highlight-cta,
.testimonials-section,
.testimonials-grid,
.testimonial-card,
.testimonial-content,
.testimonial-quote,
.testimonial-footer,
.user-avatar,
.user-info,
.user-name,
.user-status,
.faq-section,
.faq-accordion,
.faq-item,
.faq-question,
.faq-answer,
.main-footer,
.footer-container,
.footer-top-grid,
.footer-brand-side,
.footer-logo,
.footer-brand-desc,
.footer-contact-info,
.footer-links-grid,
.footer-link-col,
.footer-col-title,
.footer-link-list,
.footer-notice-box,
.ad-footer-note,
.consumer-notice,
.footer-bottom,
.copyright,
.modal-overlay,
.modal-container,
.modal-close,
.modal-scroll-area,
.modal-content,
.cookie-popup,
.cookie-inner,
.cookie-icon,
.cookie-text-side,
.cookie-title,
.cookie-message,
.cookie-actions,
.cookie-btn-reject,
.cookie-btn-accept,
.ad-top-bar,
.ad-container,
.ad-text-top,
.page-loader,
.loader-content,
.loader-logo-text,
.loader-bar,
.loader-progress,
.loader-status,
.trust-item,
.trust-text,
.trust-icon,
.hero-badge,
.mobile-menu-header,
.mobile-logo-text,
.close-menu-btn,
.close-icon,
.header-cta-btn,
.hero-trust-elements,
.trusted-shops-badge,
.stars,
.rating,
.modal-trigger,
.custom-icon,
.nav-cta-mobile {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    background: none;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.site-body {
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.loader-content {
    text-align: center;
    color: var(--white);
}

.loader-logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--primary-color);
    animation: progress 2s ease-in-out forwards;
}

@keyframes progress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.loader-status {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Ad Top Bar */
.ad-top-bar {
    background-color: #f0f0f0;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.ad-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.ad-text-top {
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

/* Header & Nav */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -1px;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.nav-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-cta-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.header-cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger-btn .bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: radial-gradient(circle at top right, #fff5eb 0%, #ffffff 50%);
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-btn-group {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.primary-hero-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.primary-hero-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

.secondary-hero-btn {
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
}

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

.hero-trust-elements {
    display: flex;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-icon {
    color: #28a745;
    font-weight: bold;
}

.trust-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.hero-image:hover {
    transform: scale(1.03);
}

/* Sections Common */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

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

.section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 20px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    border-radius: 60px 60px 0 0;
}

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

.benefit-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid #eee;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #fff5eb;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.benefit-img-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-icon {
    font-size: 2.5rem;
}

.benefit-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.benefit-card-text {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Highlight Section */
.product-highlight-section {
    padding: 60px 0;
}

.highlight-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c4a63 100%);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    color: var(--white);
}

.highlight-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.highlight-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.highlight-cta:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
}

.trusted-shops-badge {
    margin-top: 15px;
}

.stars {
    color: #ffb400;
    font-size: 1.5rem;
}

.rating {
    font-weight: 700;
    margin-left: 10px;
}

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

.testimonial-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.1;
    color: var(--primary-color);
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.user-name {
    font-weight: 700;
    font-size: 1rem;
}

.user-status {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

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

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

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

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

/* Footer */
.main-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand-desc {
    opacity: 0.7;
    margin-bottom: 25px;
    max-width: 400px;
}

.footer-contact-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

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

.footer-col-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-link-list a,
.modal-trigger {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.95rem;
}

.footer-link-list a:hover,
.modal-trigger:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-notice-box {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-bottom: 30px;
    text-align: center;
}

.ad-footer-note {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.consumer-notice {
    font-size: 0.85rem;
    opacity: 0.6;
    max-width: 900px;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
    opacity: 0.5;
    font-size: 0.85rem;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}

.modal-container {
    background-color: var(--white);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    border-radius: 20px;
    position: relative;
    padding: 50px 40px;
    transform: scale(0.8);
    transition: var(--transition);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

.modal-scroll-area {
    overflow-y: auto;
    max-height: calc(80vh - 100px);
    padding-right: 15px;
}

.modal-content h2 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 2rem;
}

.modal-content p,
.modal-content ul {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 25px;
    z-index: 1500;
    transform: translateY(200%);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cookie-icon {
    font-size: 2.5rem;
}

.cookie-text-side {
    flex: 1;
}

.cookie-title {
    font-weight: 800;
    margin-bottom: 5px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn-accept {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.cookie-btn-reject {
    background-color: #eee;
    color: var(--text-color);
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

/* Mobile Nav Styles */
.nav-links-wrapper {
    transition: transform 0.4s ease;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .nav-container {
        padding: 15px 30px;
    }

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

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

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

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .header-cta-btn {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

    .hero-text-content {
        order: 1;
    }

    .hero-image-wrapper {
        order: 2;
        max-width: 100%;
        margin-top: 20px;
    }

    .hero-description {
        margin: 0 auto 35px;
    }

    .hero-btn-group {
        justify-content: center;
    }

    .hero-trust-elements {
        justify-content: center;
    }

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

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

    .nav-links-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        height: 100vh;
        background-color: var(--white);
        z-index: 3000;
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        padding: 40px 30px;
        transform: translateX(105%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links-wrapper.active {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 50px;
        width: 100%;
    }

    .mobile-logo-text {
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--secondary-color);
        letter-spacing: -1px;
    }

    .close-menu-btn {
        cursor: pointer;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 8px;
        color: var(--secondary-color);
        background: rgba(0, 0, 0, 0.05);
        border-radius: 50%;
    }

    .close-icon {
        width: 22px;
        height: 22px;
    }

    .mobile-only {
        display: block !important;
    }

    .nav-list {
        display: flex !important;
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }

    .nav-link {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--secondary-color);
        display: block;
        padding-bottom: 15px;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-cta-mobile {
        display: block;
        background-color: var(--primary-color);
        color: var(--white);
        padding: 18px 25px;
        border-radius: 12px;
        text-align: center;
        font-weight: 800;
        font-size: 1.1rem;
        margin-top: 20px;
        box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn-accept,
    .cookie-btn-reject {
        width: 100%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 10px;
    }

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

    .about-stats {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn-group {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .primary-hero-btn,
    .secondary-hero-btn {
        width: 100%;
        padding: 14px 25px;
        font-size: 1rem;
    }

    .hero-trust-elements {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

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

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

    .section-container {
        padding: 0 20px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .stat-card {
        text-align: center;
        background: #f9f9f9;
        padding: 20px;
        border-radius: 15px;
        width: 100%;
    }

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

    .highlight-box {
        padding: 50px 20px;
    }

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

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

    .highlight-cta {
        width: 100%;
        padding: 16px 20px;
    }

    .modal-container {
        width: 95%;
        padding: 40px 20px 30px;
        margin: 10px;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .cookie-popup {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 20px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

    .hamburger-btn .bar {
        width: 22px;
    }
}
