        :root {
            --primary-bg: #1A1915;      /* Deep Charcoal */
            --accent-color: #B59410;    /* Rich Gold */
            --light-cream: #FFFDF5;     /* Light Cream */
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--light-cream);
            color: var(--primary-bg);
            margin: 0;
        }

        /* --- Team Hero --- */
        .team-hero {
            background-color: var(--primary-bg);
            padding: 80px 0 50px 0;
            border-radius: 0 0 50px 50px;
            text-align: center;
            color: white;
        }

        /* --- Team Card Styling --- */
        .team-card {
            background: white;
            border-radius: 30px;
            padding: 30px;
            text-align: center;
            border: 1px solid #F0ECE0;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .team-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px rgba(181, 148, 16, 0.1);
        }

        .member-img-wrapper {
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }

        .member-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid #FDFBF0;
            transition: 0.4s;
        }

        .team-card:hover .member-img {
            border-color: var(--accent-color);
        }

        .social-links {
            margin-top: 15px;
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-links a {
            color: #ccc;
            font-size: 1.2rem;
            transition: 0.3s;
        }

        .social-links a:hover {
            color: var(--accent-color);
        }

        /* Decorative Element */
        .card-dots {
            position: absolute;
            top: 10px;
            right: 10px;
            opacity: 0.1;
            font-size: 2rem;
        }

        /* --- Join Section --- */
        .join-box {
            background: var(--primary-bg);
            border-radius: 30px;
            padding: 40px;
            color: white;
            margin-top: 60px;
        }

        @media (max-width: 768px) {
            .display-4 { font-size: 2.2rem; }
        }