/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.logo {
    display: flex;
    align-items: baseline;
}

.logo-link {
    display: flex;
    align-items: baseline;
    gap: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.logo-link:hover {
    background-color: rgba(217, 119, 6, 0.1);
    transform: translateY(-1px);
}

.logo-text {
    color: #d97706;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Brush Script MT', cursive;
    margin: 0;
}

.logo-subtitle {
    color: #d97706;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
}

.contact-info {
    color: #666;
    font-size: 14px;
}

.navigation {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d97706;
}

.dropdown-trigger {
    color: #333;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.dropdown:hover .dropdown-trigger {
    color: #d97706;
}

.nav-active {
    color: #d97706 !important;
    font-weight: 600 !important;
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 200px;
    padding: 10px 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    color: #666;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #d97706;
}

.contact-button {
    margin-left: 20px;
}

.btn-contact {
    background-color: #d97706;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-contact:hover {
    background-color: #b45309;
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background-image: url('images/accountant-workspace.jpg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
}

.hero-btn {
    display: inline-block;
    margin-top: 20px;
    background-color: #d97706;
    color: white;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #b45309;
    transform: translateY(-2px);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    background-color: #d97706;
    color: white;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.hero-btn:hover {
    background-color: #b45309;
    color: white;
}

/* Virtual Accounting Page */
.virtual-accounting-intro {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    color: #FF6B00;
    font-size: 2.5em;
    margin: 60px 0 40px;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #FF6B00;
    margin: 10px auto 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.content-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-text {
    padding: 20px;
}

.content-image {
    position: relative;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.feature-list li::before {
    content: '•';
    color: #FF6B00;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-text {
        padding-right: 0;
    }

    .content-image {
        min-height: 300px;
    }
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.section {
    margin-bottom: 60px;
    padding: 40px 0;
}

.section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.section h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 30px 0 20px 0;
}

.section p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.section ul {
    margin: 20px 0 20px 30px;
}

.section li {
    margin-bottom: 10px;
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #d97706;
}

.testimonial p {
    margin-bottom: 15px;
}

.testimonial strong {
    color: #d97706;
    font-weight: 600;
}

/* Founder Info */
.founder-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
}

.founder-info h3 {
    color: #d97706;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Additional Page Styles */
.section-intro {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Page Styles */
.testimonial.featured {
    background: #fff;
    border: 2px solid #d97706;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.1);
}

.testimonial-header h3 {
    color: #d97706;
    font-size: 20px;
    margin-bottom: 5px;
}

.client-title {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-rating {
    margin-top: 15px;
}

.stars {
    color: #d97706;
    font-size: 18px;
}

.success-stories {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.success-story {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #d97706;
}

.success-story h3 {
    color: #d97706;
    margin-bottom: 15px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.industry {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.industry h3 {
    color: #d97706;
    margin-bottom: 10px;
}

/* Pricing Page Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #d97706;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #d97706;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.price {
    margin-bottom: 20px;
}

.currency {
    font-size: 24px;
    color: #d97706;
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #d97706;
}

.period {
    font-size: 16px;
    color: #666;
}

.description {
    color: #666;
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    color: #444;
}

.pricing-btn {
    background: #d97706;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.pricing-btn:hover {
    background: #b45309;
    color: white;
}

.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.service-item h3 {
    color: #d97706;
    margin-bottom: 10px;
}

.service-price {
    font-size: 20px;
    font-weight: 600;
    color: #d97706;
    margin-bottom: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.benefit h3 {
    color: #d97706;
    margin-bottom: 15px;
}

.faq-section {
    margin-top: 40px;
}

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #d97706;
    margin-bottom: 15px;
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d97706;
}

.submit-btn {
    background: #d97706;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #b45309;
}

.contact-info-section {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.contact-method h3 {
    color: #d97706;
    margin-bottom: 10px;
}

.office-hours,
.response-time {
    margin-bottom: 30px;
}

.office-hours h3,
.response-time h3 {
    color: #d97706;
    margin-bottom: 15px;
}

.office-hours ul {
    list-style: none;
    padding: 0;
}

.office-hours li {
    padding: 5px 0;
    color: #666;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.why-item h3 {
    color: #d97706;
    margin-bottom: 15px;
}

/* Integrations Page Styles */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.integration-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.integration-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.integration-card h3 {
    color: #d97706;
    margin-bottom: 20px;
}

.integration-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.integration-card li {
    padding: 5px 0;
    color: #666;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.software-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.software-item h3 {
    color: #d97706;
    margin-bottom: 15px;
}

.features {
    margin-top: 15px;
}

.feature-tag {
    display: inline-block;
    background: #d97706;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #d97706;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step h3 {
    color: #d97706;
    margin-bottom: 15px;
}

.custom-integration-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.feature h3 {
    color: #d97706;
    margin-bottom: 15px;
}

/* Article Styles */
.article {
    background: #fff;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.3;
}

.article-content {
    font-size: 16px;
    line-height: 1.7;
}

.article-content p {
    margin-bottom: 20px;
    color: #444;
}

.article-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 40px 0 20px 0;
}

.article-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 35px 0 15px 0;
}

.article-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 25px 0 10px 0;
}

.article-content ol {
    margin: 20px 0 20px 20px;
}

.article-content ol li {
    margin-bottom: 10px;
    color: #444;
}

.article-content strong {
    font-weight: 600;
    color: #1a1a1a;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.article-navigation a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.article-navigation a:hover {
    text-decoration: underline;
}

/* Sidebar Styles */
.sidebar {
    background: #fff;
}

.sidebar h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2563eb;
}

.search-widget {
    margin-bottom: 40px;
}

.search-widget input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    margin-bottom: 10px;
}

.search-widget input:focus {
    outline: none;
    border-color: #d97706;
}

.search-btn {
    background-color: #d97706;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.search-btn:hover {
    background-color: #b45309;
}

.recent-posts,
.archives,
.categories {
    margin-bottom: 40px;
}

.recent-posts ul,
.archives ul,
.categories ul {
    list-style: none;
}

.recent-posts li,
.archives li,
.categories li {
    margin-bottom: 12px;
}

.recent-posts a,
.archives a,
.categories a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.recent-posts a:hover,
.archives a:hover,
.categories a:hover {
    color: #2563eb;
}

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    padding: 50px 0 20px 0;
    margin-top: 60px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #2563eb;
}

.footer-column li:not(:has(a)) {
    color: #666;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #666;
    font-size: 14px;
}

.footer-bottom-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.footer-bottom-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.footer-bottom-column ul {
    list-style: none;
}

.footer-bottom-column li {
    margin-bottom: 8px;
}

.footer-bottom-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-column a:hover {
    color: #2563eb;
}

.footer-bottom-column li:not(:has(a)) {
    color: #666;
    font-size: 14px;
}

.newsletter {
    text-align: center;
    margin-bottom: 20px;
}

.newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.copyright p {
    color: #666;
    font-size: 14px;
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 10px;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    position: relative;
    transition: background-color 0.3s;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #333;
    transition: transform 0.3s;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

.mobile-menu-button.active .menu-icon {
    background-color: transparent;
}

.mobile-menu-button.active .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-button.active .menu-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .mobile-menu-button {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
    }

    .header {
        position: relative;
        background: white;
    }

    .header-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        position: relative;
    }

    .logo {
        margin-right: auto;
    }

    .contact-info {
        display: none;
    }

    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .navigation.active {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        background: white;
        padding: 10px 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: left;
        padding: 15px 20px;
        border-bottom: 1px solid #e5e5e5;
        transition: background-color 0.3s ease;
    }

    .nav-menu li:hover {
        background-color: #f8f9fa;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 10px 20px;
        margin-top: 10px;
        display: none;
        background: #f8f9fa;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .contact-button {
        margin: 15px 20px;
        text-align: center;
    }

    .btn-contact {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .article h1 {
        font-size: 28px;
    }
    
    .article-content h2 {
        font-size: 24px;
    }
    
    .article-content h3 {
        font-size: 20px;
    }
    
    .article-content h4 {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section h2 {
        font-size: 28px;
    }

    .testimonials-grid,
    .industries-grid,
    .pricing-grid,
    .benefits-grid,
    .why-choose-grid,
    .integrations-grid,
    .software-grid,
    .process-steps,
    .custom-integration-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section h2 {
        font-size: 24px;
    }
    
    .article h1 {
        font-size: 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }

    .testimonial,
    .industry,
    .pricing-card,
    .service-item,
    .benefit,
    .why-item,
    .integration-card,
    .software-item,
    .step,
    .feature {
        padding: 20px;
    }
}


/* --- Header Styles --- */
.header-section {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    text-align: center;
}

/* Add margin top for the second header section to separate it */
.secondary-header {
    margin-top: 60px;
}

.main-heading {
    font-size: 2.5em;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.sub-heading {
    font-size: 1.5em;
    color: #555;
    margin-top: 0;
    text-align: left;
    width: 100%;
    border-bottom: 2px solid #ff7f41;
    padding-bottom: 10px;
}

/* --- Card Container Styles --- */
.service-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; 
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Individual Card Styling --- */
.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1 1 450px; /* Default for two-column layout */
    min-height: 300px;
    position: relative;
    border-left: 5px solid #ff7f41;
}

/* Style for the three-column container (Indian counterparts) */
.service-cards-container.three-column .service-card {
    /* Adjust flex-basis to fit three cards comfortably (about 30% each) */
    flex: 1 1 300px; 
}

/* --- Content Styling (List items, etc.) --- */
.card-title {
    color: #333;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 15px;
    line-height: 1.5;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: "•";
    color: #ff7f41;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.sub-list {
    list-style: none;
    padding-left: 10px;
    margin-top: 5px;
}

.sub-list li {
    margin-bottom: 5px;
    font-size: 0.9em;
}

.sub-list li::before {
    content: "—";
    color: #777;
    margin-right: 5px;
}

/* --- Media Query for Mobile (Responsiveness) --- */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .header-section {
        padding: 0 10px;
    }

    .sub-heading {
        text-align: left;
    }

    .service-cards-container {
        gap: 20px;
    }

    /* All cards switch to full width on mobile for better stacking */
    .service-card {
        width: 100%; 
        flex-basis: auto;
    }
}



.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.section-divider {
    max-width: 1000px;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    margin: 80px auto;
}

/* --- ACCENT COLORS (For Dashboard Titles) --- */
.pnl-color { color: #8e44ad; border-left-color: #8e44ad !important; } /* Purple for P&L */
.balance-sheet-color { color: #007bff; border-left-color: #007bff !important; } /* Corporate Blue */
.cash-flow-color { color: #ffbf00; border-left-color: #ffbf00 !important; } /* Gold/Amber */
.sales-color { color: #dc3545; border-left-color: #dc3545 !important; } /* Red/Crimson */
.ads-color { color: #6f42c1; border-left-color: #6f42c1 !important; } /* Deep Purple */


/* ===================================================
   1. HERO SECTION & CTA
   =================================================== */
.hero-section {
    background-color: #2c3e50; /* Deep primary color */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.3em;
    opacity: 0.9;
}

.cta-container {
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ff7f41; /* Orange accent color */
    color: #ffffff;
    font-size: 1.25em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px; 
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 127, 65, 0.4);
}

.cta-button:hover {
    background-color: #ff9966; 
    transform: translateY(-2px); 
}


/* ===================================================
   2. FEATURE SECTIONS (Dashboard Blocks)
   =================================================== */
.feature-block {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    border-radius: 12px;
    overflow: hidden;
}

.light-section { background-color: #ffffff; }
.dark-section { background-color: #f0f0f0; }

.feature-text-container {
    flex: 1;
    padding: 40px;
}

.feature-image-container {
    flex: 1.5; 
    padding: 20px;
    text-align: center;
}

.feature-title {
    font-size: 2.2em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 30px;
}

.feature-point {
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid #ccc; 
}

.point-title {
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.point-description {
    font-size: 1em;
    line-height: 1.5;
    color: #555;
}

.dashboard-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.reverse-order {
    flex-direction: row-reverse;
}


/* ===================================================
   3. TESTIMONIAL STYLES
   =================================================== */
.testimonial-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

.section-heading {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 30px;
}

.testimonial-cards-wrapper {
    display: flex;
    overflow-x: auto; 
    gap: 30px;
    padding: 20px 40px;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

.testimonial-cards-wrapper::-webkit-scrollbar {
    display: none; 
}

.testimonial-card {
    flex: 0 0 350px; 
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    border-top: 5px solid #ff7f41; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px); 
}

.quote {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 110px; /* Increased min-height for longer quotes */
}

.author {
    font-weight: bold;
    color: #333;
    margin: 0;
}

.company {
    font-size: 0.9em;
    color: #777;
}


/* ===================================================
   RESPONSIVENESS
   =================================================== */
@media (max-width: 900px) {
    .feature-block {
        flex-direction: column; 
        padding: 0 20px;
        margin: 40px auto;
    }

    .reverse-order {
        flex-direction: column; 
    }

    .feature-image-container,
    .feature-text-container {
        flex: 1;
        padding: 20px 0;
    }

    .hero-section h1 {
        font-size: 2.5em;
    }
    
    .feature-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    
    .testimonial-cards-wrapper {
        padding: 20px 10px;
    }
}