.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.2rem;
    padding: 0;
    margin: 0;
}
.nav-links li {
    display: flex;
    align-items: center;
}

.navbar, .hero {
    margin-bottom: 0;
    padding-top: 0;
    border: none;
}
img {
    display: block;
    margin: 0 auto;
    border: none;
}
.nav-brand .brand-link {
    display: flex;
    align-items: center;
    gap: 12px; /* space between logo and text */
    text-decoration: none;
}


/* Light Mode Styles */
body {
    background-color: #ffffff;
    color: #333333;
}

header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.theme-toggle .fa-sun {
    display: none;
}

.theme-toggle .fa-moon {
    display: inline-block;
}

.features, .workflow {
    background-color: #f9f9f9;
}

.feature-card {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-card {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.compare-features {
    background-color: #f9f9f9;
}

.features-table th {
    background-color: #4d88ff;
}

.features-table tr:nth-child(even) {
    background-color: #f5f5f5;
}

.features-table td {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    background-color: white;
}

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

.faq-item {
    border: 1px solid #e0e0e0;
}

.enterprise-cta {
    background-color: #f0f4ff;
}

.payment-info {
    background-color: white;
}

.payment-methods i {
    color: #555;
}

footer {
    background-color: #2d2d2d;
    color: white;
}

footer .footer-bottom {
    border-top: 1px solid #444;
}
