body {
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f8f9fa;
        color: #333;
        line-height: 1.6;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        /* padding: 20px; */
    }

    .banner {
        width: 100%;
        height: 300px;
        background: linear-gradient(135deg, #2C5CDA 0%, #1e4aad 100%);
        border-radius: 0 0 15px 15px;
        margin-bottom: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .banner-content {
        text-align: center;
        color: white;
        z-index: 2;
    }

    .banner h1 {
        font-size: 2.5rem;
        margin: 0;
        font-weight: 300;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .banner p {
        font-size: 1.1rem;
        margin: 10px 0 0 0;
        opacity: 0.9;
    }

    .banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="8" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="6" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="70" r="10" fill="rgba(255,255,255,0.06)"/><circle cx="30" cy="80" r="4" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.3;
    }

    .section-title {
        font-size: 2rem;
        color: #2c3e50;
        margin: 40px 0 30px 0;
        text-align: center;
        font-weight: 300;
    }

    .executive-profile {
        background: white;
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 40px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    .executive-profile.left-photo {
        flex-direction: row;
    }

    .executive-profile.right-photo {
        flex-direction: row-reverse;
    }

    .profile-photo {
        width: 281px;
        height: 407px;
        background: linear-gradient(135deg, #2C5CDA 0%, #1e4aad 100%);
        border-radius: 15px 0 15px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2.5rem;
        font-weight: bold;
        flex-shrink: 0;
        box-shadow: 0 4px 15px rgba(44, 92, 218, 0.3);
        overflow: hidden;
    }

    .profile-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        image-rendering: high-quality;
        -ms-interpolation-mode: bicubic;
        backface-visibility: hidden;
        transform: translateZ(0);
    }

    .profile-content {
        flex: 1;
        min-width: 0;
    }

    .profile-header {
        margin-bottom: 20px;
    }

    .profile-position {
        font-size: 0.9rem;
        color: #2C5CDA;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .profile-name {
        font-size: 1.8rem;
        color: #2c3e50;
        margin-bottom: 0;
        font-weight: 700;
    }

    .profile-bio {
        font-size: 1rem;
        color: #555;
        line-height: 1.7;
        margin-bottom: 25px;
        text-align: justify;
    }

    .cv-button {
        background: #2C5CDA;
        color: white;
        border: none;
        padding: 10px 25px;
        border-radius: 25px;
        cursor: pointer;
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .cv-button:hover {
        background: #1e4aad;
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(44, 92, 218, 0.4);
    }

    .authorities-list {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .list-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        transition: background-color 0.3s ease;
    }

    .list-item:last-child {
        border-bottom: none;
    }

    .list-item:hover {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .list-info {
        flex-grow: 1;
    }

    .list-position {
        font-size: 0.85rem;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 3px;
    }

    .list-name {
        font-size: 1.1rem;
        color: #2c3e50;
        font-weight: 600;
    }

    .list-cv-button {
        background: #2C5CDA;
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 20px;
        cursor: pointer;
        font-size: 0.85rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .list-cv-button:hover {
        background: #1e4aad;
        transform: scale(1.05);
    }

    @media (max-width: 768px) {
        .container {
            padding: 15px;
        }

        .banner h1 {
            font-size: 2rem;
        }

        .executive-profile {
            flex-direction: column !important;
            text-align: center;
            padding: 20px;
        }

        .profile-photo {
            width: 234px;
            height: 340px;
            margin: 0 auto 20px auto;
            font-size: 2rem;
        }

        .profile-name {
            font-size: 1.5rem;
        }

        .profile-bio {
            text-align: left;
            font-size: 0.95rem;
        }

        .list-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .list-cv-button {
            align-self: flex-end;
        }
    }

