      :root {
            --primary-bg: #0E1117;
            --secondary-bg: #151A23;
            --tertiary-bg: #1A202C;
            --primary-text: #F5F5F5;
            --secondary-text: #A0AEC0;
            --accent-color: linear-gradient(135deg, #C0C0C0, #A9A9A9);
            --highlight-color: #F4A460;
            --highlight-hover: #e69550;
            --section-padding: 100px 0;
            --card-radius: 20px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-bg);
            color: var(--primary-text);
            line-height: 1.7;
            overflow-x: hidden;
            width: 100%;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        /* Preloader */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            flex-direction: column;
        }
        
        .loader {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(244, 164, 96, 0.3);
            border-radius: 50%;
            border-top-color: var(--highlight-color);
            animation: spin 1.5s ease-in-out infinite;
            margin-bottom: 20px;
        }
        
        .loader-text {
            font-size: 1.2rem;
            color: var(--secondary-text);
            font-weight: 500;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--secondary-bg);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--highlight-color);
            border-radius: 10px;
            border: 2px solid var(--secondary-bg);
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--highlight-hover);
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: rgba(14, 17, 23, 0.95);
            backdrop-filter: blur(15px);
            padding: 18px 0;
            transition: var(--transition);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 1000;
        }
        
        .navbar.scrolled {
            padding: 12px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 32px;
            background: var(--accent-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: var(--transition);
        }
        
        .logo-img {
            height: 45px;
            margin-right: 12px;
            transition: var(--transition);
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(15deg);
        }
        
        .nav-link {
            color: var(--primary-text) !important;
            font-weight: 500;
            margin: 0 12px;
            transition: var(--transition);
            position: relative;
            padding: 8px 0 !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background: var(--highlight-color);
            transition: var(--transition);
            border-radius: 2px;
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--highlight-color) !important;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary-text);
            padding: 8px 12px;
            font-size: 1.2rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* Enhanced Hero Section */
        .team-hero {
            padding: 180px 0 100px;
            background: linear-gradient(135deg, rgba(14, 17, 23, 0.9) 0%, rgba(20, 25, 35, 0.8) 100%), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .team-hero-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .team-hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(244, 164, 96, 0.15);
            color: var(--highlight-color);
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            margin-bottom: 30px;
            border: 1px solid rgba(244, 164, 96, 0.3);
            backdrop-filter: blur(10px);
            font-weight: 600;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .team-hero-title {
            font-size: 5rem;
            font-weight: 800;
            margin-bottom: 25px;
            background: linear-gradient(to right, #F5F5F5, #F4A460);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            line-height: 1.1;
            position: relative;
        }
        
        .team-hero-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--highlight-color);
            border-radius: 2px;
        }
        
        .team-hero-subtitle {
            font-size: 1.5rem;
            color: var(--secondary-text);
            margin-bottom: 40px;
            font-weight: 400;
            line-height: 1.6;
        }
        
        .hero-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .hero-btn {
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .hero-btn-primary {
            background: var(--highlight-color);
            color: var(--primary-bg);
            border: 2px solid var(--highlight-color);
        }
        
        .hero-btn-primary:hover {
            background: transparent;
            color: var(--highlight-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(244, 164, 96, 0.3);
        }
        
        .hero-btn-secondary {
            background: transparent;
            color: var(--primary-text);
            border: 2px solid var(--primary-text);
        }
        
        .hero-btn-secondary:hover {
            background: var(--primary-text);
            color: var(--primary-bg);
            transform: translateY(-5px);
        }

            .breadcrumb {
            background: transparent;
            justify-content: center;
            margin-bottom: 0;
        }

        .breadcrumb-item a {
            color: var(--highlight-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb-item a:hover {
            color: var(--highlight-hover);
        }

        .breadcrumb-item.active {
            color: var(--secondary-text);
        }

        .breadcrumb-item+.breadcrumb-item::before {
            color: var(--secondary-text);
        }
        
        /* Particles Container */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(to right, #F5F5F5, #F4A460);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            color: var(--secondary-text);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Team Grid */
        .team-section {
            padding: var(--section-padding);
            background: var(--primary-bg);
            position: relative;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .team-card {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            height: 100%;
        }
        
        .team-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            border-color: var(--highlight-color);
        }
        
        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: all 0.6s;
            z-index: 1;
        }
        
        .team-card:hover::before {
            left: 100%;
        }
        
        .team-img-container {
            position: relative;
            overflow: hidden;
            height: 350px;
        }
        
        .team-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        
            transition: var(--transition);
        }
        
        .team-card:hover .team-img {
            transform: scale(1.05);
        }
        
        .team-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(transparent, rgba(14, 17, 23, 0.9));
            transform: translateY(100%);
            transition: var(--transition);
            z-index: 2;
        }
        
        .team-card:hover .team-overlay {
            transform: translateY(0);
        }
        
        .team-content {
            padding: 30px;
        }
        
        .team-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .team-role {
            color: var(--highlight-color);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .team-description {
            color: var(--secondary-text);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .team-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .team-skill {
            background: rgba(244, 164, 96, 0.15);
            color: var(--highlight-color);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .team-social {
            display: flex;
            gap: 15px;
        }
        
        .team-social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-text);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .team-social-link:hover {
            background: var(--highlight-color);
            color: var(--primary-bg);
            transform: translateY(-3px);
        }
        
        /* Team Stats */
        .team-stats-section {
            padding: var(--section-padding);
            background: var(--secondary-bg);
            position: relative;
        }
        
        .team-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-stat {
            text-align: center;
            background: var(--primary-bg);
            padding: 40px 30px;
            border-radius: var(--card-radius);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .team-stat:hover {
            transform: translateY(-10px);
            border-color: var(--highlight-color);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .team-stat-icon {
            font-size: 3rem;
            color: var(--highlight-color);
            margin-bottom: 20px;
        }
        
        .team-stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--highlight-color);
            display: block;
            line-height: 1;
        }
        
        .team-stat-label {
            font-size: 1.2rem;
            color: var(--secondary-text);
            margin-top: 10px;
        }
        
        /* Team Values */
        .team-values-section {
            padding: var(--section-padding);
            background: var(--primary-bg);
            position: relative;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .value-card {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            border-color: var(--highlight-color);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: rgba(244, 164, 96, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--highlight-color);
            transition: var(--transition);
        }
        
        .value-card:hover .value-icon {
            background: var(--highlight-color);
            color: var(--primary-bg);
            transform: scale(1.1);
        }
        
        .value-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .value-description {
            color: var(--secondary-text);
            font-size: 1rem;
        }
        
        /* Team CTA */
        .team-cta-section {
            padding: 160px 0;
            background: linear-gradient(135deg, rgba(244, 164, 96, 0.95) 0%, rgba(230, 149, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .team-cta-container {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .team-cta-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.25);
            color: var(--primary-bg);
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(10px);
            font-weight: 600;
            letter-spacing: 1px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .team-cta-title {
            font-size: 4.2rem;
            font-weight: 800;
            margin-bottom: 30px;
            color: var(--primary-bg);
            line-height: 1.1;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .team-cta-description {
            font-size: 1.5rem;
            margin-bottom: 50px;
            color: rgba(14, 17, 23, 0.9);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 500;
            line-height: 1.6;
        }
        
        .team-cta-btn {
            background: var(--primary-bg);
            border: none;
            color: var(--highlight-color);
            padding: 20px 50px;
            border-radius: 50px;
            font-weight: 700;
            transition: var(--transition);
            font-size: 1.3rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }
        
        .team-cta-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: all 0.6s;
            z-index: -1;
        }
        
        .team-cta-btn:hover:before {
            left: 100%;
        }
        
        .team-cta-btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
            background: var(--secondary-bg);
        }
        
        /* Footer */
        .footer {
            background: var(--primary-bg);
            padding: 80px 0 0;
            position: relative;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--highlight-color);
        }
        
        .footer-logo {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 32px;
            background: var(--accent-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-description {
            color: var(--secondary-text);
            margin-bottom: 25px;
            font-size: 1.05rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--secondary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-text);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-link:hover {
            background: var(--highlight-color);
            color: var(--primary-bg);
            transform: translateY(-5px);
        }
        
        .footer-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--highlight-color);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--secondary-text);
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            font-size: 1.05rem;
        }
        
        .footer-links a:hover {
            color: var(--highlight-color);
            transform: translateX(8px);
        }
        
        .footer-links a i {
            margin-right: 10px;
            font-size: 12px;
            color: var(--highlight-color);
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            margin-bottom: 18px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 12px;
            color: var(--highlight-color);
            margin-top: 5px;
            font-size: 1.1rem;
        }
        
        .contact-info div {
            flex: 1;
        }
        
        .contact-info strong {
            display: block;
            margin-bottom: 5px;
            color: var(--primary-text);
        }
        
        .contact-info p {
            color: var(--secondary-text);
            margin: 0;
        }
        
        .copyright {
            text-align: center;
            padding: 25px 0;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--secondary-text);
            font-size: 0.95rem;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: var(--highlight-color);
            color: var(--primary-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 99;
            box-shadow: 0 5px 15px rgba(244, 164, 96, 0.3);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--highlight-hover);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(244, 164, 96, 0.4);
        }
        
        /* Interactive Backgrounds */
        .interactive-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.1;
        }
        
        .floating-shapes {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: var(--highlight-color);
            opacity: 0.1;
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.1;
            }
            50% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
                opacity: 0;
            }
        }
        
        /* Team Modal */
        .team-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(14, 17, 23, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .team-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .team-modal-content {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            max-width: 1000px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            padding: 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }
        
        .team-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--highlight-color);
            color: var(--primary-bg);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1.2rem;
            z-index: 10;
        }
        
        .team-modal-close:hover {
            background: var(--highlight-hover);
            transform: rotate(90deg);
        }
        
        .team-modal-header {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .team-modal-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--highlight-color);
        }
        
        .team-modal-info {
            flex: 1;
        }
        
        .team-modal-name {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--highlight-color);
        }
        
        .team-modal-role {
            font-size: 1.5rem;
            color: var(--secondary-text);
            margin-bottom: 20px;
        }
        
        .team-modal-bio {
            color: var(--secondary-text);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .team-modal-social {
            display: flex;
            gap: 15px;
        }
        
        .team-modal-social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--primary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-text);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .team-modal-social-link:hover {
            background: var(--highlight-color);
            color: var(--primary-bg);
            transform: translateY(-3px);
        }
        
        .team-modal-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .team-modal-detail {
            background: var(--primary-bg);
            padding: 20px;
            border-radius: 10px;
        }
        
        .team-modal-detail-title {
            font-size: 0.9rem;
            color: var(--secondary-text);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .team-modal-detail-value {
            font-size: 1.2rem;
            font-weight: 700;
        }
        
        .team-modal-skills {
            margin-bottom: 30px;
        }
        
        .team-modal-skills-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--highlight-color);
        }
        
        .team-modal-skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .team-modal-skill {
            background: rgba(244, 164, 96, 0.15);
            color: var(--highlight-color);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* Responsive Styles */
        @media (max-width: 1199px) {
            .team-hero-title {
                font-size: 4rem;
            }
            
            .section-title {
                font-size: 2.8rem;
            }
            
            .team-cta-title {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 991px) {
            .team-hero-title {
                font-size: 3.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .team-cta-title {
                font-size: 3rem;
            }
            
            .team-cta-description {
                font-size: 1.3rem;
            }
            
            .team-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .team-modal-header {
                flex-direction: column;
                text-align: center;
            }
            
            .team-modal-img {
                margin: 0 auto;
            }
        }
        
        @media (max-width: 767px) {
            .team-hero {
                padding: 150px 0 80px;
            }
            
            .team-hero-title {
                font-size: 2.8rem;
            }
            
            .team-hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .team-cta-title {
                font-size: 2.5rem;
            }
            
            .team-cta-description {
                font-size: 1.1rem;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .team-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
        
        @media (max-width: 575px) {
            .team-hero {
                padding: 130px 0 60px;
            }
            
            .team-hero-title {
                font-size: 2.5rem;
            }
            
            .team-hero-badge {
                font-size: 1rem;
                padding: 10px 25px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .team-cta-title {
                font-size: 2.2rem;
            }
            
            .team-cta-description {
                font-size: 1rem;
            }
            
            .team-cta-badge {
                font-size: 0.9rem;
                padding: 10px 25px;
            }
            
            .team-modal-content {
                padding: 25px;
            }
            
            .team-modal-name {
                font-size: 2rem;
            }
            
            .team-stats-grid {
                grid-template-columns: 1fr;
            }
            
            .team-stat {
                padding: 30px 20px;
            }
            
            .team-stat-number {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 400px) {
            .team-hero-title {
                font-size: 2.2rem;
            }
            
            .team-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .team-cta-title {
                font-size: 2rem;
            }
            
            .team-card {
                margin: 0 10px;
            }
        }