
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-image: url('../../img/4.png');
            background-color: #20b2aa;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow-x: hidden;
        }

        /* ── Back Button ── */
        .back-button {
            position: absolute;
            top: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background-color: transparent;
            border: 2px solid #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #000;
            font-size: 20px;
            z-index: 20;
        }

        /* ── Top Tagline ── */
        .top-tagline {
            position: absolute;
            top: 120px;
            left: 60px;
            font-size: 40px;
            font-weight: 700;
            color: white;
            z-index: 10;
            line-height: 1.2;
        }

        .top-tagline .accent {
            color: #157a74;
        }

        /* ── Main Container ── */
        .container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 60px 60px 60px;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            gap: 60px;
        }

        /* ── Left Section ── */
        .left-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
        }

        .logo-container img {
            max-width: 550px;
            width: 100%;
            height: auto;
        }

        .tagline-bottom {
            text-align: center;
            font-size: 24px;
            font-style: italic;
            color: #333;
            font-weight: 600;
        }

        /* ── Right Section ── */
        .right-section {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .get-started-card {
            background-color: white;
            border-radius: 40px;
            padding: 50px 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 550px;
            width: 100%;
        }

        .get-started-card h2 {
            font-size: 48px;
            font-weight: 800;
            color: #000;
            margin-bottom: 20px;
        }

        .get-started-card p {
            font-size: 15px;
            color: #444;
            margin-bottom: 35px;
            font-style: italic;
            text-align: left;
            white-space: nowrap;
        }

        .find-barangay-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            background-color: #ffffff;
            color: #20b2aa;
            border: 1px solid #eee;
            padding: 18px 30px;
            border-radius: 15px;
            font-size: 24px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            width: 100%;
            margin-bottom: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .find-barangay-btn:hover {
            background-color: #20b2aa;
            color: #ffffff;
            box-shadow: 0 6px 20px rgba(32, 178, 170, 0.35);
        }

        .trust-badges {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            font-size: 14px;
            color: #666;
        }

        .security-badge {
            width: 14px;
            height: 14px;
            margin-right: 8px;
            display: inline-block;
        }

        /* ════════════════════════════════════════
           RESPONSIVE BREAKPOINTS
           ════════════════════════════════════════ */

        /* ── Large tablets / small desktops (≤ 1100px) ── */
        @media (max-width: 1100px) {
            .top-tagline {
                font-size: 30px;
                top: 100px;
                left: 40px;
            }

            .container {
                padding: 60px 40px 50px 40px;
                gap: 40px;
            }

            .logo-container img {
                max-width: 420px;
            }

            .tagline-bottom {
                font-size: 20px;
            }

            .get-started-card h2 {
                font-size: 38px;
            }

            .find-barangay-btn {
                font-size: 20px;
            }
        }

        /* ── Tablets (≤ 900px) ── */
        @media (max-width: 900px) {
            .top-tagline {
                font-size: 24px;
                top: 85px;
                left: 30px;
                right: 30px;
            }

            .container {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 200px 30px 50px 30px;
                gap: 30px;
            }

            .left-section {
                width: 100%;
                max-width: 500px;
            }

            .logo-container img {
                max-width: 360px;
            }

            .tagline-bottom {
                font-size: 18px;
            }

            .right-section {
                width: 100%;
                max-width: 500px;
            }

            .get-started-card {
                padding: 40px 30px;
            }

            .get-started-card h2 {
                font-size: 36px;
            }

            .get-started-card p {
                white-space: normal;
                text-align: center;
            }

            .find-barangay-btn {
                font-size: 20px;
                padding: 16px 24px;
            }
        }

        /* ── Mobile landscape / large phones (≤ 680px) ── */
        @media (max-width: 680px) {
            .back-button {
                top: 20px;
                left: 20px;
                width: 42px;
                height: 42px;
                font-size: 17px;
            }

            .top-tagline {
                font-size: 18px;
                top: 70px;
                left: 20px;
                right: 20px;
            }

            .container {
                padding: 170px 20px 40px 20px;
                gap: 24px;
            }

            .logo-container img {
                max-width: 280px;
            }

            .tagline-bottom {
                font-size: 16px;
            }

            .get-started-card {
                border-radius: 28px;
                padding: 32px 22px;
            }

            .get-started-card h2 {
                font-size: 30px;
                margin-bottom: 14px;
            }

            .get-started-card p {
                font-size: 13px;
                margin-bottom: 24px;
                white-space: normal;
                text-align: center;
            }

            .find-barangay-btn {
                font-size: 17px;
                padding: 14px 20px;
                border-radius: 12px;
                gap: 10px;
                margin-bottom: 18px;
            }

            .trust-badges {
                font-size: 12px;
            }
        }

        /* ── Small phones (≤ 420px) ── */
        @media (max-width: 420px) {
            .top-tagline {
                font-size: 15px;
                top: 65px;
                left: 18px;
                right: 18px;
            }

            .container {
                padding: 155px 16px 36px 16px;
                gap: 20px;
            }

            .logo-container img {
                max-width: 220px;
            }

            .tagline-bottom {
                font-size: 14px;
            }

            .get-started-card {
                border-radius: 22px;
                padding: 26px 18px;
            }

            .get-started-card h2 {
                font-size: 26px;
            }

            .get-started-card p {
                font-size: 12px;
            }

            .find-barangay-btn {
                font-size: 15px;
                padding: 13px 16px;
                gap: 8px;
            }
        }
    