.page-header {
        background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
        color: white;
        padding: 3rem 0;
        margin-bottom: 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .page-header h1 {
        font-size: 2.5rem;
        font-weight: 600;
        margin: 0;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-header .subtitle {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-top: 0.5rem;
    }

    .executive-section {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }

    .section-title {
        color: #ff6b6b;
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 3px solid #ff6b6b;
        position: relative;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 50px;
        height: 3px;
        background: #ff8e8e;
    }

    .profile-card {
        background: white !important;
        border-radius: 15px !important;
        padding: 2.5rem !important;
        margin-bottom: 2.5rem !important;
        margin: 0 0 2.5rem 0 !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        display: flex !important;
        align-items: center !important;
        gap: 3rem !important;
        width: 100% !important;
        position: relative !important;
        box-sizing: border-box !important;
    }

    .profile-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .profile-image {
        text-align: center !important;
        flex-shrink: 0 !important;
        width: auto !important;
        height: auto !important;
        border-radius: 10px !important;
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        max-width: none !important;
        max-height: none !important;
        margin-top: 0 !important;
    }

    .profile-image img {
        width: 220px !important;
        height: 280px !important;
        object-fit: cover !important;
        border-radius: 15px !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
        transition: transform 0.3s ease !important;
        border: 3px solid rgba(255, 107, 107, 0.1) !important;
    }

    .profile-image img:hover {
        transform: scale(1.05);
    }

    .profile-details {
        text-align: left !important;
        flex: 1 !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        padding: 1rem 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
        gap: 1.2rem !important;
        border-radius: 0 !important;
        background: transparent !important;
    }

    .profile-details p1 {
        display: block;
        font-size: 1.6rem;
        font-weight: 700;
        color: #ff6b6b;
        margin-bottom: 0 !important;
        line-height: 1.3;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        letter-spacing: 0.5px;
    }

    .profile-details p {
        margin-bottom: 0 !important;
        color: #333;
        font-size: 1.1rem;
        line-height: 1.5;
        font-weight: 500;
        padding: 0.3rem 0;
    }

    .profile-details a {
        color: #ff6b6b;
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 500;
        border-bottom: 1px solid transparent;
    }

    .profile-details a:hover {
        color: #ff8e8e;
        text-decoration: none;
        border-bottom: 1px solid #ff8e8e;
    }

    .btn-misnsru {
        background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%) !important;
        color: white !important;
        border: none !important;
        padding: 0.8rem 2rem !important;
        border-radius: 30px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3) !important;
        height: auto !important;
        letter-spacing: 0.5px !important;
    }

    .btn-misnsru:hover {
        background: linear-gradient(135deg, #ff8e8e 0%, #ff6b6b 100%) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4) !important;
        color: white !important;
    }

    .divider {
        height: 2px;
        background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
        margin: 2rem 0;
        border-radius: 1px;
    }

    .leadership-images {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
        padding: 2rem;
        margin-bottom: 2rem;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .leadership-images img {
        max-width: 400px;
        height: auto;
        border-radius: 10px;
        margin: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .leadership-images img:hover {
        transform: scale(1.05);
    }

    @media (max-width: 768px) {
        .page-header h1 {
            font-size: 1.8rem;
        }

        .page-header .subtitle {
            font-size: 1rem;
        }

        .executive-section {
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
        }

        .profile-card {
            padding: 1.5rem !important;
            flex-direction: column !important;
            text-align: center !important;
            gap: 1.5rem !important;
            width: 100% !important;
            margin: 0 0 1.5rem 0 !important;
        }

        .profile-image img {
            width: 180px !important;
            height: 230px !important;
        }

        .profile-details {
            text-align: center !important;
            gap: 1rem !important;
            padding: 0.5rem 0 !important;
        }

        .profile-details p1 {
            font-size: 1.4rem !important;
            margin-bottom: 0.5rem !important;
        }

        .profile-details p {
            font-size: 1rem !important;
            padding: 0.2rem 0 !important;
        }

        .btn-misnsru {
            padding: 0.7rem 1.5rem !important;
            font-size: 0.9rem !important;
            border-radius: 25px !important;
        }

        .leadership-images img {
            max-width: 280px;
        }
    }

    @media (max-width: 480px) {
        .page-header h1 {
            font-size: 1.5rem;
        }

        .page-header .subtitle {
            font-size: 0.9rem;
        }

        .executive-section {
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
        }

        .profile-card {
            padding: 1rem !important;
            gap: 1rem !important;
        }

        .profile-image img {
            width: 150px !important;
            height: 200px !important;
        }

        .profile-details p1 {
            font-size: 1.2rem !important;
        }

        .profile-details p {
            font-size: 0.9rem !important;
        }

        .btn-misnsru {
            padding: 0.6rem 1.2rem !important;
            font-size: 0.8rem !important;
        }

        .leadership-images img {
            max-width: 250px;
        }
    }