:root {
    --primary-blue: #222f6e;
    --secondary-blue: #2563eb;
    --accent-yellow: #eac000;
    --light-gray: #f3f4f6;
}
.primary-color {
    color: var(--primary-blue);
}
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-blue) !important;
    font-size: 1.5rem;
}

.logo {
    height: 60px;
}

.nav-link {
    color: #333 !important;
    margin: 0 0.5rem;
    font-weight: 500;
}

.btn-login {
    width: 100;
    height: 50;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 4px;
    border-left-width: 2px;
    padding-top: 8px;
    padding-right: 20px;
    padding-bottom: 8px;
    padding-left: 20px;
    gap: 8px;
    opacity: 1;
    border-radius: 10px;
    border-width: 2px, 2px, 4px, 2px;
    border-style: solid;
    border-color: var(--primary-blue) !important;
    margin-right: 10px;
}

.btn-signup {
    width: 139;
    height: 50;
    border-bottom-width: 4px;
    padding-top: 8px;
    padding-right: 20px;
    padding-bottom: 8px;
    padding-left: 20px;
    gap: 8px;
    color: #ffffff;
    opacity: 1;
    border-radius: 10px;
    background: var(--primary-blue) !important;
    border-bottom: 4px solid #eac000;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: white;
    padding: 4rem 0 1rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.footer-brand-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer-newsletter-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-email-input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-email-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: rgba(255, 255, 255, 0.15);
}

.footer-subscribe-btn {
    background: var(--accent-yellow);
    color: #000;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
}

.footer-subscribe-btn:hover {
    background: #f59e0b;
}

.footer-terms-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-terms-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.footer-heading {
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social-links {
    list-style: none;
    padding: 0;
}

.footer-social-links li {
    margin-bottom: 0.8rem;
}

.footer-social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social-links a:hover {
    color: white;
}

.footer-social-links i {
    width: 20px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

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