/* ==========================================================================
   1stFMG Clean Clone Styles
   ========================================================================== */

/* CSS Variables */
:root {
    --primary-blue: #064165ff;
    --white: #ffffff;
    --black: #000000;
    --transparent: transparent;
    --overlay: rgba(0, 0, 0, 0.5);
    --roboto: 'Roboto', Arial, sans-serif;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--roboto);
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   Header Section
   ========================================================================== */

.header-section {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    text-align: center;
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

/* Mobile Header Adjustments */
@media screen and (max-width: 480px) {
    .header-section {
        padding: 15px 0;
    }

    .logo-image {
        height: 60px;
        max-width: 250px;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    height: 1000px;
    background: linear-gradient(var(--overlay), var(--overlay)), url('../assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    pointer-events: none;
}

.hero-container {
    position: relative;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-heading {
    font-family: var(--roboto);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
    color: var(--white);
}

.hero-heading-line {
    display: block;
    margin-bottom: 8px;
}

.hero-subtext {
    font-family: var(--roboto);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
    color: var(--white);
}

.hero-features {
    font-family: var(--roboto);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 0;
}

/* Mobile Hero Adjustments */
@media screen and (max-width: 480px) {
    .hero-section {
        height: 600px;
        padding: 40px 0;
    }

    .hero-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .hero-subtext {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-features {
        font-size: 16px;
    }

    .hero-container {
        padding: 0 15px;
    }
}

/* Tablet Hero Adjustments */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .hero-section {
        height: 800px;
    }

    .hero-heading {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .hero-subtext {
        font-size: 20px;
        margin-bottom: 35px;
    }

    .hero-features {
        font-size: 17px;
    }
}

/* Large Desktop Hero Adjustments */
@media screen and (min-width: 1200px) {
    .hero-heading {
        font-size: 56px;
        margin-bottom: 35px;
    }

    .hero-subtext {
        font-size: 28px;
        margin-bottom: 45px;
    }

    .hero-features {
        font-size: 20px;
    }
}

/* ==========================================================================
   Footer Section
   ========================================================================== */

.footer-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-copyright {
    font-family: var(--roboto);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: var(--white);
}

/* Mobile Footer Adjustments */
@media screen and (max-width: 480px) {
    .footer-section {
        padding: 15px 0;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

/* ==========================================================================
   Display/Visibility Classes
   ========================================================================== */

.mobile-only {
    display: block;
}

.desktop-only {
    display: block;
}

@media screen and (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .row-RGkA3Lujca .inner {
        gap: 20px;
    }

    .desktop-nav {
        gap: 20px;
    }

    .nav-item {
        font-size: 14px;
    }
}

@media screen and (max-width: 900px) {
    .row-RGkA3Lujca .inner {
        grid-template-columns: auto auto auto;
        gap: 15px;
    }

    .desktop-nav {
        gap: 15px;
    }

    .nav-item {
        font-size: 13px;
    }
}

@media screen and (min-width: 769px) {
    .mobile-only {
        display: none;
    }
}

/* ==========================================================================
   Section Base Styles
   ========================================================================== */

section {
    position: relative;
    width: 100%;
}

.inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Mobile Navigation Section
   ========================================================================== */

.section-D8_VIS2uu9 {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.row-vfg5eLlnVN {
    margin: 0;
    padding: 0;
}

.col-T-QWy_y2Ok {
    text-align: center;
}

/* ==========================================================================
   Desktop Header Section
   ========================================================================== */

.section-Z4Xeb-F_38 {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.row-RGkA3Lujca {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.row-RGkA3Lujca .inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 1170px;
    gap: 40px;
}

.col-nav-left,
.col-nav-right {
    display: flex;
    justify-content: center;
}

.col-nav-left {
    justify-content: flex-end;
}

.col-nav-right {
    justify-content: flex-start;
}

.col-WduGmbjgXg {
    text-align: center;
    display: flex;
    justify-content: center;
}

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

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    gap: 30px;
}

.nav-item {
    font-family: var(--roboto);
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-blue);
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #0857a3;
}

/* ==========================================================================
   Why 1stFMG Section
   ========================================================================== */

.section-XEhWqQ_otr,
.why-fmg-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.why-fmg-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-fmg-content {
    text-align: center;
}

.why-fmg-heading {
    font-family: var(--roboto);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 60px;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-item-container {
    display: flex;
    align-items: flex-start;
    text-align: left;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.feature-number {
    font-family: var(--roboto);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.feature-symbol {
    font-size: 32px;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-family: var(--roboto);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature-description {
    font-family: var(--roboto);
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Map Component */
.map-component {
    margin-top: 40px;
}

.map-container {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-placeholder {
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0857a3 100%);
    color: var(--white);
}

.map-title {
    font-family: var(--roboto);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.map-description {
    font-family: var(--roboto);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    color: var(--white);
}

/* ==========================================================================
   Trust Indicators Section
   ========================================================================== */

.trust-section {
    background-color: var(--primary-blue);
    padding: 40px 0;
    overflow: hidden;
}

.trust-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.trustbox {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
}

.trustbox-viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.trustbox-track {
    display: flex;
    animation: trustboxScroll 20s linear infinite;
}

.trustbox-sequence {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
}

.trustbox-item {
    font-family: var(--roboto);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
    opacity: 0.9;
}

@keyframes trustboxScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* ==========================================================================
   Industry Solutions Section
   ========================================================================== */

.industry-section {
    background-color: var(--white);
    padding: 80px 0;
}

.industry-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.industry-heading {
    font-family: var(--roboto);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 60px;
}

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

.industry-item {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.industry-title {
    font-family: var(--roboto);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.industry-description {
    font-family: var(--roboto);
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */

.benefits-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.benefits-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.benefits-heading {
    font-family: var(--roboto);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    padding: 20px;
}

.benefit-icon-img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.benefit-symbol {
    font-size: 32px;
}

.benefit-title {
    font-family: var(--roboto);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.benefit-description {
    font-family: var(--roboto);
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   Service Icons Section
   ========================================================================== */

.section-WWTGd1clsR,
.service-icons-section {
    background-color: var(--white);
    padding: 80px 0;
}

.service-icons-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-icon-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.service-icon-item:hover {
    transform: translateY(-5px);
}

.service-icon-image {
    width: 100px;
    height: 100px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    padding: 25px;
}

.service-icon-img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.service-icon-title {
    font-family: var(--roboto);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

/* ==========================================================================
   Pricing Table Section
   ========================================================================== */

.section-6WgFAHgEX7,
.pricing-table-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.pricing-table-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-table-heading {
    font-family: var(--roboto);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 60px;
    text-align: center;
}

.pricing-table {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: var(--primary-blue);
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e0e0e0;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 20px;
    font-family: var(--roboto);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    border-right: 1px solid #e0e0e0;
}

.table-cell:last-child {
    border-right: none;
}

.header-cell {
    font-weight: 700;
    color: var(--white);
    background-color: var(--primary-blue);
}

.table-cell.highlight {
    background-color: #e8f4f8;
    font-weight: 600;
    color: var(--primary-blue);
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.section-8GzPSn8ZFq,
.features-section {
    background-color: var(--white);
    padding: 80px 0;
}

.features-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-heading {
    font-family: var(--roboto);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 60px;
    text-align: center;
}

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

.feature-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-card-title {
    font-family: var(--roboto);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature-card-description {
    font-family: var(--roboto);
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Hero CTA Button Section
   ========================================================================== */

.button-50RabiPdiZ,
.hero-cta-container {
    margin: 40px 0 0 0;
    text-align: center;
}

.cbutton-50RabiPdiZ,
.hero-cta-button {
    font-family: var(--roboto);
    background-color: transparent;
    color: var(--white);
    padding: 15px 30px;
    border: 2px solid var(--white);
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cbutton-50RabiPdiZ:hover,
.hero-cta-button:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.section-mNQLyOEjiD,
.testimonials-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.testimonials-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-heading {
    font-family: var(--roboto);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 60px;
    text-align: center;
}

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

.testimonial-item {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    text-align: left;
}

.testimonial-text {
    font-family: var(--roboto);
    font-size: 16px;
    font-weight: 400;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-family: var(--roboto);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
}

.author-company {
    font-family: var(--roboto);
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

/* ==========================================================================
   Case Studies Section
   ========================================================================== */

.section-0Yg3ebzv9A,
.case-studies-section {
    background-color: var(--primary-blue);
    padding: 80px 0;
    color: var(--white);
}

.case-studies-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.case-studies-heading {
    font-family: var(--roboto);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
    text-align: center;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.case-study-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.case-study-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.case-study-title {
    font-family: var(--roboto);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.case-study-result {
    font-family: var(--roboto);
    font-size: 20px;
    font-weight: 700;
    color: #4ade80;
    margin: 0;
}

/* ==========================================================================
   Footer Section Updates
   ========================================================================== */

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

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

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

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

.footer-tagline {
    font-family: var(--roboto);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin: 0;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* ==========================================================================
   Responsive Design - Mobile Styles
   ========================================================================== */

@media screen and (max-width: 768px) {
    /* Why 1stFMG Section Mobile */
    .why-fmg-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .feature-item-container {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 15px;
    }

    .map-placeholder {
        padding: 40px 20px;
    }

    .map-title {
        font-size: 24px;
    }

    .map-description {
        font-size: 16px;
    }

    /* Trust Section Mobile */
    .trustbox-item {
        font-size: 16px;
    }

    .trustbox-sequence {
        gap: 40px;
        padding-right: 40px;
    }

    /* Industry Section Mobile */
    .industry-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

    .industry-item {
        padding: 30px 20px;
    }

    .industry-title {
        font-size: 20px;
    }

    .industry-description {
        font-size: 15px;
    }

    /* Benefits Section Mobile */
    .benefits-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

    .benefit-item {
        padding: 30px 20px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .benefit-symbol {
        font-size: 24px;
    }

    .benefit-title {
        font-size: 20px;
    }

    .benefit-description {
        font-size: 13px;
    }

    /* Case Studies Section Mobile */
    .case-studies-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .case-study-item {
        padding: 30px 20px;
    }

    .case-study-title {
        font-size: 20px;
    }

    .case-study-result {
        font-size: 18px;
    }

    /* Service Icons Section Mobile */
    .service-icons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-icon-image {
        width: 80px;
        height: 80px;
        padding: 20px;
    }

    .service-icon-img {
        width: 40px;
        height: 40px;
    }

    .service-icon-title {
        font-size: 18px;
    }

    /* Pricing Table Section Mobile */
    .pricing-table-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }

    .table-cell {
        padding: 15px;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .table-cell:last-child {
        border-bottom: none;
    }

    /* Features Section Mobile */
    .features-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card-title {
        font-size: 20px;
    }

    .feature-card-description {
        font-size: 15px;
    }

    /* Hero CTA Button Mobile */
    .cbutton-50RabiPdiZ,
    .hero-cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }

    /* Testimonials Section Mobile */
    .testimonials-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

    .testimonial-item {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-company {
        font-size: 13px;
    }
}

/* ==========================================================================
   Responsive Design - Tablet Styles
   ========================================================================== */

@media screen and (min-width: 769px) and (max-width: 1024px) {
    /* Why 1stFMG Section Tablet */
    .why-fmg-heading {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .feature-title {
        font-size: 22px;
    }

    /* Industry Section Tablet */
    .industry-heading {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .industry-title {
        font-size: 22px;
    }

    /* Benefits Section Tablet */
    .benefits-heading {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .benefit-title {
        font-size: 22px;
    }

    /* Case Studies Section Tablet */
    .case-studies-heading {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .case-study-title {
        font-size: 22px;
    }

    /* Service Icons Section Tablet */
    .service-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .service-icon-title {
        font-size: 19px;
    }

    /* Pricing Table Section Tablet */
    .pricing-table-heading {
        font-size: 40px;
        margin-bottom: 50px;
    }

    /* Features Section Tablet */
    .features-heading {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .feature-card-title {
        font-size: 22px;
    }

    /* Testimonials Section Tablet */
    .testimonials-heading {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

/* ==========================================================================
   Responsive Design - Large Desktop Styles
   ========================================================================== */

@media screen and (min-width: 1200px) {
    /* Why 1stFMG Section Large Desktop */
    .why-fmg-heading {
        font-size: 56px;
        margin-bottom: 70px;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        margin-bottom: 70px;
    }

    .feature-item-container {
        padding: 40px;
    }

    .feature-icon {
        width: 100px;
        height: 100px;
        margin-right: 25px;
    }

    .feature-number {
        font-size: 28px;
    }

    .feature-symbol {
        font-size: 40px;
    }

    .feature-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .feature-description {
        font-size: 18px;
    }

    .map-placeholder {
        padding: 80px 60px;
    }

    .map-title {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .map-description {
        font-size: 20px;
    }

    /* Trust Section Large Desktop */
    .trustbox-item {
        font-size: 20px;
    }

    .trustbox-sequence {
        gap: 80px;
        padding-right: 80px;
    }

    /* Industry Section Large Desktop */
    .industry-heading {
        font-size: 56px;
        margin-bottom: 70px;
    }

    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .industry-item {
        padding: 50px 40px;
    }

    .industry-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .industry-description {
        font-size: 18px;
    }

    /* Benefits Section Large Desktop */
    .benefits-heading {
        font-size: 56px;
        margin-bottom: 70px;
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }

    .benefit-item {
        padding: 50px 40px;
    }

    .benefit-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
    }

    .benefit-symbol {
        font-size: 40px;
    }

    .benefit-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .benefit-description {
        font-size: 16px;
    }

    /* Case Studies Section Large Desktop */
    .case-studies-heading {
        font-size: 56px;
        margin-bottom: 70px;
    }

    .case-studies-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .case-study-item {
        padding: 50px 40px;
    }

    .case-study-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .case-study-result {
        font-size: 24px;
    }

    /* Service Icons Section Large Desktop */
    .service-icons-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }

    .service-icon-image {
        width: 120px;
        height: 120px;
        padding: 30px;
        margin-bottom: 25px;
    }

    .service-icon-img {
        width: 60px;
        height: 60px;
    }

    .service-icon-title {
        font-size: 24px;
    }

    /* Pricing Table Section Large Desktop */
    .pricing-table-heading {
        font-size: 56px;
        margin-bottom: 70px;
    }

    .table-cell {
        padding: 25px;
        font-size: 18px;
    }

    /* Features Section Large Desktop */
    .features-heading {
        font-size: 56px;
        margin-bottom: 70px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .feature-card {
        padding: 50px 40px;
    }

    .feature-card-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .feature-card-description {
        font-size: 18px;
    }

    /* Hero CTA Button Large Desktop */
    .cbutton-50RabiPdiZ,
    .hero-cta-button {
        padding: 18px 40px;
        font-size: 20px;
    }

    /* Testimonials Section Large Desktop */
    .testimonials-heading {
        font-size: 56px;
        margin-bottom: 70px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .testimonial-item {
        padding: 50px 40px;
    }

    .testimonial-text {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .author-name {
        font-size: 18px;
    }

    .author-company {
        font-size: 16px;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .hero-section {
        background: none !important;
        color: var(--black) !important;
        height: auto !important;
    }

    .hero-heading,
    .hero-subtext,
    .hero-features {
        color: var(--black) !important;
    }

    .hero-overlay {
        display: none;
    }
}