* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.4;
}

.top-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0 0;
}

.top-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-tabs {
    display: flex;
    gap: 0;
}

.nav-tab {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 20px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.nav-tab.active {
    color: #0066b2;
    border-bottom-color: #0066b2;
    font-weight: 500;
}

.top-nav-right {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 13px;
}

.top-nav-right a {
    color: #666;
    text-decoration: none;
}

.sign-in-btn {
    background-color: #0066b2;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 60px;
}

.logo img {
    width: 250px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #0066b2;
}

.logo-business {
    font-size: 16px;
    color: #666;
    margin: 10px 0 0;
}

.main-nav-links {
    display: flex;
    gap: 32px;
    flex: 1;
    margin-left: 115px;
}

.main-nav-link,
.main-nav-linked {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.main-nav-link:hover {
    color: #0066b2;
}

.hero-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #0066b2 100%);
    color: white;
    padding: 100px 0;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content button {
    background: #a4c519;
    border: none;
    padding: 12px;
    color: white;
    border-radius: 5px;
}

.hero-title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-image {
    flex-shrink: 0;
    margin-left: 40px;
}

.hero-image img {
    max-width: 400px;
    height: auto;
    border-radius: 8px;
}

.business-card {
    width: 300px;
    height: 180px;
    background: linear-gradient(135deg, #0d1c36 0%, #191135 100%);
    border-radius: 12px;
    position: relative;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.card-chip {
    width: 30px;
    height: 24px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 4px;
    position: absolute;
    top: 60px;
    left: 30px;
}

.card-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    font-size: 12px;
    text-align: left;
}

.card-logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.solution-finder {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.solution-finder-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.finder-arrow {
    font-size: 48px;
    color: #0066b2;
    margin-bottom: 30px;
    transform: rotate(45deg);
}

.finder-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.finder-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.finder-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.finder-label {
    font-size: 18px;
    color: #333;
}

.finder-select {
    padding: 12px 20px;
    border: 2px solid #0066b2;
    border-radius: 4px;
    font-size: 16px;
    color: #0066b2;
    background-color: white;
    min-width: 200px;
    cursor: pointer;
}

.finder-btn {
    background-color: #a4c519;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.finder-btn:hover {
    background-color: #555;
}

.finder-illustration {
    max-width: 300px;
    margin: 40px auto 0;
}

.finder-disclaimer {
    font-size: 14px;
    color: #666;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px dotted #ccc;
    padding-top: 30px;
}

.commitment-section {
    background-color: #ffffff;
    padding: 40px 0 80px;
}

.commitment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.commitment-content {
    flex: 1;
    margin: auto;
}

.commitment-logo {
    font-size: 48px;
    color: #0066b2;
    margin-bottom: 30px;
}

.commitment-text {
    font-size: 32px;
    color: #333;
    line-height: 1.4;
    font-weight: 300;
}

.services-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #0066b2;
}

.service-card-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-btn {
    background-color: #0066b2;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.service-card-btn:hover {
    background-color: #004d87;
}

.offerings-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.offerings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.offerings-container h2 {
    font-weight: 700;
}

.offerings-title {
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    line-height: 1.4;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.offering-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.offering-card:hover {
    transform: translateY(-4px);
}

.offering-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.offering-content {
    padding: 25px;
}

.offering-category {
    font-size: 12px;
    color: #0066b2;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.offering-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.offering-description {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.promotions-section {
    background-color: #ffffff;
    padding: 80px 0 0;
}

.promotions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.promo-card {
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.promo-category {
    font-size: 12px;
    color: #0066b2;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.promo-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.promo-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.promo-btn {
    background-color: #0066b2;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.promo-btn:hover {
    background-color: #004d87;
}

.small-biz-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 10px 100px;
}

.small-biz-logo {
    font-size: 48px;
    color: #0066b2;
    font-style: italic;
}

.small-biz-content {
    flex: 1;
}

.small-biz-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.processing-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #0066b2 100%);
    color: white;
    padding: 80px 0;
    margin: 80px 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.processing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.processing-content {
    flex: 1;
    max-width: 500px;
}

.processing-title {
    font-size: 35px;
    margin-bottom: 30px;
    font-weight: 700;
}

.processing-description {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.processing-tagline {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.processing-btn {
    background-color: #a4c519;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.processing-btn:hover {
    background-color: #004d87;
}

.processing-image {
    flex-shrink: 0;
    margin-left: 40px;
}

.processing-devices {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.device {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066b2;
    font-size: 24px;
}

.services-links-section {
    background-color: #f8f9fa;
    padding: 80px 0 20px;
}

.services-links-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-logo {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.services-logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #0066b2;
}

.services-logo-business {
    font-size: 18px;
    color: #666;
    margin-left: -60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-category {
    margin-bottom: 30px;
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-top: 20px;
    background: #f8f9fa;
}

.category-title {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0066b2;
    display: inline-block;
}

.category-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.category-links {
    list-style: none;
}

.category-links li {
    margin-bottom: 5px;
}

.category-links a {
    color: #0066b2;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.category-links a:hover {
    color: #004d87;
    text-decoration: underline;
}

.testimonial-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-title {
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.testimonial-image {
    flex-shrink: 0;
}

.testimonial-image img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.testimonial-text {
    flex: 1;
}

.testimonial-label {
    font-size: 14px;
    color: #0066b2;
    margin-bottom: 10px;
}

.nav-link {
    display: none;
}

.testimonial-quote {
    font-size: 28px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 25px;
    font-weight: 300;
}

.testimonial-attribution {
    color: #666;
    margin-bottom: 15px;
}

.testimonial-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.testimonial-link {
    color: #0066b2;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.testimonial-link:hover {
    text-decoration: underline;
}

.finder-illustration img {
    width: 100%;
    height: 200px;
}

.invest-image {
    flex: 1 1 320px;
    min-width: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.invest-image img {
    max-width: 420px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .hero-container,
    .commitment-container,
    .processing-container,
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }

    .processing-container {
        margin: 0 -10px;
    }

    .processing-section {
        margin: 20px 10px;
        border-radius: 12px;
        padding: 40px 0;
    }

    .hero-image,
    .processing-image {
        margin-left: 0;
        margin-top: 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .invest-image img {
        max-width: 320px;
        width: 100%;
        margin-top: -50px;
    }

    .finder-form {
        flex-direction: column;
        align-items: stretch;
    }

    .finder-select {
        min-width: 0;
        width: 100%;
    }

    .main-nav-links {
        display: none !important;
    }

    .services-cards {
        margin-top: 40px;
    }

    .services-logo .logo img {
        width: 200px;
        padding: 0;
        margin: 0;
    }

    .services-logo-business {
        margin-left: -55px;
    }

    .small-biz-section {
        flex-direction: column;
        text-align: center;
        margin: 0;
        padding: 24px 10px;
    }

    .testimonial-image img {
        margin: 0;
        width: 100%;
        max-width: 500px;
        height: auto;
    }

    .processing-devices {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-nav {
        display: none;
    }

    .top-nav-right {
        display: none;
    }

    .top-nav-container {
        flex-direction: column;
        align-items: center !important;
    }

    .nav-tabs {
        justify-content: center !important;
        width: 100%;
        margin-bottom: 10px;
    }

    .logo-text {
        font-size: 16px;
    }

    .testimonial-container {
        padding: 10px;
    }

    .logo img {
        width: 140px;
        margin-right: 0;
    }

    .logo {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 20px;
    }

    .logo img {
        margin-left: 15px;
    }

    .logo .logo-business {
        margin-left: 50px;
        margin-top: 2px;
        text-align: center;
    }

    .copyright {
        font-size: 15px;
    }

    .logo-business {
        font-size: 12px;
        margin-left: 0;
        margin-top: 4px;
        text-align: left;
    }

    .offerings-grid,
    .promotions-grid,
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .commitment-container {
        gap: 24px;
        padding: 0 10px;
    }

    .finder-illustration img {
        height: 120px;
    }

    .mobile-menu-btn {
        display: inline-flex !important;
        align-items: center;
        background: none;
        border: none;
        margin-left: 12px;
        cursor: pointer;
    }

    .main-nav-links {
        display: none !important;
    }
}