/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 20 2025 | 19:26:52 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            min-width: 20rem;
        }

        html {
            overflow-x: hidden;
            overflow-y: auto;
        }

        /* Section Base Styles */
        .carousel-section {
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-family: 'Lustria', serif;
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 16px;
            font-weight: 400;
        }

        .section-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            line-height: 27px;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        .section-wave-top {
            position: absolute;
            top: -1px;
            left: 0;
            width: 100%;
            height: 80px;
            z-index: 1;
            overflow: hidden;
        }

        /* Carousel Container */
        .carousel-container {
            position: relative;
        }

        .carousel-track {
            display: grid;
            gap: 24px;
            transition: all 0.3s ease;
        }

        .carousel-track.carousel-active {
            display: flex;
            padding-bottom: 10px;
        }

        .carousel-track::-webkit-scrollbar {
            display: none;
        }

        .carousel-slide {
            min-width: 0;
        }

        /* Navigation */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid white;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .carousel-nav:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .carousel-nav.prev {
            left: 0;
        }

        .carousel-nav.next {
            right: 0;
        }

        /* Dots */

        .carousel-dots {
            display: none;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 40px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .carousel-dot.active {
            background: #000;
            transform: scale(1.2);
        }

        .carousel-dot:hover {
            background: rgba(0, 0, 0, 0.6);
        }

        /* Buttons */
        .section-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 240px;
            height: 60px;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 14px;
            color: white;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            margin: 40px auto 0;
        }

        .card-button {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px 24px;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 13px;
            color: white;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            width: 100%;
            gap: 6px;
        }

        @media (max-width: 1024px) {
            .section-title {
                font-size: 36px;
            }
            .elementor-12574 .elementor-element.elementor-element-90f4573 {
                padding: 70px 16px 40px 16px!important;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
			body .entry-content h1 {
                font-size: 36px!important;
            }
            body .entry-content h2 {
                font-size: 32px!important;
            }
            .carousel-section {
                padding: 80px 16px;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .section-title {
                font-size: 32px;
            }

            .section-subtitle {
                font-size: 16px;
                line-height: 24px;
            }

            /* Show dots on mobile */
            .carousel-dots {
                display: flex;
                margin-top: 10px;
            }

            .section-wave-top {
                height: 40px;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {

            .section-button {
                width: 200px;
                height: 50px;
                font-size: 13px;
            }

            .section-wave-top {
                height: 30px;
            }
        }

        /* ===== TEAM SECTION ===== */

        .team-section {
            background: #d6e1e7;
        }

        .team-section .section-title {
            color: #073b47;
        }

        .team-section .section-subtitle {
            color: #073b47;
        }

        .team-section .carousel-track {
            grid-template-columns: repeat(5, 1fr);
        }

        .team-section .carousel-dot {
            background: rgba(7, 59, 71, 0.3);
        }

        .team-section .carousel-dot.active {
            background: #073b47;
        }

        .team-section .carousel-dot:hover {
            background: rgba(7, 59, 71, 0.6);
        }

        .team-section .section-button {
            background: #073b47;
        }

        .team-section .section-button:hover {
            background: #0a4d5c;
            transform: translateY(-2px);
        }

        /* Team Card */
        .team-card {
            border-radius: 16px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .team-card:hover {
            transform: translateY(-4px);
        }

        .team-card .card-image {
            position: relative;
            width: 100%;
            aspect-ratio: 0.85;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            background: #073b47;
        }

        .team-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .team-card:hover .card-image img {
            transform: scale(1.05);
        }

        .team-card .card-name {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 20px;
            line-height: 24px;
            color: #073b47;
            margin-bottom: 8px;
        }

        .team-card .card-role {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            font-size: 18px;
            line-height: 27px;
            color: #073b47;
            opacity: 0.8;
        }

        /* Plus Button */
        .plus-button {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: white;
            color: #073b47;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            border: none;
			padding: 0;
			margin: 0;
			line-height: 1;
			font-size: 16px;
			transform-origin: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .plus-button:hover {
			will-change: transform;
            transform: scale(1.1);
        }

        @media (max-width: 1024px) {
            .team-section .carousel-track {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Mobile */
        @media (max-width: 768px) {

            /* Team Section Mobile */
            .team-section .carousel-track.carousel-active {
                display: flex;
                gap: 16px;
                margin: 0;
            }

            .team-section .carousel-slide {
                display: flex;
                align-items: center;
                justify-content: center;
                flex: 0 0 calc(80% - 8px);

            }

            .team-card {
                padding: 20px;
                width: 18rem;
            }

            .team-card .card-image {
                height: 250px;
                width: 250px;
            }


            .team-card .card-name {
                font-size: 18px;
                line-height: 20px;
            }

            .team-card .card-role {
                font-size: 16px;
                line-height: 24px;
            }

        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .team-section .carousel-slide {
                flex: 0 0 100%;
            }
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 16px;
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #073b47;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .modal-close:hover {
            background: rgba(7, 59, 71, 0.1);
        }

        .modal-header {
            padding: 40px 40px 20px;
            border-bottom: 1px solid #eaeaea;
        }

        .modal-name {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 28px;
            color: #073b47;
            margin-bottom: 8px;
        }

        .modal-role {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            color: #073b47;
            opacity: 0.8;
        }

        .modal-body {
            padding: 20px 40px 40px;
        }

        .modal-description {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #333;
        }

        .modal-section {
            margin-bottom: 24px;
        }

        .modal-section-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 18px;
            color: #073b47;
            margin-bottom: 12px;
        }

        .modal-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .modal-tag {
            background: #d6e1e7;
            color: #073b47;
            padding: 6px 12px;
            border-radius: 20px;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .modal-header {
                padding: 30px 20px 15px;
            }
            
            .modal-body {
                padding: 15px 20px 30px;
            }
            
            .modal-name {
                font-size: 24px;
            }
            
            .modal-role {
                font-size: 16px;
            }
        }

    /* ===== CARE SECTION ===== */

.care-section {
    background-color: #073b47;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.care-section .section-container {
    max-width: 120rem;
}

.care-section .section-title {
    color: white!important;
    text-align: center!important;
    margin-bottom: 16px;
}

.care-section .section-subtitle {
    color: white;
    opacity: 0.9;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.care-section .carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.care-section .carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 60px 0;
    position: relative;
    height: 550px;
}

.care-section .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #073b47;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.care-section .carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.care-section .carousel-nav.prev {
    left: 20px;
}

.care-section .carousel-nav.next {
    right: 20px;
}

.care-section .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.care-section .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.care-section .carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

.care-section .carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.care-section .carousel-slide {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    flex: 0 0 auto;
}

.care-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: white;
}

.care-card .card-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.care-card .card-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 18rem;
    z-index: 2;
    text-align: left!important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.care-card .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(40, 179, 189, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.care-card .card-icon svg {
    width: 24px;
    height: 24px;
}

.care-card .card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: #073b47;
    text-align: left!important;
    margin-bottom: 12px;
}

.care-card .card-address {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    color: #28b3bd;
    margin-bottom: 16px;
    display: block;
}

.care-card .card-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #67777e;
    min-height: auto!important;
    text-align: left!important;
    margin-bottom: 24px;
}

.care-card .card-button {
    background: #073b47;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%!important;
    text-align: center;
    display: block;
}

.care-card .card-button:hover {
    background: #0a4a59;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 59, 71, 0.3);
}

.care-card .virtual-icon {
    background: rgba(40, 179, 189, 0.1);
}

.care-section .carousel-slide[data-slide-active] {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    filter: brightness(1);
    z-index: 3;
    width: 850px;
}

.care-section .carousel-slide[data-slide-active] .care-card {
    height: 500px;
}

.care-section .carousel-slide[data-slide-prev] {
    transform: translateX(-90%) scale(0.85);
    opacity: 0.6;
    filter: brightness(0.8);
    z-index: 2;
    width: 700px;
}

.care-section .carousel-slide[data-slide-prev] .care-card {
    height: 450px;
}

.care-section .carousel-slide[data-slide-next] {
    transform: translateX(-10%) scale(0.85);
    opacity: 0.6;
    filter: brightness(0.8);
    z-index: 2;
    width: 700px;
}

.care-section .carousel-slide[data-slide-next] .care-card {
    height: 450px;
}

.care-section .carousel-slide:not([data-slide-active]):not([data-slide-prev]):not([data-slide-next]) {
    transform: translateX(-50%) scale(0.7);
    opacity: 0.3;
    filter: brightness(0.6);
    z-index: 1;
    width: 600px;
}

.care-section .carousel-slide:not([data-slide-active]):not([data-slide-prev]):not([data-slide-next]) .care-card {
    height: 400px;
}

/* Desktop Gallery Mode */
@media (min-width: 1025px) {
    .care-section .carousel-track {
        overflow: visible;
        scroll-snap-type: none;
    }
}

@media (max-width: 1300px) {
    .care-section .carousel-slide {
        width: 600px;
    }

    .care-section .carousel-slide[data-slide-active] {
        width: 650px;
    }

    .care-section .carousel-slide[data-slide-prev],
    .care-section .carousel-slide[data-slide-next] {
        width: 500px;
    }
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .care-section {
        padding: 80px 0;
    }
	
	.care-section .section-header {
	    padding: 0 16px;
		margin: 0;
		max-width: 100%;
		box-sizing: border-box;
	}

    .care-section .carousel-container {
		margin:  0;
		padding: 0 20px 0 16px;
    }

    .care-section .carousel-track {
        display: flex;
        scroll-snap-type: x mandatory;
        gap: 24px;
        padding: 0;
        justify-content: flex-start;
        height: auto;
        border-radius: 20px;
		margin: 0; 
        position: relative; 
		width: 100%;
        box-sizing: border-box;
    }

    .care-section .carousel-slide {
        position: relative;
        flex: 0 0 100%;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
        left: 0;
        width: auto !important;
    }

    .care-section .carousel-nav {
        display: none !important;
    }

    .care-card {
        height: auto !important;
        display: flex;
		width: 100%;
        box-sizing: border-box;
        flex-direction: column;
    }

    .care-section .carousel-dots {
        display: flex !important;
    }

    .care-section .carousel-slide[data-slide-active],
    .care-section .carousel-slide[data-slide-prev],
    .care-section .carousel-slide[data-slide-next],
    .care-section .carousel-slide:not([data-slide-active]):not([data-slide-prev]):not([data-slide-next]) {
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
        position: relative !important;
    }

	.care-card .card-content {
		position: relative;
		width: 100%;
		bottom: auto;
		right: auto;
		top: auto;
		left: auto;
		margin: 0;
		padding: 24px;
		border-radius: 0 0 20px 20px;
		background: white;
		backdrop-filter: none;
		box-shadow: none;
		border: none;
		box-sizing: border-box;
		max-width: 100%;
	}

	.care-card .card-title,
	.care-card .card-address,
	.care-card .card-description,
	.care-card .card-button {
		max-width: 100%;
		box-sizing: border-box;
	}

	.care-card .card-button {
		width: 100%;
		max-width: 100% !important;
	}

	.care-card .card-background {
		position: relative;
		height: 250px;
		width: 100%;
		max-width: 100%;
		object-fit: cover;
	}
}

@media (max-width: 768px) {
    .care-card .card-content {
        padding: 20px;
    }
	
	.entry-content .care-card h3.card-title {
		margin-bottom: 5px!important;
	}

	.care-card .card-description {
		margin-bottom: 20px!important; 
	}
	
	.care-card .card-address {
	    margin-bottom: 10px; 
	}
    
    .care-card .card-background {
        height: 200px;
    }
}

@media (min-width: 1600px) {
    .care-section .carousel-container {
        max-width: 1600px;
    }

    .care-section .carousel-slide {
        width: 900px;
    }

    .care-section .carousel-slide[data-slide-active] {
        width: 950px;
    }

    .care-section .carousel-slide[data-slide-prev],
    .care-section .carousel-slide[data-slide-next] {
        width: 800px;
    }
}

    /* ===== TESTIMONIALS SECTION ===== */

    .testimonials-section {
        background-color: #f4f6f4;
    }

    .testimonials-section .section-title {
        color: #1c2706;
        font-size: 48px;
        line-height: 62.4px;
        letter-spacing: -1.04px;
    }

    .testimonials-section .carousel-track {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-section .carousel-dot {
        background: rgba(28, 39, 6, 0.3);
    }

    .testimonials-section .carousel-dot.active {
        background: #1c2706;
    }

    .testimonials-section .carousel-dot:hover {
        background: rgba(28, 39, 6, 0.6);
    }

    /* Testimonial Card */
    .testimonial-card {
        background-color: #c9d6cb;
        border-radius: 16px;
        padding: 32px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        min-height: 200px;
        height: 100%;
    }

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .testimonial-card .card-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 18.8px;
        line-height: 26px;
        color: #1c2706;
        font-weight: 500;
        letter-spacing: -0.4px;
    }

    .testimonial-card .card-quote {
        font-family: 'Montserrat', sans-serif;
        font-size: 15.1px;
        line-height: 27.2px;
        color: #1c2706;
        opacity: 0.7;
        font-weight: 400;
        letter-spacing: -0.32px;
    }

    .testimonial-card .card-author {
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        line-height: 23.8px;
        color: #1c2706;
        font-weight: 500;
        letter-spacing: -0.28px;
        margin-top: auto;
    }

    @media (max-width: 1024px) {

        .testimonials-section .carousel-track {
            grid-template-columns: repeat(2, 1fr);
        }

        .testimonials-section .section-title {
            font-size: 40px;
            line-height: 52px;
        }
    }

    /* Mobile */
    @media (max-width: 768px) {

        .testimonials-section .section-title {
            font-size: 32px;
            line-height: 42px;
            letter-spacing: -0.8px;
        }
        /* Testimonials Mobile */
        .testimonials-section .carousel-track.carousel-active {
            display: flex;
            gap: 16px;
        }

        .testimonials-section .carousel-slide {
            flex: 0 0 100%;
        }

        .testimonial-card {
            padding: 24px;
        }

        .testimonial-card .card-title {
            font-size: 16px;
            line-height: 22px;
        }

        .testimonial-card .card-quote {
            font-size: 14px;
            line-height: 24px;
        }

        .testimonial-card .card-author {
            font-size: 12px;
            line-height: 20px;
        }
    }

    /* ===== MODAL STYLES ===== */

    body .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(7, 59, 71, 0.85);
        z-index: 9999;
        overflow: hidden;
        padding: 40px 20px;
        align-items: flex-start;
        justify-content: center;
        box-sizing: border-box;
    }

    body .modal-overlay.active {
        display: flex;
    }

    body .modal-content {
        background: #1a6672;
        border-radius: 20px;
        max-width: 800px;
        width: 100%;
        max-height: 90vh;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        animation: modalSlideIn 0.3s ease;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        margin: auto;
    }

    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    body .modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: none;
        transition: all 0.3s ease;
        z-index: 10;
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
        color: white;
        font-weight: 300;
    }

    body .modal-close:hover {
        background: rgba(255, 255, 255, 0.25);
    }

    body .modal-header {
        padding: 50px 40px 30px;
        flex-shrink: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    body .modal-name {
        font-family: 'Lustria', serif;
        font-size: 36px;
        line-height: 1.2;
        color: white;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    body .modal-role {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: white;
        font-style: italic;
        opacity: 0.95;
    }

    body .modal-body {
        flex: 1;
        overflow-y: auto;
        padding: 30px 40px 40px;
        max-height: none;
    }

    body .modal-body::-webkit-scrollbar {
        width: 6px;
    }

    body .modal-body::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    body .modal-body::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }

    body .modal-body::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    body .modal-description {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        font-size: 15px;
        line-height: 24px;
        color: white;
        opacity: 0.95;
        margin-bottom: 32px;
    }

    body .modal-section {
        margin-bottom: 28px;
    }

    body .modal-section:last-child {
        margin-bottom: 0;
    }

    body .modal-section-title {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 14px;
        line-height: 20px;
        color: white;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    body .modal-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    body .modal-tag {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 8px 18px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        color: white;
        transition: all 0.3s ease;
        cursor: default;
    }

    body .modal-tag:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    @media (max-width: 768px) {
        body .modal-overlay {
            padding: 20px 15px;
        }

        body .modal-content {
            max-height: 95vh;
        }

        body .modal-header {
            padding: 40px 25px 20px;
        }

        body .modal-name {
            font-size: 28px;
        }

        body .modal-role {
            font-size: 16px;
        }

        body .modal-body {
            padding: 20px 25px 30px;
        }

        body .modal-close {
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
        }
    }

    @media (max-width: 480px) {
        body .modal-header {
            padding: 35px 20px 15px;
        }

        body .modal-body {
            padding: 15px 20px 25px;
        }

        body .modal-name {
            font-size: 24px;
        }
    }