* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Using default header styles from styles.css */
/* All header and navigation styles are inherited from styles.css for consistency */

/* Hero Banner Section */
.tax-hero-banner {
    position: relative;
    height: 400px;
    background: 
        linear-gradient(rgba(45, 55, 72, 0.75), rgba(45, 55, 72, 0.75)),
        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tax-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.tax-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.tax-hero-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin: 0;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero Banner */
@media (max-width: 968px) {
    .tax-hero-banner {
        height: 350px;
        background-attachment: scroll;
    }

    .tax-hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .tax-hero-banner {
        height: 300px;
    }

    .tax-hero-title {
        font-size: 48px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .tax-hero-banner {
        height: 250px;
    }

    .tax-hero-title {
        font-size: 36px;
        letter-spacing: 1px;
    }
}

/* Custom styles for tax preparation page content only (not header/footer) */

/* Old Hero Section - Keeping for reference */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: white;
    color: var(--text-dark);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.card-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Services Section */
.services-section {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 3px solid var(--primary-color);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
}

/* Process Section */
.process-section {
    background: var(--bg-light);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.step-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.price-description {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

.btn-plan {
    width: 100%;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .services-grid,
    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}


/* Introduction Section */
.tax-intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.tax-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.tax-intro-text {
    display: flex;
    flex-direction: column;
}

.tax-description {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 20px;
}

.tax-btn-book {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    width: fit-content;
    margin-top: 12px;
}

.tax-btn-book:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.tax-btn-book i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.tax-btn-book:hover i {
    transform: translateX(4px);
}

.tax-intro-images {
    position: relative;
}

.tax-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tax-image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: transform 0.3s ease;
}

.tax-image-grid img:hover {
    transform: translateY(-5px);
}

@media (max-width: 968px) {
    .tax-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tax-description {
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .tax-intro-section {
        padding: 60px 0;
    }

    .tax-description {
        font-size: 14px;
    }

    .tax-image-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section - Income Tax Preparation */
.tax-services-section {
    padding: 80px 0;
    background: 
        linear-gradient(rgba(61, 90, 107, 0.95), rgba(61, 90, 107, 0.95)),
        url('https://images.unsplash.com/photo-1554224154-26032ffc0d07?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.income-tax-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.income-tax-text {
    color: white;
}

.income-tax-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.3;
}

.income-tax-text .highlight-filing {
    color: #0ea5e9;
    font-weight: 800;
}

.income-tax-intro {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.income-tax-detail {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.income-tax-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.income-tax-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.income-tax-image img[src=""],
.income-tax-image img:not([src]) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.income-tax-image img::before {
    content: '';
    display: block;
    padding-top: 75%;
}

@media (max-width: 968px) {
    .income-tax-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .income-tax-text h2 {
        font-size: 28px;
    }

    .income-tax-intro,
    .income-tax-detail {
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .tax-services-section {
        padding: 60px 0;
    }

    .income-tax-text h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .income-tax-intro,
    .income-tax-detail {
        font-size: 14px;
    }
}

.tax-section-title-center {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 20px;
}

.tax-section-description {
    font-size: 18px;
    color: #64748b;
    text-align: center;
    margin-bottom: 50px;
}

.tax-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.service-card.featured {
    border: 2px solid #06b6d4;
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: #475569;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Benefits Section - Types of Income Taxes */
.benefits-section {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(61, 90, 107, 0.95) 0%, rgba(44, 69, 87, 0.95) 100%),
        url('https://images.unsplash.com/photo-1554224311-beee460c201f?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.types-income-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.types-income-card {
    color: white;
}

.types-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight-income {
    color: #0ea5e9;
    font-weight: 800;
}

.types-intro {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.types-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.types-list li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.types-list li .list-icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
}

.types-list li strong {
    color: #0ea5e9;
    font-weight: 700;
}

.types-footer {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.btn-book-types {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-book-types:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-book-types i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-book-types:hover i {
    transform: translateX(4px);
}

.types-income-images {
    position: relative;
}

.types-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.types-image-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.types-img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.types-img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.types-img-3 {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    height: 250px;
}

@media (max-width: 968px) {
    .types-income-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .types-title {
        font-size: 28px;
    }

    .types-intro,
    .types-footer {
        font-size: 15px;
    }

    .types-list li {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .benefits-section {
        padding: 60px 0;
    }

    .types-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .types-intro,
    .types-footer {
        font-size: 14px;
    }

    .types-list li {
        font-size: 13px;
        padding-left: 28px;
    }

    .types-image-grid {
        grid-template-columns: 1fr;
    }

    .types-img-3 {
        grid-column: 1 / 2;
        height: auto;
    }
}

/* Process Section - What To Expect From Us */
.process-section {
    padding: 80px 0;
    background: #ffffff;
}

.expect-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.expect-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.expect-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
    transform: translateY(-4px);
}

.expect-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expect-icon i {
    font-size: 32px;
    color: #ffffff;
}

.expect-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.expect-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
}

.expect-footer-text {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .expect-main-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 640px) {
    .process-section {
        padding: 60px 0;
    }

    .expect-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .expect-main-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .expect-card {
        padding: 24px 20px;
    }

    .expect-icon {
        width: 60px;
        height: 60px;
    }

    .expect-icon i {
        font-size: 28px;
    }

    .expect-card h3 {
        font-size: 16px;
    }

    .expect-card p {
        font-size: 13px;
    }

    .expect-footer-text {
        font-size: 14px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e0f2fe;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    font-weight: 700;
    color: #06b6d4;
}

.faq-answer {
    padding: 0 30px 25px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

.cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .tax-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tax-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .tax-services-grid,
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .tax-section-title,
    .tax-section-title-center {
        font-size: 34px;
    }

    .tax-stats-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tax-services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .tax-section-title,
    .tax-section-title-center {
        font-size: 28px;
    }

    .tax-description {
        font-size: 15px;
    }

    .service-card,
    .benefit-card,
    .step-card {
        padding: 25px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .btn-large {
        padding: 15px 40px;
        font-size: 16px;
    }
}


/* Tax Preparation Process Section */
.tax-process-section {
    padding: 80px 0;
    background: #ffffff;
}

.tax-process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.tax-process-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tax-process-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.tax-process-card {
    background: #1e3a52;
    border-radius: 16px;
    padding: 40px;
    color: white;
}

.process-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.process-intro {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.process-steps {
    margin-bottom: 24px;
}

.process-step {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    font-size: 18px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.process-footer {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 24px;
    margin-bottom: 24px;
}

.btn-book-process {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-book-process:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-book-process i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.btn-book-process:hover i {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .tax-process-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-title {
        font-size: 28px;
    }

    .tax-process-card {
        padding: 32px 24px;
    }
}

@media (max-width: 640px) {
    .tax-process-section {
        padding: 60px 0;
    }

    .process-title {
        font-size: 24px;
    }

    .tax-process-card {
        padding: 28px 20px;
    }

    .process-intro,
    .process-footer {
        font-size: 14px;
    }

    .step-content h3 {
        font-size: 15px;
    }

    .step-content p {
        font-size: 13px;
    }
}
