    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    /* Header */
    header {
        background-color: #5cb85c;
        padding: 12px 0;
        position: relative;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
    }

    .logo {
        background: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 18px;
        font-weight: bold;
        color: #4caf50;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 40px;
        align-items: center;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
    }

    .login-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        color: white;
        text-decoration: none;
        font-weight: 500;
    }

    .login-icon {
        width: 24px;
        height: 24px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hamburger Menu Styles */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 4px;
        z-index: 1001;
        position: relative;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    /* Hide hamburger when menu is active */
    .hamburger.active {
        opacity: 0;
        pointer-events: none;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100%;
        background-color: #5cb85c;
        z-index: 1000;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-header {
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        color: white;
        font-size: 28px;
        cursor: pointer;
        padding: 5px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease, transform 0.2s ease;
        font-weight: 300;
        line-height: 1;
    }

    .mobile-menu-close:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: rotate(90deg);
    }

    .mobile-menu-links {
        list-style: none;
        padding: 20px 0;
    }

    .mobile-menu-links li {
        margin: 0;
    }

    .mobile-menu-links a {
        display: block;
        color: white;
        text-decoration: none;
        padding: 15px 20px;
        font-size: 16px;
        font-weight: 500;
        transition: background-color 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-links a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-links .login-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 18px 20px;
        background-color: rgba(255, 255, 255, 0.1);
        margin: 10px 20px;
        border-radius: 8px;
    }

    /* Main Content */
    .main-content {
        background-color: #f5f5f5;
        padding: 100px 40px;
        text-align: center;
    }

    .container {
        max-width: 900px;
        margin: 0 auto;
    }

    h1 {
        font-size: 72px;
        font-weight: 800;
        color: #2c3e50;
        margin-bottom: 40px;
        line-height: 1.1;
    }

    .subtitle {
        font-size: 24px;
        color: #666;
        margin-bottom: 60px;
        line-height: 1.4;
    }

    .subtitle strong {
        color: #2c3e50;
    }

    .trust-section {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 80px;
        margin-bottom: 60px;
    }

    .rating-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .rating-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 5px;
    }

    .rating-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: white;
        font-size: 14px;
    }

    .google-icon {
        background: linear-gradient(45deg, #4285f4, #34a853, #fbbc05, #ea4335);
    }

    .trustpilot-icon {
        background-color: #00b67a;
    }

    .rating-score {
        font-size: 20px;
        font-weight: 700;
        color: #333;
    }

    .stars {
        color: #ffc107;
        font-size: 18px;
        margin-bottom: 2px;
    }

    .rating-count {
        font-size: 16px;
        color: #666;
        font-weight: 500;
    }

    .powered-by {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }

    .powered-text {
        font-size: 16px;
        color: #666;
    }

    .fundo {
        color: #5cb85c;
        font-weight: 700;
        font-size: 18px;
    }

    .trusted-lender {
        font-size: 14px;
        color: #888;
    }

    .apply-btn {
        background-color: #ff9800;
        color: white;
        padding: 16px 50px;
        border: none;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 25px;
        transition: background-color 0.3s ease;
    }

    .apply-btn:hover {
        background-color: #e6860a;
    }

    .security-info {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 15px;
        color: #666;
    }

    .check-mark {
        color: #5cb85c;
        font-weight: bold;
        font-size: 16px;
    }

    /* Who We Are Section */
    .who-we-are {
        background-color: white;
        padding: 100px 40px;
    }

    .who-we-are-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .content-wrapper {
        display: flex;
        align-items: center;
        gap: 80px;
    }

    .text-content {
        flex: 1;
        max-width: 600px;
    }

    .section-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .play-icon {
        width: 40px;
        height: 40px;
        background-color: #f0ad4e;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 14px;
        font-weight: bold;
    }

    .section-header h2 {
        font-size: 32px;
        font-weight: 700;
        color: #2c3e50;
        margin: 0;
    }

    .section-title {
        font-size: 28px;
        font-weight: 600;
        color: #2c3e50;
        line-height: 1.4;
        margin-bottom: 25px;
    }

    .description {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .image-content {
        flex: 1;
        min-height: 300px;
        background-color: #f0f8f0;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-size: 14px;
    }

    /* Our Mission Section */
    .our-mission {
        background-color: #f5f5f5;
        padding: 100px 40px;
    }

    .our-mission-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .mission-content-wrapper {
        display: flex;
        align-items: center;
        gap: 80px;
    }

    .mission-image-content {
        flex: 1;
        min-height: 400px;
        background-color: #f0f8f0;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-size: 14px;
    }

    .mission-text-content {
        flex: 1;
        max-width: 600px;
    }

    .mission-section-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .mission-play-icon {
        width: 40px;
        height: 40px;
        background-color: #f0ad4e;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 14px;
        font-weight: bold;
    }

    .mission-section-header h2 {
        font-size: 32px;
        font-weight: 700;
        color: #2c3e50;
        margin: 0;
    }

    .mission-section-title {
        font-size: 28px;
        font-weight: 600;
        color: #2c3e50;
        line-height: 1.4;
        margin-bottom: 25px;
    }

    .mission-description {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .savvy-score-title {
        font-size: 22px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 20px;
    }

    .mission-apply-btn {
        background-color: #ff9800;
        color: white;
        padding: 16px 50px;
        border: none;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        margin: 30px 0 25px 0;
        transition: background-color 0.3s ease;
    }

    .mission-apply-btn:hover {
        background-color: #e6860a;
    }

    .mission-security-info {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 15px;
        color: #666;
    }

    .mission-check-mark {
        color: #5cb85c;
        font-weight: bold;
        font-size: 16px;
    }

    /* Legal Info Section */
    .legal-info {
        background-color: white;
        padding: 60px 40px;
    }

    .legal-info-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footnotes {
        margin-bottom: 40px;
    }

    .footnote {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
        padding-left: 0;
    }

    .company-info {
        margin-top: 30px;
    }

    .info-paragraph {
        font-size: 15px;
        color: #555;
        line-height: 1.7;
        margin-bottom: 20px;
        text-align: left;
    }

    .legal-disclaimer {
        font-size: 13px;
        color: #777;
        line-height: 1.6;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }

    /* Footer */
    .footer {
        background-color: #2c2c2c;
        color: #ccc;
        padding: 50px 40px 30px;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }

    .footer-logo {
        font-size: 24px;
        font-weight: 600;
    }

    .footer-savvy {
        color: #5cb85c;
    }

    .footer-loans {
        color: #f0ad4e;
    }

    .social-icons {
        display: flex;
        gap: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        background-color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2c2c2c;
        text-decoration: none;
        transition: transform 0.3s ease;
    }

    .social-icon:hover {
        transform: translateY(-2px);
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 0;
        border-top: 1px solid #444;
        border-bottom: 1px solid #444;
        margin-bottom: 30px;
    }

    .contact-info {
        display: flex;
        align-items: center;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        background-color: #444;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-details span {
        color: #fff;
        font-size: 16px;
    }

    .phone-info {
        text-align: center;
        font-size: 16px;
        line-height: 1.5;
    }

    .address-info {
        text-align: right;
        font-size: 16px;
        line-height: 1.5;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 400px;
    }

    .footer-links a {
        color: #ccc;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: #fff;
    }

    .footer-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 15px;
    }

    .language-selector {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
    }

    .flag {
        font-size: 16px;
    }

    .copyright {
        font-size: 14px;
        color: #999;
    }

    /* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

    /* Large Desktop (1200px+) - Default styles above */

    /* Desktop/Laptop (992px - 1199px) */
    @media (max-width: 1199px) {
        nav {
            padding: 0 15px;
        }

        h1 {
            font-size: 64px;
        }

        .trust-section {
            gap: 60px;
        }

        .content-wrapper,
        .mission-content-wrapper {
            gap: 60px;
        }
    }

    /* Tablet Landscape (768px - 991px) */
    @media (max-width: 991px) {
        .nav-links {
            gap: 25px;
        }

        .nav-links a {
            font-size: 14px;
        }

        h1 {
            font-size: 56px;
        }

        .subtitle {
            font-size: 22px;
            margin-bottom: 50px;
        }

        .trust-section {
            gap: 40px;
            flex-wrap: wrap;
        }

        .content-wrapper,
        .mission-content-wrapper {
            flex-direction: column;
            gap: 40px;
            text-align: center;
        }

        .image-content,
        .mission-image-content {
            min-height: 250px;
            max-width: 500px;
            margin: 0 auto;
        }

        .text-content,
        .mission-text-content {
            max-width: 100%;
        }

        .section-header h2,
        .mission-section-header h2 {
            font-size: 28px;
        }

        .section-title,
        .mission-section-title {
            font-size: 24px;
        }

        .footer-content {
            flex-direction: column;
            gap: 30px;
            text-align: center;
        }

        .address-info {
            text-align: center;
        }
    }

    /* Tablet Portrait and Mobile (max-width: 768px) */
    @media (max-width: 768px) {

        /* Show hamburger menu */
        .hamburger {
            display: flex;
        }

        /* Hide desktop navigation */
        .nav-links {
            display: none;
        }

        .main-content,
        .who-we-are,
        .our-mission {
            padding: 60px 20px;
        }

        .legal-info,
        .footer {
            padding: 40px 20px;
        }

        nav {
            padding: 0 15px;
        }

        .logo {
            font-size: 16px;
            padding: 6px 16px;
        }

        h1 {
            font-size: 42px;
            margin-bottom: 30px;
        }

        .subtitle {
            font-size: 18px;
            margin-bottom: 40px;
        }

        .trust-section {
            flex-direction: column;
            gap: 30px;
            margin-bottom: 40px;
        }

        .apply-btn,
        .mission-apply-btn {
            padding: 14px 40px;
            font-size: 16px;
        }

        .footer-top {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 30px;
            text-align: center;
        }

        .footer-right {
            align-items: center;
        }

        .social-icons {
            justify-content: center;
        }
    }

    /* Mobile (max-width: 575px) */
    @media (max-width: 575px) {
        h1 {
            font-size: 32px;
            line-height: 1.2;
        }

        .subtitle {
            font-size: 16px;
        }

        .main-content,
        .who-we-are,
        .our-mission {
            padding: 40px 15px;
        }

        .legal-info,
        .footer {
            padding: 30px 15px;
        }

        .trust-section {
            gap: 25px;
        }

        .rating-score {
            font-size: 18px;
        }

        .stars {
            font-size: 16px;
        }

        .rating-count {
            font-size: 14px;
        }

        .powered-text {
            font-size: 14px;
        }

        .fundo {
            font-size: 16px;
        }

        .apply-btn,
        .mission-apply-btn {
            padding: 12px 30px;
            font-size: 16px;
            width: 100%;
            max-width: 280px;
        }

        .security-info,
        .mission-security-info {
            flex-direction: column;
            gap: 5px;
            text-align: center;
        }

        .section-header,
        .mission-section-header {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }

        .section-header h2,
        .mission-section-header h2 {
            font-size: 24px;
        }

        .section-title,
        .mission-section-title {
            font-size: 20px;
        }

        .savvy-score-title {
            font-size: 18px;
        }

        .image-content,
        .mission-image-content {
            min-height: 200px;
        }

        .footer-logo {
            font-size: 20px;
        }

        .contact-item {
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
        }

        .footer-links {
            max-width: 100%;
            text-align: center;
        }
    }

    /* Extra Small Mobile (max-width: 375px) */
    @media (max-width: 375px) {
        h1 {
            font-size: 28px;
        }

        .subtitle {
            font-size: 15px;
        }

        .main-content,
        .who-we-are,
        .our-mission {
            padding: 30px 10px;
        }

        .apply-btn,
        .mission-apply-btn {
            padding: 10px 20px;
            font-size: 14px;
        }

        .logo {
            font-size: 14px;
            padding: 5px 12px;
        }

        .section-header h2,
        .mission-section-header h2 {
            font-size: 20px;
        }

        .section-title,
        .mission-section-title {
            font-size: 18px;
        }
    }

    /* Print Styles */
    @media print {

        .footer,
        .apply-btn,
        .mission-apply-btn,
        .social-icons,
        .hamburger,
        .mobile-menu,
        .mobile-menu-overlay {
            display: none;
        }

        body {
            color: #000;
            background: #fff;
        }

        .main-content,
        .who-we-are,
        .our-mission {
            background: #fff;
        }
    }