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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #FFFFFF;
    background-color: #1a1a1a;
}

/* Navigation Bar */
.navbar {
    background-color: #0d0d0d;
    width: 100%;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.3s ease;
}

.mobile-menu-toggle:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: 600px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.6);
    z-index: 1;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 3;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.125rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #9B30FF;
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #8A2EE6;
    transform: translateY(-2px);
}

/* Contact Hero Section */
.contact-hero-content {
    max-width: 900px;
}

.contact-phone-numbers {
    margin: 1.5rem 0 2rem;
}

.contact-phone {
    font-size: 1.125rem;
    color: #FFFFFF;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.refund-status-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.refund-status-text {
    font-size: 1.125rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Privacy Policy Section */
.privacy-policy-section {
    background-color: #FFFFFF;
    padding: 5rem 2rem;
    width: 100%;
    min-height: calc(100vh - 400px);
}

.privacy-policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-policy-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-intro {
    font-size: 1.125rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.privacy-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-policy-container p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.privacy-list {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-list li {
    font-size: 1rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.privacy-contact-info {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.privacy-contact-info p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
}

.privacy-contact-info strong {
    font-weight: 700;
}

/* Maps Section */
.maps-section {
    background-color: #FFFFFF;
    padding: 5rem 2rem;
    width: 100%;
}

.maps-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.location-map-row {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.map-location-info {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
}

.map-location-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.map-location-phone {
    font-size: 1.125rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.map-location-phone a {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.map-location-phone a:hover {
    opacity: 0.7;
}

.map-location-address {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

.map-iframe-wrapper {
    flex: 1;
}

.maps-iframe-container {
    width: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.maps-iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

/* Taxes Made Easy Section */
.taxes-easy-section {
    background-color: #FFFFFF;
    padding: 4rem 2rem;
    width: 100%;
}

.taxes-easy-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.taxes-easy-text {
    flex: 1;
    padding: 2rem 0;
}

.taxes-easy-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.taxes-easy-paragraph {
    font-size: 1.125rem;
    color: #000000;
    line-height: 1.6;
}

.taxes-easy-image {
    flex: 1;
}

.taxes-easy-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* What to Expect Section */
.what-to-expect-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.what-to-expect-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/what-to-expect-background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(0.5);
    z-index: 1;
}

.what-to-expect-overlay {
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.what-to-expect-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;
}

.what-to-expect-cards {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
}

.expect-card {
    background-color: rgba(40, 40, 40, 0.95);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    width: 85%;
}

.fastest-filing-card {
    margin-left: auto;
    margin-top: 0;
}

.maximum-refund-card {
    margin-right: auto;
    margin-top: 2rem;
}

.expect-card-image {
    flex: 0 0 300px;
}

.expect-card-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.expect-card-content {
    flex: 1;
}

.expect-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.expect-card-text {
    font-size: 1.125rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.expect-card-button {
    display: inline-block;
    background-color: #9B30FF;
    color: #FFFFFF;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.expect-card-button:hover {
    background-color: #8A2EE6;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #0d0d0d;
    padding: 5rem 2rem;
    width: 100%;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.testimonials-subheading {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
}

.testimonials-cards {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.testimonial-card {
    background-color: #141414;
    border-radius: 12px;
    padding: 2rem;
    flex: 1;
    max-width: 350px;
    text-align: left;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.testimonials-cta-button {
    display: inline-block;
    background-color: #9B30FF;
    color: #FFFFFF;
    padding: 1.25rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 48, 255, 0.4);
}

.testimonials-cta-button:hover {
    background-color: #8A2EE6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 48, 255, 0.6);
}

/* FAQs Section */
.faqs-section {
    background-color: #141414;
    padding: 5rem 2rem;
    width: 100%;
}

.faqs-container {
    max-width: 900px;
    margin: 0 auto;
}

.faqs-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.faqs-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    display: flex;
    flex-direction: column;
}

.faq-question {
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    border-radius: 8px;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    width: 100%;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question[aria-expanded="true"] {
    background-color: #9B30FF;
    color: #FFFFFF;
    border-radius: 8px 8px 0 0;
}

.faq-question[aria-expanded="true"]:hover {
    background-color: #8A2EE6;
}

.faq-icon {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: #FFFFFF;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #FFFFFF;
    border-radius: 0 0 8px 8px;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Refund Status Section */
.refund-status-section {
    background-color: #000000;
    padding: 5rem 2rem;
    width: 100%;
}

.refund-status-container {
    max-width: 1400px;
    margin: 0 auto;
}

.refund-status-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 3rem;
}

.refund-status-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.refund-status-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.refund-column-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.refund-status-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #9B30FF;
    color: #FFFFFF;
    padding: 1.5rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    max-width: 250px;
    gap: 0.5rem;
}

.refund-status-button:hover {
    background-color: #8A2EE6;
    transform: translateY(-2px);
}

.button-main-text {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
}

.button-description-text {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.95;
}

/* Meet Our Experts Section */
.meet-experts-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.meet-experts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/background-meet-our-experts.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(0.5);
    z-index: 1;
}

.meet-experts-overlay {
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    padding: 5rem 2rem;
}

.meet-experts-container {
    max-width: 1200px;
    margin: 0 auto;
}

.meet-experts-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

.experts-profiles {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.expert-profile {
    background-color: rgba(40, 40, 40, 0.95);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.expert-image {
    flex: 0 0 200px;
}

.expert-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.expert-info {
    flex: 1;
}

.expert-name {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.expert-title {
    font-size: 1.125rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.expert-bio {
    font-size: 1rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Our Team Section */
.our-team-section {
    background-color: #FFFFFF;
    padding: 5rem 2rem;
    width: 100%;
}

.our-team-container {
    max-width: 1400px;
    margin: 0 auto;
}

.our-team-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
}

.our-team-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.our-team-image {
    flex: 0 0 45%;
}

.our-team-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 4px solid #9B30FF;
    border-radius: 8px;
}

.our-team-text {
    flex: 1;
}

.our-team-text p {
    font-size: 1.125rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    padding: 3rem 2rem 2rem;
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo-image {
    height: 40px;
    width: auto;
}

.footer-locations {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

.footer-location {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.location-name {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.location-phone {
    color: #FFFFFF;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.location-phone a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.location-phone a:hover {
    opacity: 0.7;
}

.location-address {
    color: #FFFFFF;
    font-size: 0.9375rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #9B30FF;
    color: #FFFFFF;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-icon:hover {
    background-color: #8A2EE6;
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 1.125rem;
}

.footer-copyright {
    color: #FFFFFF;
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-legal a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

.footer-legal-separator {
    color: #FFFFFF;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
    }

    .nav-links a {
        display: block;
        width: 100%;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero {
        min-height: 500px;
    }

    .refund-status-heading {
        font-size: 1.75rem;
        margin-top: 2rem;
    }

    .refund-status-text {
        font-size: 1rem;
    }

    .contact-phone {
        font-size: 1rem;
    }

    .location-map-row {
        flex-direction: column;
        gap: 2rem;
    }

    .map-location-info {
        flex: 0 0 auto;
        width: 100%;
    }

    .map-iframe-wrapper {
        width: 100%;
    }

    .maps-iframe-container {
        min-height: 350px;
    }

    .maps-iframe {
        min-height: 350px;
    }

    .privacy-policy-title {
        font-size: 2rem;
    }

    .privacy-heading {
        font-size: 1.5rem;
    }

    .privacy-intro,
    .privacy-policy-container p,
    .privacy-list li {
        font-size: 0.9375rem;
    }

    .hero-overlay {
        min-height: 500px;
    }

    .taxes-easy-container {
        flex-direction: column;
        gap: 2rem;
    }

    .taxes-easy-text {
        order: 1;
    }

    .taxes-easy-image {
        order: 2;
    }

    .taxes-easy-headline {
        font-size: 2rem;
    }

    .what-to-expect-section {
        background-attachment: scroll;
    }

    .what-to-expect-section::before {
        background-attachment: scroll;
    }

    .what-to-expect-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .expect-card {
        flex-direction: column;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 2rem;
    }

    .fastest-filing-card .expect-card-image {
        order: 1;
    }

    .fastest-filing-card .expect-card-content {
        order: 2;
    }

    .maximum-refund-card .expect-card-content {
        order: 1;
    }

    .maximum-refund-card .expect-card-image {
        order: 2;
    }

    .expect-card-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .expect-card-title {
        font-size: 1.5rem;
    }

    .expect-card-text {
        font-size: 1rem;
    }

    .testimonials-heading {
        font-size: 2rem;
    }

    .testimonials-subheading {
        font-size: 1rem;
    }

    .testimonials-cards {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .testimonials-cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .faqs-heading {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .faq-answer p {
        font-size: 0.9375rem;
    }

    .our-team-heading {
        font-size: 2rem;
    }

    .our-team-content {
        flex-direction: column;
        gap: 2rem;
    }

    .our-team-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .our-team-text p {
        font-size: 1rem;
    }

    .meet-experts-section {
        background-attachment: scroll;
    }

    .meet-experts-section::before {
        background-attachment: scroll;
    }

    .meet-experts-heading {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .expert-profile {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .expert-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .expert-name {
        font-size: 1.5rem;
        text-align: center;
    }

    .expert-title {
        font-size: 1rem;
        text-align: center;
    }

    .expert-bio {
        font-size: 0.9375rem;
        text-align: center;
    }

    .refund-status-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .refund-status-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .refund-column-title {
        font-size: 1.25rem;
    }

    .refund-status-button {
        padding: 1.25rem 1.5rem;
        max-width: 100%;
    }

    .button-main-text {
        font-size: 1.125rem;
    }

    .button-description-text {
        font-size: 0.8125rem;
    }

    .footer-locations {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-location {
        min-width: 100%;
    }
}
