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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #1e293b;
            scroll-behavior: smooth;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e2e8f0;
            padding: 1.25rem 2rem;
        }

        .logobanner {
            width: 10%;
            height: 10%;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo svg {
            width: 32px;
            height: 32px;
        }

        .logo-text h1 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
            letter-spacing: 0.5px;
        }

        .logo-text p {
            font-size: 0.75rem;
            color: #64748b;
            letter-spacing: 1px;
        }

        nav {
            display: flex;
            gap: 2rem;
        }

        nav a {
            text-decoration: none;
            color: #475569;
            font-weight: 500;
            font-size: 0.875rem;
            transition: color 0.2s;
        }

        nav a:hover {
            color: #1e293b;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            color: white;
        }

        /* Background image layers */
        .hero::before,
        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: opacity 1.5s ease-in-out;
            opacity: 0;
            z-index: -2;
        }

        .hero::before {
            opacity: 1;
        }

        /* Optional dark overlay for contrast */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: -1;
        }

        /* Text styling */
        .hero-content {
            z-index: 1;
            padding: 0 1rem;
            max-width: 900px;
        }

        .hero h1 {
            font-size: 5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
        }

        .hero h1 .red {
            color: #ef4444;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            font-weight: 500;
            color: #f1f5f9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 3rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: opacity 1.5s ease-in-out;
            z-index: -2;
        }

        .hero-bg-current {
            opacity: 1;
        }

        .hero-bg-next {
            opacity: 0;
        }



        /* Section Styles */
        section {
            padding: 6rem 2rem;
        }

        .section-white {
            background: white;
        }

        .section-gray {
            background: #f8fafc;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        h2.section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 3rem;
            text-align: center;
        }

        /* About Section */
        .about-content {
            font-size: 1.125rem;
            color: #475569;
            line-height: 1.8;
        }

        .about-content p {
            margin-bottom: 1.5rem;
        }

        .highlight-box {
            background: #f1f5f9;
            padding: 2rem;
            border-radius: 0.75rem;
            margin: 2rem 0;
        }

        .highlight-box h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .link-in-text {
            font-size: 1.125rem;
            font-weight: 700;
            color: #1e293b;
            text-decoration: none;
        }

        .link-in-text:hover {
            font-size: 1.125rem;
            font-weight: 700;
            color: #FF5F05;
            text-decoration: none;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 0.75rem;
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #1e293b;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: transform 0.3s;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-icon svg {
            width: 32px;
            height: 32px;
            stroke: white;
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #64748b;
            line-height: 1.6;
        }

        /* Team Section */
        .team-department {
            margin-bottom: 4rem;
        }

        .team-department .team-grid {
            justify-content: center;
        }

        .team-department .team-card {
            max-width: 320px;
            margin: 0 auto;
        }

        .team-department h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 2rem;
            text-align: center;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            align-items: stretch;
        }

        .team-card {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .team-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .team-card img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            object-position: top center;
            filter: grayscale(100%);
            transition: filter 0.3s;
        }

        .team-card:hover img {
            filter: grayscale(0%);
        }

        .team-info {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 1.5rem;
        }

        .team-info h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .team-contact {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: #64748b;
        }

        .team-contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .team-contact-item svg {
            width: 16px;
            height: 16px;
        }

        .team-contact a {
            color: #1e293b;
            text-decoration: none;
            font-weight: 500;
        }

        .team-contact a:hover {
            color: #64748b;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
        }

        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 0.75rem;
            border: 1px solid #e2e8f0;
        }

        .contact-form h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: #475569;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1e293b;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .office-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .office-card {
            background: white;
            padding: 2rem;
            border-radius: 0.75rem;
            border: 1px solid #e2e8f0;
        }

        .office-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .office-card h3 svg {
            width: 24px;
            height: 24px;
        }

        .office-card h4 {
            font-weight: 600;
            color: #475569;
            margin-bottom: 0.5rem;
        }

        .office-card p {
            color: #64748b;
            margin-bottom: 0.25rem;
        }

        .office-contacts {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            font-size: 0.875rem;
        }

        .office-contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .office-contact-item svg {
            width: 16px;
            height: 16px;
        }

        .office-contact-item a {
            color: #1e293b;
            text-decoration: none;
        }

        .office-contact-item a:hover {
            color: #64748b;
        }

        /* Footer */
        footer {
            background: #1e293b;
            color: white;
            padding: 3rem 2rem;
        }

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

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .footer-logo svg {
            width: 32px;
            height: 32px;
        }

        .footer-logo h3 {
            font-size: 1.125rem;
            font-weight: 700;
        }

        .footer-logo-subtitle {
            font-size: 0.75rem;
            color: #94a3b8;
        }

        .footer-section h4 {
            font-weight: 700;
            margin-bottom: 1rem;
        }

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

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

        .footer-section a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s;
        }

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

        .footer-section p {
            color: #94a3b8;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            border-top: 1px solid #334155;
            padding-top: 2rem;
            text-align: center;
            color: #94a3b8;
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .hero h2 {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.125rem;
            }

            .pillars {
                gap: 1.5rem;
            }

            h2.section-title {
                font-size: 2rem;
            }

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

        nav {
            display: flex;
            gap: 2rem;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                border-top: 1px solid #e2e8f0;
                padding: 0;
                text-align: center;
                overflow: hidden;
                max-height: 0;
                opacity: 0;
                transition: max-height 0.4s ease, opacity 0.3s ease;
            }

            nav.active {
                display: flex;
                padding: 1.5rem 0;
                max-height: 500px;
                opacity: 1;
            }

            nav a {
                font-size: 1rem;
                color: #1e293b;
                padding: 0.5rem 0;
            }
        }