        /* =========================
           GENERAL
        ========================== */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            color: #333;
            background: #f5fbff;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1150px;
            margin: auto;
        }


        /* =========================
           HERO SECTION
        ========================== */

        .career-hero {
            background:
                linear-gradient(
                    135deg,
                    rgba(20, 130, 180, 0.95),
                    rgba(76, 180, 210, 0.90)
                );

            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .career-hero h1 {
            font-size: 48px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .career-hero p {
            font-size: 20px;
            max-width: 750px;
            margin: auto;
        }

        .hero-button {
            display: inline-block;
            margin-top: 30px;
            background: white;
            color: #087ca8;
            padding: 14px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
        }

        .hero-button:hover {
            background: #073b59;
            color: white;
        }


        /* =========================
           INTRODUCTION
        ========================== */

        .intro {
            padding: 70px 20px;
            text-align: center;
        }

        .intro h2 {
            color: #075b82;
            font-size: 34px;
            margin-bottom: 20px;
        }

        .intro p {
            max-width: 850px;
            margin: auto;
            color: #555;
            font-size: 17px;
        }


        /* =========================
           WHY JOIN US
        ========================== */

        .why-section {
            background: white;
            padding: 70px 20px;
        }

        .section-title {
            text-align: center;
            color: #075b82;
            font-size: 34px;
            margin-bottom: 45px;
        }

        .benefits {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .benefit-card {
            background: #f3fbff;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #dceff7;
            transition: 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 100, 150, 0.12);
        }

        .benefit-icon {
            font-size: 42px;
            margin-bottom: 15px;
        }

        .benefit-card h3 {
            color: #075b82;
            margin-bottom: 10px;
        }

        .benefit-card p {
            color: #666;
        }


        /* =========================
           JOBS SECTION
        ========================== */

        .jobs-section {
            padding: 70px 20px;
            background: #eef9fd;
        }

        .job-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            border-left: 5px solid #159bc5;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .job-card h3 {
            color: #075b82;
            font-size: 23px;
            margin-bottom: 8px;
        }

        .job-location {
            color: #159bc5;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .job-card ul {
            margin: 15px 0 20px 20px;
        }

        .job-card li {
            margin-bottom: 6px;
        }

        .apply-button {
            display: inline-block;
            background: #087ca8;
            color: white;
            padding: 11px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
        }

        .apply-button:hover {
            background: #064f70;
        }


        /* =========================
           VALUES
        ========================== */

        .values {
            padding: 70px 20px;
            background: white;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .value {
            text-align: center;
            padding: 25px;
        }

        .value h3 {
            color: #075b82;
            margin-bottom: 10px;
        }


        /* =========================
           APPLICATION SECTION
        ========================== */

        .application {
            padding: 80px 20px;
            background: linear-gradient(
                135deg,
                #075b82,
                #18a8c9
            );
            color: white;
            text-align: center;
        }

        .application h2 {
            font-size: 35px;
            margin-bottom: 15px;
        }

        .application p {
            max-width: 700px;
            margin: auto;
        }

        .contact-details {
            margin-top: 25px;
            font-size: 18px;
        }

        .contact-details a {
            color: white;
            font-weight: bold;
            text-decoration: underline;
        }


        /* =========================
           APPLICATION FORM
        ========================== */

        .form-section {
            /*background: #f5fbff;*/
            padding: 70px 20px;
        }

        .career-form {
            max-width: 750px;
            margin: auto;
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        }

        .career-form h2 {
            text-align: center;
            color: #075b82;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: bold;
            margin-bottom: 7px;
            color: #075b82;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {

            width: 100%;
            padding: 13px;
            border: 1px solid #ccdce4;
            border-radius: 8px;
            font-size: 16px;
        }

        .form-group textarea {
            min-height: 130px;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #159bc5;
            box-shadow: 0 0 5px rgba(21,155,197,0.25);
        }

        .submit-button {
            width: 100%;
            border: none;
            background: #087ca8;
            color: white;
            padding: 15px;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
        }

        .submit-button:hover {
            background: #064f70;
        }


        /* =========================
           FOOTER
        ========================== */

        /*footer {
            background: #063b52;
            color: white;
            text-align: center;
            padding: 25px;
        }*/


        /* =========================
           MOBILE
        ========================== */

        @media (max-width: 900px) {

            .benefits {
                grid-template-columns: repeat(2, 1fr);
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }

        }

        @media (max-width: 600px) {

            .career-hero {
                padding: 60px 20px;
            }

            .career-hero h1 {
                font-size: 36px;
            }

            .career-hero p {
                font-size: 17px;
            }

            .benefits {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .career-form {
                padding: 25px;
            }

            .section-title {
                font-size: 28px;
            }

        }
