.departments-section {
            background: #F5F5F5;
            padding: 40px 0 65px 0;
            min-height: auto;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .departments-content {
            text-align: center;
            max-width: 1200px;
            margin: 0 auto 30px auto;
            padding: 0 40px;
        }

        .departments-tagline {
            color: #4CAF50;
            font-family: 'Calibri', sans-serif;
            font-size: 1rem;
            margin-bottom: 8px;
            font-weight: 400;
        }

        .departments-title {
            font-family: 'Cormorant', serif;
            font-size: 3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 60px;
            line-height: 1.2;
        }

        .departments-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .listing-section {
            padding-right: 30px;
        }

        .listing-title {
            font-family: 'Cormorant', serif;
            font-size: 2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .listing-items {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .listing-items li {
            font-family: 'Calibri', sans-serif;
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 3px;
            padding-left: 6px;
            position: relative;
            line-height: 1.2;
        }

        .listing-items li::before {
            content: '-';
            position: absolute;
            left: 0;
            color: #4CAF50;
            font-weight: bold;
            font-size: 0.8rem;
        }

        .team-section {
            justify-self: end;
          
            width: 600px;           /* Increased width */
            height: 280PX;          /* Increased height */
            margin-left: -80px;     /* Elongate to the left */;
            background: rgba(14, 12, 9, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.79);
            border-radius: 16px;
            padding: 0;
            color: white;
            box-shadow: 0 9px 25px rgba(0, 0, 0, 0.125);
            display: flex;
            overflow: hidden;
            margin-top: 40px;
        }

        .team-image {
            width: 180px;
            height: 280px;
            border-radius: 16px 0 0 16px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-content {
            flex: 1;
            padding: 25px 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .team-title {
            color: #4CAF50;
            font-family: 'Cormorant', serif;
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .team-description {
            font-family: 'Calibri', sans-serif;
            font-size: 0.9rem;
            color: #e0e0e0;
            margin-bottom: 15px;
            line-height: 1.4;
            letter-spacing: 0;
            font-weight: 300;
        }

        .team-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .team-list li {
            font-family: 'Calibri', sans-serif;
            font-size: 0.8rem;
            color: #e0e0e0;
            margin-bottom: 5px;
            padding-left: 8px;
            position: relative;
            line-height: 1.3;
            letter-spacing: 0;
            font-weight: 300;
        }

        .team-list li::before {
            content: '-';
            position: absolute;
            left: 0;
            color: #4CAF50;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .departments-buttons {
            position: absolute;
            right: 370px;
            bottom: -50px;
            display: flex;
            gap: 12px;
            z-index: 70;
            
        }

        .dept-btn {
            text-decoration:  none;
            background: #2C2C2C;
            color: white;
            border: none;
            padding: 12px 30px;
            padding-right:  30px;
            border-radius: 16px;
            font-family: 'Calibri', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dept-btn:hover {
            background: #333;
            transform: translateY(-2px);
        }

        .contact-btn {
            background: #4CAF50;
        }

        .contact-btn:hover {
            background: #45a049;
        }