﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    padding-bottom: 60px; /* footer height */
}

.navbar {
    padding: 8px 16px;
}
.logo {
    font-family: 'Pacifico', cursive;
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
}

    .nav-links a {
        color: #d1d5e0;
        text-decoration: none;
        font-size: .875rem;
        font-weight: 500;
        padding: 6px 12px;
        border-radius: 6px;
        transition: background .2s, color .2s;
    }

        .nav-links a:hover {
            background: rgba(255,255,255,.12);
            color: #fff;
        }




.footer-fixed {
    position: fixed;
    height:60px;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2D3142; /* dark */
    color: white;
    padding: 10px;
    z-index: 1000;
}


.faq-section {
    margin-top: 50px;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #1e293b;
}

.faq-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border-left: 5px solid #2563eb;
}

    .faq-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .faq-card h3 {
        font-size: 22px;
        margin-bottom: 12px;
        color: #0f172a;
    }

    .faq-card p {
        color: #475569;
        line-height: 1.7;
        font-size: 16px;
    }

@@media(max-width:768px) {

    .faq-title {
        font-size: 26px;
    }

    .faq-card h3 {
        font-size: 18px;
    }
}
