        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
header {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.7);
    margin-bottom: 10px;
}
        h1 {
            color: #990033;
            margin-bottom: 20px;
            font-size: 2.5em;
        }
h1 span {
    color: #007abc;
    font-weight: 300;
    font-size: 1rem;
}
        .language-selector {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .lang-btn {
            padding: 8px 20px;
            border: 2px solid #007ABC;
            background: white;
            color: #007ABC;
            cursor: pointer;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .lang-btn.active {
            background: linear-gradient(135deg, #007ABC, #005a8c);
            color: white;
        }

        .lang-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 122, 188, 0.3);
        }
.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 20px;
}
        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 5px;
            color: #555;
            font-weight: 600;
            font-size: 14px;
        }

        .form-group input,
        .form-group select {
            padding: 10px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            transition: border 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #007ABC;
        }
.btn-search {
    padding: 10px 30px;
    background: linear-gradient(135deg, #007ABC, #005a8c);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    align-self: end;
}

        .btn-search:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 122, 188, 0.4);
        }
.btn-reset {
    display: inline-block;
    padding: 5px 10px;
    background: white;
    color: #990033;
    border: 2px solid #990033;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 5px;
    text-align: center;
}

        .btn-reset:hover {
            background: #990033;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(153, 0, 51, 0.3);
        }

        .professionals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .pro-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow:0 0 5px 2px inset rgba(0,0,0,0.5);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .pro-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .pro-photo {
            width: 100%;
            height: 250px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .pro-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .pro-photo:hover img {
            transform: scale(1.05);
        }

        .pro-info {
            padding: 20px;
        }

        .pro-name {
            font-size: 1.4em;
            color: #990033;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .pro-field {
            margin-bottom: 10px;
            color: #555;
            line-height: 1.6;
            font-size: 14px;
        }

        .pro-field strong {
            color: #007ABC;
            display: inline-block;
            min-width: 90px;
        }

        .therapies-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }

        .therapy-tag {
            background: linear-gradient(135deg, #007ABC, #005a8c);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
        }

        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #e0e0e0;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #007ABC;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .social-link:hover {
            transform: scale(1.1);
            background: #990033;
        }

        .no-results {
            text-align: center;
            padding: 60px 20px;
            background: white;
            border-radius: 15px;
            color: #999;
            grid-column: 1 / -1;
        }

        .no-results h2 {
            color: #990033;
            margin-bottom: 10px;
            font-size: 1.8em;
        }
.results-count {
    background: rgba(205, 223, 247, 0.3);
    text-align: center;
    font-weight: 600;
    color: #990033;
}

        /* Modal Overlay */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(205, 223, 247, 0.85);
            z-index: 9998;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.show {
            display: block;
        }

        /* Modal */
        .pro-modal {
            display: none;
            position: fixed;
            width: 90%;
            max-width: 800px;
            max-height: 85vh;
            overflow-y: auto;
            border-radius: 15px;
            z-index: 9999;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            perspective: 1000px;
        }

        .pro-modal.show {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes cardFlip {
            0% {
                transform: rotateY(0deg) translateX(0);
                opacity: 1;
            }
            40% {
                transform: rotateY(90deg) translateX(30px);
            }
            60% {
                transform: rotateY(90deg) translateX(30px);
            }
            100% {
                transform: rotateY(0deg) translateX(0);
                opacity: 1;
            }
        }

        @keyframes wobbleHorizontal {
            0% {
                transform: translateX(0);
            }
            25% {
                transform: translateX(-15px);
            }
            75% {
                transform: translateX(10px);
            }
            100% {
                transform: translateX(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: #990033;
            color: white;
            border: none;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .modal-close:hover {
            transform: rotate(90deg) scale(1.1);
            background: #007ABC;
        }

        .modal-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #007ABC;
            box-shadow: 0 4px 12px rgba(0, 122, 188, 0.3);
        }

        .modal-content {
            padding: 30px;
            position: relative;
        }

        .modal-header {
            display: flex;
            gap: 25px;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .modal-photo-wrapper {
            flex-shrink: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .modal-right-section {
            flex: 1;
            min-width: 0;
        }

        .modal-name {
            font-size: 1.8em;
            color: #990033;
            margin-bottom: 20px;
            font-weight: bold;
            padding-right: 50px;
        }

        .modal-therapies-section {
            background: linear-gradient(135deg, rgba(0, 122, 188, 0.1), rgba(205, 223, 247, 0.3));
            padding: 15px 20px;
            border-radius: 12px;
            border-left: 4px solid #007ABC;
        }

        .modal-therapies-section h3 {
            color: #007ABC;
            font-size: 1.1em;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .modal-therapies-section h3::before {
            content: "⚕";
            font-size: 1.3em;
        }

        .modal-therapies-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .modal-therapy-tag {
            background: linear-gradient(135deg, #007ABC, #005a8c);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .modal-field {
            margin-bottom: 15px;
            color: #555;
            line-height: 1.8;
            font-size: 15px;
        }

        .modal-field strong {
            color: #007ABC;
            display: inline-block;
            min-width: 120px;
            font-weight: 600;
        }

        .modal-social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid rgba(0, 122, 188, 0.2);
        }

        .modal-social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #007ABC;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .modal-social-link svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
            transition: fill 0.3s ease;
        }

        .modal-social-link:hover {
            transform: scale(1.2) rotate(5deg);
            background: #990033;
        }

        .modal-details {
            margin-top: 25px;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8em;
            }

            .search-form {
                grid-template-columns: 1fr;
            }

            .professionals-grid {
                grid-template-columns: 1fr;
            }

            .language-selector {
                justify-content: center;
            }

            .pro-modal {
                width: 95%;
                max-height: 95vh;
            }

            .modal-content {
                padding: 20px;
            }

            .modal-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .modal-photo-wrapper {
                margin-bottom: 20px;
            }

            .modal-name {
                font-size: 1.5em;
                text-align: center;
                padding-right: 0;
            }
        }