﻿        .container-image {
            max-width: 1200px;
            margin: 0 auto;
            /* background: white; */
            box-shadow: 0 10px 40px rgba(35, 70, 130, 0.1);
            overflow: hidden;
        }



        .content-image {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 60px;
            padding: 60px;
        }

        .photo-section-image {
            height: 352px;
            margin-top: 40px;
            text-align: center;
        }

        .photo-frame-image {
            width: 280px;
            height: 350px;
            margin: 0 auto 30px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(35, 70, 130, 0.2);
            position: relative;
        }
        .photo-frame-image img{
            width: 280px;
            height: 350px;
            object-fit: cover;
        }
        .photo-frame-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 3px solid rgba(35, 70, 130, 0.1);
            border-radius: 12px;
            z-index: 1;
        }

        .official-photo-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .name-card-image {
            background: linear-gradient(135deg, rgb(35, 70, 130), rgb(52, 88, 157));
            color: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(35, 70, 130, 0.3);
        }

        .name-image {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .role-image {
            font-size: 16px;
            opacity: 0.9;
            line-height: 1.5;
        }

        .info-section-image {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .info-block-image {
            background: #f8f9ff;
            border-radius: 12px;
            padding: 30px;
            border-left: 4px solid rgb(35, 70, 130);
            transition: all 0.3s ease;
        }



        .section-title-image {
            color: rgb(35, 70, 130);
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title-image::before {
            content: '';
            width: 6px;
            height: 6px;
            background: rgb(35, 70, 130);
            border-radius: 50%;
        }

        .info-content-image {
            color: #4a5568;
            line-height: 1.8;
            font-size: 16px;
        }

        .info-item-image {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }

        .info-item-image::before {
            content: '•';
            color: rgb(35, 70, 130);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .divider-image {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(35, 70, 130, 0.2), transparent);
            margin: 20px 0;
        }

        @media (max-width: 1024px) {
            .content-image {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px;
            }

            .photo-section-image {
                order: -1;
            }

            .photo-frame-image {
                width: 240px;
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .container-image {
                margin: 20px;
                border-radius: 12px;
            }

            .header-image {
                padding: 30px 20px;
            }

            .title-image {
                font-size: 24px;
            }

            .position-image {
                font-size: 16px;
            }

            .content-image {
                padding: 30px 20px;
                gap: 30px;
            }

            .photo-frame-image {
                width: 200px;
                height: 250px;
            }
        }