        /* =========================================
           INTERNATIONAL SYNODALITY PARTNERSHIP
        ========================================= */

        .isp-section {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;

            background-image:
                linear-gradient(
                    90deg,
                    rgba(7, 45, 91, 0.78) 0%,
                    rgba(8, 73, 128, 0.68) 50%,
                    rgba(0, 119, 190, 0.72) 100%
                ),
                url("images/ISP.png");

            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;

            overflow: hidden;
        }

        /* Decorative glow */
        .isp-section::before {
            content: "";
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            top: -220px;
            left: -180px;
            filter: blur(2px);
        }

        .isp-section::after {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: rgba(65, 190, 255, 0.10);
            bottom: -220px;
            right: -150px;
        }

        .isp-container {
            position: relative;
            z-index: 2;
            width: 100%;
            margin: auto;
            padding: 20px 20px;
            text-align: center;
        }

        /* =========================================
           TOP LABEL
        ========================================= */

        .isp-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            opacity: 0.95;
        }

        .isp-label::before,
        .isp-label::after {
            content: "";
            width: 45px;
            height: 2px;
            background: #ffffff;
            opacity: 0.75;
        }

        /* =========================================
           MAIN TITLE
        ========================================= */

        .isp-title {
            max-width: 1150px;
            margin: 0 auto;
            color: #ffffff;
            font-size:60px;
            line-height: 1.12;
            font-weight: 600;
            letter-spacing: -1.5px;

            text-shadow:
                0 3px 15px rgba(0, 0, 0, 0.30);

            animation: titleReveal 1s ease forwards;
        }

        .isp-title span {
            display: block;
            font-weight: 800;
            font-size:50px;
        }

        /* =========================================
           SUBTITLE
        ========================================= */

        .isp-subtitle {
            max-width: 850px;
            margin: 22px auto 0;

            color: rgba(255, 255, 255, 0.94);
            font-size: clamp(16px, 1.7vw, 21px);
            line-height: 1.7;
            font-weight: 400;
        }

        /* =========================================
           DIVIDER
        ========================================= */

        .isp-divider {
            width: 100px;
            height: 4px;
            margin: 30px auto;
            background: #ffffff;
            border-radius: 20px;
        }

        /* =========================================
           INFO CARDS
        ========================================= */

        .isp-cards {
            max-width: 1050px;
            margin: 42px auto 0;

            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .isp-card {
            padding: 25px 20px;

            background: rgba(255, 255, 255, 0.13);
            border: 1px solid rgba(255, 255, 255, 0.28);

            border-radius: 14px;

            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);

            transition: all 0.35s ease;
        }

        .isp-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.20);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .isp-card-icon {
            width: 48px;
            height: 48px;

            margin: 0 auto 15px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.35);

            color: #ffffff;
            font-size: 21px;
        }

        .isp-card h3 {
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .isp-card p {
            color: rgba(255, 255, 255, 0.86);
            font-size: 13px;
            line-height: 1.6;
        }

        /* =========================================
           BUTTON
        ========================================= */

        .isp-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;

            margin-top:0px;
            padding: 14px 32px;

            color: #084d82;
            background: #ffffff;

            border-radius: 50px;

            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.5px;

            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);

            transition: all 0.3s ease;
        }

        .isp-button span {
            transition: transform 0.3s ease;
        }

        .isp-button:hover {
            background:#030066;
            transform: translateY(-3px);
            box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
        }

        .isp-button:hover span {
            transform: translateX(5px);
        }

        /* =========================================
           ANIMATION
        ========================================= */

        @keyframes titleReveal {
            from {
                opacity: 0;
                transform: translateY(25px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* =========================================
           TABLET
        ========================================= */

        @media (max-width: 900px) {

            .isp-section {
                min-height: 580px;
            }

            .isp-container {
                padding: 50px 15px;
            }

            .isp-title {
                font-size: clamp(34px, 6vw, 55px);
            }

            .isp-cards {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }

            .isp-card {
                padding: 20px 12px;
            }

            .isp-card p {
                font-size: 12px;
            }
        }

        /* =========================================
           MOBILE
        ========================================= */

        @media (max-width: 650px) {

            .isp-section {
                min-height: auto;

                background-position: center center;
            }

            .isp-container {
                padding: 50px 18px;
            }

            .isp-label {
                font-size: 10px;
                letter-spacing: 2px;
            }

            .isp-label::before,
            .isp-label::after {
                width: 25px;
            }

            .isp-title {
                font-size: 34px;
                line-height: 1.18;
                letter-spacing: -0.5px;
            }

            .isp-subtitle {
                font-size: 14px;
                line-height: 1.6;
                margin-top: 18px;
            }

            .isp-divider {
                margin: 22px auto;
                height: 3px;
                width: 70px;
            }

            .isp-cards {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin-top: 28px;
            }

            .isp-card {
                padding: 18px;
            }

            .isp-card-icon {
                width: 42px;
                height: 42px;
                margin-bottom: 10px;
            }

            .isp-button {
                margin-top: 28px;
                padding: 13px 28px;
                font-size: 13px;
            }
        }

        /* =========================================
           SMALL MOBILE
        ========================================= */

        @media (max-width: 400px) {

            .isp-title {
                font-size: 29px;
            }

            .isp-container {
                padding: 40px 15px;
            }

            .isp-label {
                font-size: 9px;
            }
        }