:root {
    --primary-color: #0a192f; /* Deep Navy */
    --secondary-color: #f8f9fa; /* Light Grey */
    --accent-color: #64ffda; /* Muted Green/Teal for growth/money */
    --text-dark: #333;
    --text-light: #8892b0;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary-color);
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #0056b3;
}

.btn-nav {
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: var(--white) !important;
    border-radius: 5px;
}

.btn-nav:hover {
    background-color: #162a47;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
}

/* Hero */
.hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #4cdbc1;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: rgba(100, 255, 218, 0.1);
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--secondary-color);
}

.bg-navy {
    background-color: var(--primary-color);
}

.text-white {
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 5px; /* Adjust margin to bring credential ID closer */
    color: var(--primary-color);
}

.credential-id {
    font-size: 0.9rem; /* Smaller font size */
    color: var(--text-dark); /* Match existing text color */
    margin-bottom: 10px; /* Space below credential ID */
    display: block; /* Ensure it takes its own line */
}

.bg-navy .section-header h2 {
    color: var(--white);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Pricing */
.hero-small {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.popular-tag {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-header {
    padding: 30px;
    text-align: center;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.target {
    color: #666;
    font-size: 0.9rem;
}

.card-body {
    padding: 30px;
    text-align: center;
}

.card-body ul {
    margin-bottom: 30px;
    text-align: left;
}

.card-body li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.card-body li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.pricing-card.popular .btn-primary {
    width: 100%;
}

.addons {
    text-align: center;
    margin-top: 40px;
}

.addons-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.addon-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    min-width: 250px;
}

/* Footer */
footer {
    background-color: #020c1b;
    color: var(--text-light);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* QuickBooks Badge Styles */
.quickbooks-badge-container {
    text-align: center;
    margin-top: 15px;
}

.quickbooks-badge {
    width: 120px; /* Adjust the width to resize the badge */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Make it a block element to be centered by its parent's text-align */
    margin: 0 auto; /* Centers the block element */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background-color: var(--white);
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

/* About Section Profile Styling */
.about-profile-wrapper {
    display: flex;
    flex-direction: column; /* Stacks vertically on smaller screens */
    align-items: center; /* Centers items when stacked */
    gap: 20px; /* Space between image and text */
}

.profile-image img {
    border-radius: 50%; /* Makes the image circular */
    width: 180px; /* Set a fixed width for the circular image */
    height: 180px; /* Set a fixed height for the circular image */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Optional: subtle shadow for depth */
}

/* Desktop layout: image on left, text on right */
@media (min-width: 768px) {
    .about-profile-wrapper {
        flex-direction: row; /* Horizontal layout on larger screens */
        align-items: flex-start; /* Align items to the top */
        text-align: left;
    }

    .profile-image {
        flex-shrink: 0; /* Prevent image from shrinking */
    }

    .profile-text {
        flex-grow: 1; /* Allow text to take up remaining space */
    }
}

.contact-form-wrapper {
    text-align: center;
}
