/* Home Page Styles */

.verslolygis-home-wrapper {
    width: 100%;
}

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

/* -------------------------------------
 * Hero Section
 * ------------------------------------- */
.v-hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding-bottom: 0px; /* Reduced from 80px to close gap */
}

/* Top Overlapping Block */
.v-hero-top {
    position: relative;
    width: 100%;
    height: 450px; /* Adjust based on image height */
}

.v-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    /* Gradient fade to white at the bottom */
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}

.v-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3); /* Slight white overlay */
    z-index: 2;
}

.v-hero-red-box {
    position: absolute;
    bottom: -50px; /* Overlap effect */
    left: max(20px, calc((100% - 1200px) / 2)); /* Align with container */
    background: var(--v-color-primary, #b50e35);
    padding: 50px 70px;
    z-index: 10;
    border-radius: 8px; /* Premium soft edges */
    box-shadow: 0 24px 48px rgba(181, 14, 53, 0.25);
}

.v-hero-red-box h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* Bottom Two-Column Block */
.v-hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 80px; /* Reduced space to pull content closer */
    gap: 60px;
}

.v-hero-content-left {
    flex: 1;
    max-width: 50%;
}

.v-hero-content-left h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--v-color-primary, #b50e35);
    margin-bottom: 15px;
}

.v-hero-content-left .v-subtitle {
    font-size: 1.3rem;
    color: var(--v-color-text, #333);
    font-weight: 600;
}

/* Hero Description Text */
.v-hero-description {
    margin-top: 30px;
    padding: 25px 30px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--v-color-primary, #b50e35);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--v-color-text, #4a5568);
}

.v-hero-content-right {
    flex: 1;
    max-width: 40%;
}

/* -------------------------------------
 * CF7 Premium Styling
 * ------------------------------------- */
.v-hero-form-wrapper {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); /* Encased the form in a soft card */
    border: 1px solid rgba(0,0,0,0.02);
}

.v-cf7-form .v-form-group {
    margin-bottom: 20px;
}

.v-cf7-form input[type="text"],
.v-cf7-form input[type="email"],
.v-cf7-form input[type="tel"],
.v-cf7-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: #f5f7fa;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    transition: all var(--v-transition-speed) ease;
}

.v-cf7-form textarea {
    height: 100px;
    resize: vertical;
}

.v-cf7-form input:focus,
.v-cf7-form textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--v-color-primary, #b50e35);
    box-shadow: 0 0 0 3px rgba(181, 14, 53, 0.1);
}

.v-cf7-form input::placeholder,
.v-cf7-form textarea::placeholder {
    color: #94a3b8;
}

/* Submit Button */
.v-cf7-form input[type="submit"] {
    width: 100%;
    padding: 16px;
    background: var(--v-color-primary, #b50e35);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--v-transition-speed) ease;
}

.v-cf7-form input[type="submit"]:hover {
    background: #960c2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(181, 14, 53, 0.3);
}



/* -------------------------------------
 * Services Grid Section
 * ------------------------------------- */
.v-services-section {
    padding: 70px 0; /* Exactly 70px gap as requested */
    background: #fff;
    text-align: center;
}

.v-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--v-color-primary, #b50e35);
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.v-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.v-service-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 12px; /* Reverted to 12px for a sharper premium look */
    overflow: hidden;
    transition: all var(--v-transition-speed) ease;
    border: 1px solid #edf2f7; /* Very light, elegant border */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); /* Tailwind-style soft shadow */
}

.v-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* Deeper premium hover shadow */
    border-color: #e2e8f0;
}

.v-service-img {
    width: 100%;
    height: 220px; /* Slightly taller images */
    overflow: hidden;
}

.v-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.v-service-card:hover .v-service-img img {
    transform: scale(1.05); /* Softer Zoom effect on hover */
}

.v-service-content {
    padding: 25px 30px; /* Perfect breathing room */
    text-align: left; /* Reverted to left-align for editorial feel */
    background: #fff;
}

.v-service-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2d3748;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.v-service-content p {
    font-size: 1.05rem;
    color: #718096;
    margin: 0;
    font-weight: 400;
}

.v-services-action {
    text-align: center;
}

.v-btn-pill {
    display: inline-block;
    padding: 15px 40px;
    background: var(--v-color-primary, #b50e35);
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--v-transition-speed) ease;
}

.v-btn-pill:hover {
    background: #960c2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(181, 14, 53, 0.3);
}

/* -------------------------------------
 * Features List Section
 * ------------------------------------- */
.v-features-section {
    padding: 70px 0;
    background: #f8fafc; /* Very light grey as requested */
}

.v-features-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.v-features-left {
    flex: 1;
    max-width: 45%;
    position: sticky;
    top: 100px; /* Sticks to screen when scrolling */
}

.v-features-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--v-color-primary, #b50e35);
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.v-features-desc {
    margin-top: 30px;
    padding: 25px 30px;
    background: #fff; /* White background to contrast against the light grey section */
    border-radius: 8px;
    border-left: 4px solid var(--v-color-primary, #b50e35);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.v-features-desc p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
}

.v-text-red {
    color: var(--v-color-primary, #b50e35);
    font-weight: 600;
}

.v-features-right {
    flex: 1;
    max-width: 50%;
}

.v-features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.v-feature-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all var(--v-transition-speed) ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Premium micro-animation */
.v-feature-item:hover {
    transform: translateX(10px); /* Slide right */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(181, 14, 53, 0.1);
}

.v-feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(181, 14, 53, 0.05); /* Soft red circle background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--v-color-primary, #b50e35);
}

.v-feature-icon .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.v-feature-item:hover .v-feature-icon {
    background: var(--v-color-primary, #b50e35);
    color: #fff; /* Icon turns white on hover */
    transition: all var(--v-transition-speed) ease;
}

.v-feature-text {
    font-size: 1.05rem;
    color: #2d3748;
    font-weight: 500;
    line-height: 1.5;
}

/* -------------------------------------
 * Accounting Intro Section
 * ------------------------------------- */
.v-acc-intro-section {
    padding: 100px 0 60px 0;
    background: #fff;
    text-align: center;
}

.v-acc-intro-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.v-acc-intro-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--v-color-primary, #b50e35);
    margin-bottom: 35px;
    letter-spacing: -0.02em;
}

.v-acc-intro-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 auto;
    text-align: left;
    padding: 30px 40px;
    background: #f8fafc; /* Premium soft background */
    border-radius: 12px;
    border-left: 4px solid var(--v-color-primary, #b50e35); /* Consistent premium left border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* Subtle soft shadow */
    max-width: 850px;
}

/* -------------------------------------
 * Accounting Red Details Section
 * ------------------------------------- */
.v-acc-details-section {
    background: var(--v-color-primary, #b50e35);
    padding: 100px 0;
    color: #fff;
}

.v-acc-details-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.v-acc-col-left {
    flex: 1;
    max-width: 55%;
}

.v-acc-col-right {
    flex: 1;
    max-width: 40%;
}

.v-acc-details-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.v-acc-details-text p {
    font-size: 1.05rem; /* Crisper font size */
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 20px 0;
    font-weight: 400; /* Thinner text looks more premium on dark background */
}

.v-text-white-bold {
    color: #fff;
    font-weight: 700;
}

.v-acc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px; /* Tighter vertical gap */
    margin: 40px 0;
}

.v-acc-grid-item {
    text-align: left;
}

.v-acc-grid-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    color: #fff;
}

.v-acc-grid-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
}

.v-acc-grid-title {
    font-size: 1.15rem; /* Slightly smaller for elegance */
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.v-acc-grid-text {
    font-size: 0.95rem; /* Crisper description text */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
}

.v-btn-white {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: var(--v-color-primary, #b50e35);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--v-transition-speed) ease;
}

.v-btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.v-acc-text-top {
    margin-bottom: 40px;
}

.v-acc-image-wrapper {
    border-radius: 8px; /* Slightly sharper corners */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Much softer, elegant shadow */
}

.v-acc-img {
    width: 100%;
    display: block;
    height: auto;
    transition: transform 0.5s ease;
}

.v-acc-image-wrapper:hover .v-acc-img {
    transform: scale(1.05); /* Soft zoom on hover */
}

/* -------------------------------------
 * Pricing Features Section
 * ------------------------------------- */
.v-pricing-section {
    padding: 100px 0;
    background: #f8fafc;
}

.v-pricing-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.v-pricing-item-card {
    padding: 20px 25px;
    /* Reuses .v-feature-item base styling (white background, border, shadow, hover effect) */
}

.v-pricing-number {
    width: 45px;
    height: 45px;
    background: #f3c4c9; /* Soft red background */
    color: var(--v-color-primary, #b50e35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0; /* Prevent the circle from squishing into an oval on mobile */
    transition: all var(--v-transition-speed) ease;
}

.v-pricing-item-card:hover .v-pricing-number {
    background: var(--v-color-primary, #b50e35);
    color: #fff;
}

.v-pricing-text {
    font-size: 1.05rem;
    color: #4a5568;
    font-weight: 400;
}

.v-pricing-action {
    text-align: left;
}

/* -------------------------------------
 * Accountant Services Section
 * ------------------------------------- */
.v-accountant-section {
    background: #fff;
    padding-top: 100px;
}

.v-accountant-intro-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 80px;
}

.v-accountant-intro-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--v-color-primary, #b50e35);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.v-accountant-intro-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 auto;
    text-align: left;
    padding: 30px 40px;
    background: #f8fafc; /* Premium soft background */
    border-radius: 12px;
    border-left: 4px solid var(--v-color-primary, #b50e35);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    max-width: 850px;
}

.v-accountant-intro-desc p {
    margin: 0;
}

/* Split layout */
.v-accountant-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.v-accountant-split-left {
    flex: 1;
    min-width: 45%;
}

.v-accountant-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); /* Premium image shadow */
    transition: transform var(--v-transition-speed) ease;
}

.v-accountant-img:hover {
    transform: translateY(-5px);
}

.v-accountant-split-right {
    flex: 1;
    min-width: 45%;
    display: flex;
}

.v-accountant-content {
    max-width: 100%;
}

.v-accountant-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--v-color-primary, #b50e35);
    margin-bottom: 30px;
    line-height: 1.2;
}

.v-accountant-desc p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
    font-weight: 400;
}

.v-accountant-action {
    margin-top: 40px;
}

/* -------------------------------------
 * Challenges Section
 * ------------------------------------- */
.v-challenges-section {
    padding: 100px 0;
    background: #f8fafc;
}

.v-challenges-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.v-challenges-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--v-color-primary, #b50e35);
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.v-challenges-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6a7c92;
    font-weight: 400;
}

.v-challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.v-challenge-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--v-transition-speed) ease, box-shadow var(--v-transition-speed) ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

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

.v-challenge-icon {
    margin-bottom: 25px;
}

.v-challenge-icon img {
    height: 55px;
    width: 55px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.v-challenge-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 20px;
}

.v-challenge-card-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #6a7c92;
    margin-bottom: 30px;
    flex: 1; /* Pushes button to bottom */
}

.v-challenge-action {
    margin-top: auto;
}

.v-btn-challenge {
    display: inline-block;
    color: var(--v-color-primary, #b50e35);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color var(--v-transition-speed) ease;
}

/* -------------------------------------
 * Pro Accountant Section
 * ------------------------------------- */
.v-pro-section {
    padding: 100px 0;
    background: #ffffff;
}

.v-pro-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.v-pro-split-left {
    flex: 1;
    min-width: 45%;
}

.v-pro-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.v-pro-split-right {
    flex: 1;
    min-width: 45%;
}

.v-pro-content {
    max-width: 100%;
}

.v-pro-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--v-color-primary, #b50e35);
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.v-pro-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
}

.v-pro-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.v-pro-feature-item {
    display: flex;
    align-items: flex-start;
}

.v-pro-check {
    color: var(--v-color-primary, #b50e35);
    font-size: 1.1rem;
    font-weight: bold;
    margin-right: 12px;
    margin-top: 2px;
}

.v-pro-feat-text {
    font-size: 1rem;
    color: #2d3748;
    line-height: 1.5;
}

.v-pro-action {
    margin-top: 20px;
}

/* -------------------------------------
 * Testimonial Section
 * ------------------------------------- */
.v-testimonial-section {
    padding: 100px 0;
    background: #f8fafc;
}

.v-testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 40px;
    text-align: left;
}

.v-testimonial-quote-icon {
    font-size: 8rem;
    line-height: 1;
    color: var(--v-color-primary, #b50e35);
    font-family: serif;
    font-weight: 900;
    margin-bottom: -20px;
}

.v-testimonial-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.6;
    margin-bottom: 40px;
}

.v-testimonial-author-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.v-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.v-testimonial-author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5568;
}

/* Responsive */
@media (max-width: 992px) {
    .v-features-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .v-features-left,
    .v-features-right {
        max-width: 100%;
        width: 100%;
    }
    
    .v-features-left {
        position: static;
    }

    .v-features-desc {
        padding: 15px 15px 15px 18px; /* Reduced left/right padding to allow more words per line */
    }

    .v-features-desc p {
        font-size: 0.95rem; /* Shorter text size for mobile */
        line-height: 1.6;
    }
    .v-pro-split {
        flex-direction: column;
        gap: 30px;
    }

    .v-pro-split-left, .v-pro-split-right {
        min-width: 100%;
    }

    .v-pro-title {
        font-size: 2.2rem;
    }

    .v-pro-features-grid {
        grid-template-columns: 1fr;
    }

    .v-pro-section {
        padding: 60px 0;
    }

    .v-testimonial-section {
        padding: 60px 0;
    }

    .v-testimonial-wrapper {
        padding: 20px 15px;
    }

    .v-testimonial-text {
        font-size: 1.25rem;
    }

    .v-acc-details-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .v-acc-col-left,
    .v-acc-col-right {
        max-width: 100%;
        width: 100%;
    }

    .v-acc-col-left {
        order: 2; /* Put text below image on mobile if desired, or keep as 1 */
    }

    .v-acc-col-right {
        order: 1;
    }

    .v-hero-top {
        height: 350px;
    }
    .v-hero-red-box {
        left: 5%;
        padding: 30px 40px;
        bottom: -40px;
    }
    
    .v-hero-red-box h2 {
        font-size: 2rem;
    }
    
    .v-hero-bottom {
        flex-direction: column;
        margin-top: 80px;
        gap: 40px;
    }
    
    .v-hero-content-left {
        order: 2; /* Move text below form on mobile */
    }
    
    .v-hero-content-right {
        order: 1; /* Move form above text on mobile */
    }

    .v-hero-content-left,
    .v-hero-content-right {
        max-width: 100%;
        width: 100%;
    }
    
    .v-hero-description {
        margin-top: 30px;
        padding: 15px 15px 15px 18px; /* Reduced right padding for mobile */
        font-size: 0.95rem; /* Slightly smaller to fit more words per line */
        line-height: 1.6; /* Slightly tighter line height */
    }
    .v-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .v-hero-red-box h2 {
        font-size: 1.5rem;
    }
    .v-hero-red-box {
        padding: 20px 25px;
    }
    .v-hero-content-left h1 {
        font-size: 2.2rem;
    }

    .v-section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

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

    .v-features-title {
        font-size: 2.2rem;
    }

    .v-feature-item {
        padding: 15px 20px;
    }

    /* Mobile Button Fix */
    .v-btn-pill,
    .v-btn-white {
        width: 100%; /* Full width on mobile */
        box-sizing: border-box;
        padding: 15px 20px; /* Reduced side padding so it fits well */
        white-space: nowrap; /* Prevent text wrapping */
        font-size: 1rem;
        text-align: center;
    }

    .v-acc-intro-section {
        padding: 50px 0 30px 0; /* Huge reduction in mobile spacing */
    }

    .v-pricing-section {
        padding: 60px 0;
    }

    .v-acc-details-section {
        padding: 60px 0; /* Reduced from 100px */
    }

    .v-acc-intro-title {
        font-size: 2.2rem;
    }

    .v-acc-intro-desc {
        padding: 20px 25px; /* Tighter padding on mobile */
        font-size: 0.95rem;
    }

    .v-acc-details-title {
        font-size: 2.2rem;
    }

    .v-pricing-item-card {
        padding: 15px 20px;
    }

    .v-pricing-number {
        margin-right: 15px;
    }

    .v-acc-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .v-accountant-section {
        padding-top: 50px;
    }

    .v-accountant-intro-wrapper {
        margin-bottom: 40px;
        padding: 0;
    }

    .v-accountant-intro-title {
        font-size: 2.2rem;
    }

    .v-accountant-intro-desc {
        width: 100%;
        box-sizing: border-box;
        font-size: 0.95rem;
        padding: 15px 15px 15px 18px;
    }

    .v-accountant-split {
        flex-direction: column;
        gap: 40px;
    }

    .v-accountant-split-left {
        min-height: auto;
    }

    .v-accountant-split-right {
        padding: 0;
    }

    .v-accountant-title {
        font-size: 2.2rem;
    }

    .v-accountant-desc p {
        font-size: 0.95rem;
    }

    .v-challenges-section {
        padding: 60px 0;
    }

    .v-challenges-intro {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .v-challenges-title {
        font-size: 2.2rem;
    }

    .v-challenges-desc {
        font-size: 0.95rem;
    }

    .v-challenges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .v-challenge-card {
        padding: 30px 20px;
    }

    .v-challenge-card-title {
        font-size: 1.3rem;
    }
}
