body {
    font-family: Open Sans;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}



    /* Nav Menu */
          /* Header styles */
          .nav-header {
            position: sticky;
            top: 0;
            z-index: 50;
            width: 100%;
            border-bottom: 1px solid #e5e7eb;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .nav-wrapper {
            display: flex;
            height: 3.5rem;
            align-items: center;
            justify-content: space-between;
        }

        /* Logo styles */
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: #000;
            font-weight: bold;
        }

        /* Navigation menu styles */
        .nav-menu {
            display: none;
        }

        @media (min-width: 1024px) {
            .nav-menu {
                display: flex;
                align-items: center;
                gap: 2rem;
                margin: 0 auto;
            }
        }

        .nav-item {
            position: relative;
            list-style: none;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 1rem;
            color: #000;
            text-decoration: none;
            font-size: 0.875rem;
            border-radius: 0.375rem;
            transition: background-color 0.2s;
        }

        .nav-link:hover {
            background-color: #f3f4f6;
        }

        /* Dropdown styles */
        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 400px;
            padding: 1rem;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .nav-item:hover .dropdown {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .dropdown-item {
            display: block;
            padding: 0.75rem;
            text-decoration: none;
            color: #000;
            border-radius: 0.375rem;
            transition: background-color 0.2s;
        }

        .dropdown-item:hover {
            background-color: #f3f4f6;
        }

        /* Badge styles */
        .nav-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.125rem 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: #000;
            background-color: #fbbf24;
            border-radius: 9999px;
            margin-left: 0.5rem;
        }

        /* Button styles */
        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 0.375rem;
            transition: all 0.2s;
            cursor: pointer;
            text-decoration: none;
        }

        .button-ghost {
            color: #000;
            background: transparent;
            border: none;
        }

        .button-ghost:hover {
            background-color: #f3f4f6;
        }

        .button-primary {
            color: white;
            background-color: #000;
            border: none;
        }

        .button-primary:hover {
            background-color: #1a1a1a;
        }

        /* Mobile menu styles */
        .mobile-menu-button {
            display: block;
            padding: 0.5rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        @media (min-width: 1024px) {
            .mobile-menu-button {
                display: none;
            }
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            max-width: 300px;
            height: 100vh;
            background: white;
            padding: 2rem 1rem;
            transition: left 0.3s ease-in-out;
            z-index: 100;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 99;
        }

        .mobile-menu-overlay.active {
            display: block;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-nav-link {
            display: block;
            padding: 0.75rem 0;
            color: #000;
            text-decoration: none;
            font-size: 1rem;
            border-bottom: 1px solid #e5e7eb;
        }

/* HERO Section */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.header {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 3rem;
}
.title {
    font-size: 3rem;
    font-weight: bold;
    color: #1B352F;
    margin-bottom: 1rem;
}
.description {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 42rem;
    margin: 1.5rem auto;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.bbutton {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.bbutton-primary {
    background-color: #1B352F;
    color: white;
    border: none;
}
.bbutton-primary:hover {
    background-color: #152a25;
}
.bbutton-secondary {
    background-color: white;
    color: #1B352F;
    border: 1px solid #d1d5db;
}
.bbutton-secondary:hover {
    background-color: #1B352F;
    color: #ffffff;
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}
.card {
    border-radius: 1rem;
    overflow: hidden;
}
.card-yellow {
    background-color: #B5FC0C;
    padding: 2rem;
}
.card-green {
    background-color: #1B352F;
    color: white;
    padding: 2rem;
}
.card-image {
    position: relative;
    height: 300px;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}
.increase-rate {
    font-size: 3.75rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.increase-label {
    font-size: 1.5rem;
    font-weight: 600;
}
.graph {
    margin-top: 1rem;
    width: 100%;
    height: 6rem;
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.card-title {
    font-size: 1.5rem;
    font-weight: 600;
}
.view-all {
    color: white;
    text-decoration: underline;
}
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.stat-label {
    color: #9ca3af;
    font-size: 0.875rem;
}
.stat-value {
    color: #fbbf24;
    font-size: 1.25rem;
    font-weight: bold;
}
.team-members {
    display: flex;
}
.team-member {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid #1B352F;
    overflow: hidden;
    margin-right: -0.5rem;
}
.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e5fb24;
    margin-bottom: 100px;
}
.overlay-button {
    background-color: #fbbf24;
    color: black;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10rem;
    font-weight: 200;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 100px;
    width: 150px;
}
.overlay-button:hover {
    background-color: #f59e0b;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.25rem;
    }
    .cards {
        grid-template-columns: 1fr;
    }
}

/* Project Section */

.project-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.project-header {
    margin-bottom: 2rem;
}

.project-header h2 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.project-header p {
    color: #64748b;
}

.project-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-stat-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.project-stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.project-stat-item:nth-child(3) {
    animation-delay: 0.4s;
}

.project-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.project-stat-label {
    color: #64748b;
}

.plus {
    color: #2563eb;
}

.project-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.project-card {
    background-color: #f8fafc;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.4s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.project-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 1rem;
    color: #2563eb;
}

.project-card h3 {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.project-card p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .project-stats-grid, .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Our Services Section */

.services-section {
    padding: 64px 16px;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 64px;
    letter-spacing: -0.025em;
}

.underline-text {
    position: relative;
    display: inline-block;
}

.underline-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    background-color: #fff;
}

/* Card color variations */
.service-card:nth-child(1):hover {
    background-color: #f0f7ff;
    border-color: #3b82f6;
}

.service-card:nth-child(2):hover {
    background-color: #fff7ed;
    border-color: #f97316;
}

.service-card:nth-child(3):hover {
    background-color: #fdf4ff;
    border-color: #d946ef;
}

.service-card:nth-child(4):hover {
    background-color: #ecfdf5;
    border-color: #10b981;
}
.service-card:nth-child(5):hover {
    background-color: #ecfdf5;
    border-color: #10b981;
}
.service-card:nth-child(6):hover {
    background-color: #f0f7ff;
    border-color: #3b82f6;
}

.service-card:nth-child(7):hover {
    background-color: #fff7ed;
    border-color: #f97316;
}

.service-card:nth-child(8):hover {
    background-color: #fdf4ff;
    border-color: #d946ef;
}
.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-card:nth-child(1) .icon-circle {
    background-color: #3b82f6;
}

.service-card:nth-child(2) .icon-circle {
    background-color: #f97316;
}

.service-card:nth-child(3) .icon-circle {
    background-color: #d946ef;
}

.service-card:nth-child(4) .icon-circle {
    background-color: #10b981;
}
.service-card:nth-child(5) .icon-circle {
    background-color: #10b981;
}
.service-card:nth-child(6) .icon-circle {
    background-color: #3b82f6;
}

.service-card:nth-child(7) .icon-circle {
    background-color: #f97316;
}

.service-card:nth-child(8) .icon-circle {
    background-color: #d946ef;
}

.icon-circle svg {
    width: 20px;
    height: 20px;
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.service-description {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.learn-more:hover {
    text-decoration: underline;
    transform: translateX(4px);
}

.learn-more span {
    margin-left: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }


/* Business Grow Section */

.business-section {
    width: 100%;
    min-height: auto;
    background: linear-gradient(to bottom right, #ffffff, rgba(238, 235, 255, 0.5));
    padding: 1.5rem;
}

.business-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    align-items: center;
}

.business-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.business-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.business-subtitle {
    font-size: 1.125rem;
    color: #666;
}

.business-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.business-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-circle {
    height: 20px;
    width: 20px;
    background: #f3f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon {
    width: 12px;
    height: 12px;
    color: #7c3aed;
}

.feature-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.business-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.legend {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-gray { background: #d1d5db; }
.dot-purple { background: #7c3aed; }

.analytics {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.circle-progress {
    position: relative;
    width: 128px;
    height: 128px;
}

.progress-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.progress-change {
    color: #7c3aed;
    font-size: 0.875rem;
}

.metrics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.statistics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stats-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chart {
    height: 128px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    align-items: end;
}

.bar-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.bar-bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 999px;
    transition: height 1s ease;
}

.bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #7c3aed;
    border-radius: 999px;
    transition: height 1s ease;
}

.months {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    text-align: center;
    color: #666;
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .business-section { padding: 3rem; }
    .business-container { grid-template-columns: 1fr 1fr; }
    .business-title { font-size: 3.5rem; }
}

/* Our Core Value Section */

.value-section {
    padding: 4rem 1rem;
}

.value-container {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

.value-title {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.value-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .value-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.value-card:nth-child(1) {
    background-color: #444c7c;
    animation-delay: 0.1s;
}

.value-card:nth-child(2) {
    background-color: #f0aab5;
    animation-delay: 0.3s;
}

.value-card:nth-child(3) {
    background-color: #b5e9c3;
    animation-delay: 0.5s;
}

.value-card:nth-child(4) {
    background-color: #f1cae1;
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.number {
    color: #000000;
    margin-bottom: 3rem;
}

.icon-wrapper {
    position: absolute;
    right: 2rem;
    top: 2rem;
    background-color: white;
    padding: 0.5rem;
    border-radius: 9999px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.value-card-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.card-text {
    color: #fdfdfd;
    line-height: 1.5;
}

.lucide {
    width: 1.5rem;
    height: 1.5rem;
}

/* Contact Section */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-in {
    animation: slideIn 0.5s ease-out forwards;
}

.hover-pulse:hover {
    animation: pulse 0.6s ease-in-out;
}

.gradient-bg {
    background: linear-gradient(135deg, #A78BFA 0%, #93C5FD 100%);
}

.widget-container {
    max-width: 1000px;
    margin: 2rem auto;
    background: #F8FAFC;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.nnav-link {
    transition: all 0.3s ease;
}

.nnav-link:hover {
    color: #4F46E5;
    transform: translateY(-2px);
}

.contact-button {
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ccard {
    transition: all 0.3s ease;
}

.ccard:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
























































































         /* Footer Section */

         /* Scroll animation */
         @keyframes scroll-x {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .scroll-banner {
            background: #B5FC0C;
            color: white;
            padding: 0.9rem 0;
            overflow: hidden;
            width: 100%;
        }

        .scroll-content {
            display: flex;
            white-space: nowrap;
            animation: scroll-x 20s linear infinite;
            color: #000;
        }

        .scroll-item {
            margin: 0 1rem;
        }

        /* Footer styles */
        .footer-container {
            width: 100%;
            padding: 3rem 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .logo-section {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo img {
            width: 250px;
            height: 50px;
        }

        .logo-icon {
            width: 2rem;
            height: 2rem;
            background: linear-gradient(135deg, #a855f7, #ec4899);
            border-radius: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            color: #4b5563;
            transition: color 0.2s;
        }

        .social-link:hover {
            color: #111827;
        }

        .footer-column h3 {
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #4b5563;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #111827;
        }

        .badge-new {
            background: #764af1;
            padding: 0.125rem 0.5rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            margin-left: 0.5rem;
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #e5e7eb;
        }

        .bottom-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .bottom-content {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        .bottom-text h2 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .bottom-text p {
            color: #4b5563;
        }

        .copyright {
            color: #4b5563;
        }