/* === Body & Font === */
body {
    font-family: 'Roboto', sans-serif;
    color: #000;
    background-color: #fff;
    line-height: 1.6;
}

/* === Links === */
a {
    text-decoration: none;
    color: #000;
}
a:hover {
    color: #0d6efd;
}

/* === Hero Section === */
.hero-section {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 120px 0 80px;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
}
.hero-section p {
    font-size: 1.25rem;
}
.hero-section .btn-dark {
    background-color: #fff;
    color: #000;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
}
.hero-section .btn-dark:hover {
    background-color: #333;
    color: #fff;
}

/* === Sections === */
section {
    padding: 80px 0;
}
section.bg-light {
    background-color: #f8f9fa;
}

/* === Cards === */
.card, .service-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.card:hover, .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}
.card-title {
    font-weight: 700;
    color: #000;
}

/* === Section Titles === */
.section-title {
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.tax-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.tax-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.tax-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #e9ecef;
    color: #000;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.tax-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-top: 20px;
}

.tax-features {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.tax-features li {
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.tax-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #198754;
    font-size: 12px;
}

.tax-footer {
    margin-top: auto;
    font-size: 14px;
    color: #6c757d;
}


/* === CTA Section === */
.cta-section {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}
.cta-section .btn-light {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
}
.cta-section .btn-light:hover {
    background-color: #333;
    color: #fff;
}

/* === Navbar === */
.navbar-light .navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
    transition: 0.3s;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #0d6efd;
}
.navbar-light .btn-dark {
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    transition: 0.3s;
}
.navbar-light .btn-dark:hover {
    background-color: #333;
    color: #fff;
}

/* === Footer === */
footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer a:hover {
    color: #0d6efd;
}
