/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #333333;
    --text-color: #2C2C2C;
    --text-light: #666666;
    --background-color: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E5E5E5;
    --border-color: #DDDDDD;
    --success-color: #28A745;
    --error-color: #DC3545;
    --warning-color: #FFC107;
    --info-color: #17A2B8;
    --purple-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    padding-top: 80px; /* Account for fixed header */
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

.bounce-in {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Header and Navigation */
.header {
    background-color: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(550, 550, 550, 0.1);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);

    border-bottom: 1px solid rgba(250, 250, 250, 0.3);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);  
    }


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--secondary-color);
    text-decoration: none;
}

.brand-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-text {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: 0.3s;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #E5522F 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #E5522F 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.add-transaction-btn, .apply-button, .print-report-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.add-transaction-btn:hover, .apply-button:hover, .print-report-btn:hover {
    background-color: #E5522F;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    background: url('/attached_assets/68542c_5c98e7eae50d412e83f0ce89e9124851~mv2_1755482030068.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
    letter-spacing: -0.01em;
}

.hero-cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.hero-cta-button:hover {
    background-color: #E5522F;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(255, 107, 53, 0.4);
}

/* Welcome Section */
.welcome {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.welcome-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.welcome-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.welcome-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

. welcome-box {
    background-color: #f2f2f2; /* light gray */
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.welcome-box .hero-cta-button {
    margin-top: 20px;
    display: inline-block;
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #FFA726);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-action {
    margin-top: 1.5rem;
}

.apply-button {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Schedule Section */
.schedule {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.schedule-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.schedule-description {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.6;
}

.schedule-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-option {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.schedule-option:hover {
    border-color: var(--primary-color);
}

.schedule-option h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.schedule-option p {
    color: var(--text-light);
    margin: 0;
}

/* Press Coverage */
.press-coverage {
    padding: 4rem 0;
    background-color: var(--light-gray);
    text-align: center;
}

.press-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.press-author {
    color: var(--secondary-color);
    font-weight: 500;
}

/* About Page Styles */
.about-hero, .contact-hero, .steps-hero, .dashboard-hero {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.page-title {
    font-size: 3rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

/* Core Values */
.core-values {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Expertise Section */
.expertise {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.expertise-image {
    display: flex;
    justify-content: center;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-item {
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.expertise-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.expertise-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail h3 {
    color: var(--secondary-color);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #E5522F;
}

.contact-text {
    color: var(--text-light);
    margin: 0;
}

.contact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Steps Page */
.steps-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.steps-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.steps-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.steps-action {
    margin-bottom: 2rem;
}

.book-cover-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.book-cover-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-cover-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.book-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.book-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-btn.primary {
    background-color: var(--warning-color);
    color: var(--secondary-color);
}

.book-btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.book-btn:hover {
    transform: translateY(-2px);
}

/* Guide Steps */
.guide-steps {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-title {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.guide-cta {
    padding: 4rem 0;
    background-color: var(--light-gray);
    text-align: center;
}

.cta-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Dashboard Styles */
.dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.dashboard-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.dashboard-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.dashboard-visual-info {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dashboard-tracker {
    display: flex;
    justify-content: center;
}

.tracker-container {
    background: var(--purple-gradient);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.tracker-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tracker-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.tracker-header p {
    opacity: 0.9;
    color: white;
}

.tracker-form {
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-input,
.form-select {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
}

.form-input::placeholder {
    color: var(--text-light);
}

.add-transaction-btn {
    width: 100%;
    margin-top: 1rem;
}

.transactions-section {
    margin-bottom: 2rem;
}

.transactions-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.transactions-list {
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-description {
    color: white;
    font-weight: 500;
}

.transaction-amount {
    font-weight: 600;
}

.transaction-amount.income {
    color: #4CAF50;
}

.transaction-amount.expense {
    color: #F44336;
}

.transaction-delete {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
}

.transaction-delete:hover {
    color: #F44336;
}

.report-summary {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

.report-summary h3 {
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.summary-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: white;
    font-weight: 500;
}

.summary-item.balance {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 12px;
    font-weight: 600;
}

.print-report-btn {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.print-report-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        height: 300px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta-button {
        padding: 10px 30px;
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .schedule-content,
    .about-content,
    .contact-layout,
    .steps-layout,
    .dashboard-layout,
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        text-align: center;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero {
        height: 250px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 2rem;
        border-radius: 12px;
    }

    .welcome-text {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .service-card,
    .step-card,
    .value-card {
        padding: 1.5rem;
    }

    .tracker-container {
        padding: 1.5rem;
    }

    .book-cover {
        width: 250px;
        height: 320px;
    }

    .book-front {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav,
    .footer,
    .cta-button,
    .add-transaction-btn,
    .apply-button,
    .print-report-btn {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .tracker-container {
        background: white !important;
        color: black !important;
        box-shadow: none;
        border: 1px solid #000;
    }

    .tracker-header h2,
    .transactions-section h3,
    .report-summary h3 {
        color: black !important;
    }

    .summary-item {
        color: black !important;
    }
}
/* --- Added code for mobile responsiveness below --- */

/* Media query for screens up to 768px wide */
@media (max-width: 768px) {
    /* Adjust container padding for smaller screens */
    .container {
        padding: 0 1rem;
    }

    /* Simplify the main layouts by stacking elements vertically */
    .about-content,
    .expertise-content {
        display: flex; /* Use flexbox for easier control */
        flex-direction: column; /* Stack items vertically */
        gap: 2rem; /* Reduce gap for smaller screens */
        align-items: center; /* Center items for a cleaner look */
    }

    .about-text,
    .about-image,
    .expertise-image,
    .expertise-list {
        width: 100%; /* Ensure elements take full width */
        max-width: 100%; /* Ensure elements don't overflow */
    }

    /* Make images and SVGs responsive */
    .about-image img,
    .expertise-image img,
    .expertise-image svg {
        width: 100%; /* Image fills its container */
        height: auto; /* Maintain aspect ratio */
    }

    /* Adjust grid layouts to a single column */
    .values-grid {
        grid-template-columns: 1fr; /* Single column layout for core values */
    }
}
/* --- Added code for mobile responsiveness below --- */

@media (max-width: 768px) {
    /* Adjust container padding for smaller screens */
    .container {
        padding: 0 1rem;
    }

    /* Stack contact info and visual vertically */
    .contact-layout {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info,
    .contact-visual {
        width: 100%;
        max-width: 100%;
    }

    /* Make images and SVGs responsive */
    .contact-visual img,
    .contact-visual svg {
        width: 100%;
        height: auto;
    }

    /* Adjust the rest of the page content */
    .about-content,
    .expertise-content,
    .steps-layout,
    .dashboard-layout {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .about-text,
    .about-image,
    .expertise-image,
    .expertise-list {
        width: 100%;
        max-width: 100%;
    }

    .about-image img,
    .expertise-image img,
    .expertise-image svg {
        width: 100%;
        height: auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}
