/* Root Colors - Light and Dark Blue with White Text */
:root {
    --dark-blue: #1a3a52;
    --light-blue: #2c5aa0;
    --accent-blue: #0066cc;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #2c2c2c;
    --text-light: #e8e8e8;
    --border-color: #cccccc;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Navigation Bar */
.navbar {
    background-color: var(--dark-blue);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand h1 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-blue);
    border-bottom: 2px solid var(--accent-blue);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.hero-content .tagline {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 30px;
    color: #e8e8e8;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #e8e8e8;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-blue);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Quick Services Section */
.quick-services {
    background-color: var(--light-gray);
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--dark-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.service-card p {
    color: #666;
    font-size: 14px;
}

/* Service Section */
.service-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-section.alternate {
    background-color: var(--light-gray);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.section-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.section-text p {
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
}

.service-list {
    list-style-position: inside;
    margin-bottom: 20px;
}

.service-list li {
    margin-bottom: 12px;
    color: #666;
    padding-left: 10px;
}

.section-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tax Forms Section */
.tax-forms {
    background-color: var(--light-gray);
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.tax-forms h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--dark-blue);
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-card {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.form-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-card p {
    font-size: 14px;
    color: #e8e8e8;
}

/* About Section */
.about-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.about-text p {
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Expertise Section */
.expertise-section {
    background-color: var(--light-gray);
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--dark-blue);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.expertise-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.expertise-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.expertise-card p {
    color: #666;
    font-size: 14px;
}

/* Commitment Section */
.commitment-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--dark-blue);
    text-align: center;
}

.commitment-content {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.commitment-content .light-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e8e8e8;
}

.commitment-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--white);
}

.commitment-list {
    list-style-position: inside;
}

.commitment-list li {
    margin-bottom: 15px;
    color: #e8e8e8;
    line-height: 1.6;
}

/* Location Section */
.location-section {
    background-color: var(--light-gray);
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--dark-blue);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.location-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.location-text p {
    margin-bottom: 10px;
    color: #666;
}

.location-text a {
    color: var(--accent-blue);
    text-decoration: none;
}

.location-text a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark-blue);
}

.info-block h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.info-block p {
    color: #666;
    margin-bottom: 8px;
}

.info-block a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.info-block a:hover {
    text-decoration: underline;
}

.contact-image {
    margin-top: 30px;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark-blue);
}

.contact-form {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-blue);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.3);
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-gray);
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--dark-blue);
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.faq-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #e8e8e8;
}

.cta-section a {
    font-size: 18px;
}

/* Certifications Section */
.certifications {
    background-color: var(--light-gray);
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.certifications h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--dark-blue);
}

.certs-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.cert-logo {
    text-align: center;
}

.cert-logo img {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.cert-logo img:hover {
    transform: scale(1.1);
}

.cert-logo p {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: var(--text-light);
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 16px;
}

.footer-section p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #e8e8e8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #ccc;
    font-size: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        flex-direction: column;
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .section-content,
    .about-content,
    .location-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .expertise-grid,
    .faq-container {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .quick-services h2,
    .expertise-section h2,
    .tax-forms h2 {
        font-size: 28px;
    }

    .nav-brand h1 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .certs-container {
        gap: 30px;
    }

    .commitment-content {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 8px 10px;
        font-size: 12px;
    }
}
