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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }

        /* Header Styles */
        .header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .img-radius{
            border-radius: 12px;

        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: #2d5a27;
        }

        .logo img {
            width: 40px;
            height: 40px;
            margin-right: 0.5rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #4a9d44;
        }

        .cta-button {
            background: #2d5a27;
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .cta-button:hover {
            background: #1e3d1a;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* Team Member Styles */
        .team-member {
            /* background: white; */
            /* border-radius: 15px; */
            /* box-shadow: 0 5px 20px rgba(0,0,0,0.1); */
            margin-bottom: 3rem;
            /* overflow: hidden; */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
            /* box-shadow: 0 10px 30px rgba(0,0,0,0.15); */
        }

        .member-content {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 2rem;
            align-items: center;
        }

        .member-image {
            position: relative;
            height: 400px;
            overflow: hidden;
        }

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

        .experience-badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: #ffc107;
            color: #333;
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            font-weight: bold;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }

        .experience-number {
            font-size: 1.5rem;
            display: block;
        }

        .experience-text {
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        .member-info {
            padding: 2rem;
        }

        .member-role {
            color: #4a9d44;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .member-name {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2d5a27;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .member-description {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .member-highlights {
            list-style: none;
        }

        .member-highlights li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.75rem;
            color: #555;
        }

        .member-highlights li::before {
            content: url("/image/pointer.png");
            color: #4a9d44;
            font-weight: bold;
            margin-right: 0.75rem;
            margin-top: 0.1rem;
            flex-shrink: 0;
        }

        /* Reverse layout for alternating members */
        .team-member:nth-child(even) .member-content {
            grid-template-columns: 1fr 300px;
        }

        .team-member:nth-child(even) .member-content .member-image {
            order: 2;
        }

        .team-member:nth-child(even) .member-content .member-info {
            order: 1;
        }

        /* Footer */
        .footer {
            background: #2d5a27;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #4a9d44;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: white;
        }

        .newsletter-form {
            display: flex;
            margin-top: 1rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 5px 0 0 5px;
        }

        .newsletter-form button {
            background: #4a9d44;
            color: white;
            border: none;
            padding: 0.75rem 1rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

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

        .social-links a:hover {
            color: #4a9d44;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #4a5d4a;
            color: #ccc;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1rem 2rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-container {
                padding: 1rem;
            }

            .main-content {
                padding: 1rem;
            }

            .member-content {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .team-member:nth-child(even) .member-content {
                grid-template-columns: 1fr;
            }

            .team-member:nth-child(even) .member-content .member-image,
            .team-member:nth-child(even) .member-content .member-info {
                order: initial;
            }

            .member-image {
                height: 440px;
            }

            .member-name {
                font-size: 2rem;
            }

            .experience-badge {
                bottom: 10px;
                right: 10px;
                padding: 0.75rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input,
            .newsletter-form button {
                border-radius: 5px;
                margin-bottom: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .member-name {
                font-size: 1.75rem;
            }

            .member-info {
                padding: 1.5rem;
            }

            .experience-badge {
                padding: 0.5rem;
            }

            .experience-number {
                font-size: 1.2rem;
            }
        }

        /* Tablet specific adjustments */
        @media (min-width: 769px) and (max-width: 1024px) {
            .member-content {
                grid-template-columns: 250px 1fr;
            }

            .team-member:nth-child(even) .member-content {
                grid-template-columns: 1fr 250px;
            }

            .member-image {
                height: 250px;
            }
        }