        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .section {
            margin-bottom: 4rem;
            
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: bold;
            /* Updated to dark navy blue */
            color: #1e3a8a;
            margin-bottom: 1rem;
        }
        
        .section-title .underline {
            width: 6rem;
            height: 4px;
            /* Updated to warm coral accent to balance navy blue */
            background-color: #f97316;
            margin: 0 auto;
        }
        
        /* Added keyframe animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        .grid {
            display: grid;
            gap: 2rem;
        }
        
        .grid-cols-3 {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .grid-cols-2 {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .lg-col-span-2 {
            grid-column: span 2;
        }
        
        .lg-col-span-1 {
            grid-column: span 1;
        }

        .lg-col-span-1 img {
                width: 100%;
                max-width: 20rem;
                display: block;
                margin-left: 0;
                margin-right: 0;
            }
        
        .card {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            /* Added slide-in animation for cards */
            animation: slideInLeft 0.6s ease-out;
        }
        
        .card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        
        .timeline-item {
            position: relative;
            padding-left: 2rem;
            border-left: 4px solid;
            margin-bottom: 2rem;
            /* Added staggered animation delays for timeline items */
        }
        
        .timeline-item:nth-child(1) {
            animation: slideInLeft 0.6s ease-out 0.2s both;
        }
        
        .timeline-item:nth-child(2) {
            animation: slideInLeft 0.6s ease-out 0.4s both;
        }
        
        .timeline-item:nth-child(3) {
            animation: slideInLeft 0.6s ease-out 0.6s both;
        }
        
        .timeline-item.blue {
            /* Updated to navy blue */
            border-left-color: #1e3a8a;
        }
        
        .timeline-item.green {
            /* Updated to warm emerald */
            border-left-color: #059669;
        }
        
        .timeline-item.purple {
            /* Updated to warm amber */
            border-left-color: #d97706;
        }
        
        .timeline-dot {
            position: absolute;
            left: -12px;
            top: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            /* Added pulse animation for timeline dots */
            animation: pulse 2s infinite;
        }
        
        .timeline-dot.blue {
            /* Updated to navy blue */
            background-color: #1e3a8a;
        }
        
        .timeline-dot.green {
            /* Updated to warm emerald */
            background-color: #059669;
        }
        
        .timeline-dot.purple {
            /* Updated to warm amber */
            background-color: #d97706;
        }
        
        .icon-box {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
            /* Added bounce animation for icon boxes */
            animation: bounceIn 0.8s ease-out;
        }
        
        .icon-box.blue {
            /* Updated to light navy background with navy text */
            background-color: #e0f2fe;
            color: #1e3a8a;
        }
        
        .icon-box.green {
            /* Updated to warm emerald tones */
            background-color: #ecfdf5;
            color: #059669;
        }
        
        .icon-box.purple {
            /* Updated to warm amber tones */
            background-color: #fef3c7;
            color: #d97706;
        }
        
        .gradient-bg {
            /* Updated to navy blue with warm accent gradient */
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
            color: white;
            border-radius: 1.5rem;
            padding: 3rem;
            text-align: center;
            /* Added slide-in animation for gradient backgrounds */
            animation: slideInRight 0.8s ease-out;
        }
        
        .gradient-bg h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }
        
        .gradient-bg .underline {
            width: 6rem;
            height: 4px;
            background-color: white;
            opacity: 0.6;
            margin: 0 auto;
        }
        
        .numbered-card {
            border-radius: 1rem;
            padding: 2rem;
            margin-bottom: 2rem;
            /* Added staggered animations for numbered cards */
            animation: fadeInUp 0.6s ease-out;
        }
        
        .numbered-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .numbered-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .numbered-card:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        .numbered-card:nth-child(4) {
            animation-delay: 0.4s;
        }
        
        .numbered-card.blue {
            /* Updated to light navy gradient */
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }
        
        .numbered-card.green {
            /* Updated to warm emerald gradient */
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
        }
        
        .numbered-card.purple {
            /* Updated to warm amber gradient */
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
        }
        
        .numbered-card.orange {
            /* Updated to warm coral gradient */
            background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
        }
        
        .number-circle {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            /* Added bounce animation for number circles */
            animation: bounceIn 0.8s ease-out;
        }
        
        .number-circle.blue {
            /* Updated to navy blue theme */
            background-color: #e0f2fe;
            color: #1e3a8a;
        }
        
        .number-circle.green {
            /* Updated to warm emerald theme */
            background-color: #ecfdf5;
            color: #059669;
        }
        
        .number-circle.purple {
            /* Updated to warm amber theme */
            background-color: #fef3c7;
            color: #d97706;
        }
        
        .number-circle.orange {
            /* Updated to warm coral theme */
            background-color: #fed7aa;
            color: #ea580c;
        }
        
        .conduct-card {
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid;
            animation: slideInLeft 0.6s ease-out;
        }
        
        .conduct-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .conduct-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .conduct-card:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        .conduct-card:nth-child(4) {
            animation-delay: 0.4s;
        }
        
        .conduct-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px) scale(1.02);
        }
        
        .conduct-card.blue {
            /* Updated to light navy gradient */
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-color: #e0f2fe;
        }
        
        .conduct-card.green {
            /* Updated to warm emerald gradient */
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-color: #e0f2fe;
        }
        
        .conduct-card.purple {
            /* Updated to warm amber gradient */
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-color: #e0f2fe;
        }
        
        .conduct-card.orange {
            /* Updated to warm coral gradient */
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-color: #e0f2fe;
        }
        
        .conduct-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            /* Added rotation animation for conduct icons */
            animation: bounceIn 0.8s ease-out;
        }
        
        .conduct-icon.blue {
            /* Updated to navy blue */
            background-color: #1e3a8a;
            color: white;
        }
        
        .conduct-icon.green {
            /* Updated to warm emerald */
            background-color: #059669;
            color: white;
        }
        
        .conduct-icon.purple {
            /* Updated to warm amber */
            background-color: #d97706;
            color: white;
        }
        
        .conduct-icon.orange {
            /* Updated to warm coral */
            background-color: #f97316;
            color: white;
        }
        
        .service-card {
            /* Updated to navy blue gradient */
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
            color: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: transform 0.3s ease;
            /* Added staggered slide-up animations for service cards */
            animation: fadeInUp 0.6s ease-out;
        }
        
        .service-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .service-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .service-card:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        .service-card:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .service-card.green {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }
        
        .service-card.purple {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
        }
        
        .culture-section {
            background-color: #061e55;
            color: white;
            border-radius: 1.5rem;
            padding: 3rem;
            text-align: center;
            /* Culture section kept without animations as requested */
        }
        
        .culture-section h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 2rem;
        }
        
        .culture-section p {
            font-size: 1.25rem;
            color: #cbd5e1;
            margin-bottom: 2rem;
        }
        
        .culture-item {
            border-left: 4px solid;
            padding-left: 1.5rem;
            text-align: left;
        }
        
        .culture-item.yellow {
            border-left-color: #fbbf24;
        }
        
        .culture-item.blue {
            border-left-color: #60a5fa;
        }
        
        .culture-item.green {
            border-left-color: #34d399;
        }
        
        .culture-item p {
            color: #e2e8f0;
            font-size: 1rem;
        }
        
        .team-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border-top: 4px solid;
            /* Added staggered animations for team cards */
            animation: fadeInUp 0.6s ease-out;
        }
        
        .team-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .team-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .team-card:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        .team-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            transform: translateY(-10px) scale(1.02);
        }
        
        .team-card.blue {
            border-top-color: #1e3a8a;
        }
        
        .team-card.green {
            border-top-color: #1e3a8a;
        }
        
        .team-card.purple {
            border-top-color: #1e3a8a;
        }
        
        .team-card img {
            width: 5rem;
            height: 5rem;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            object-fit: cover;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            /* Added pulse animation for team images */
            animation: pulse 3s infinite;
        }
        
        .team-card h4 {
            font-size: 1.25rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }
        
        .team-card p {
            font-weight: 500;
        }
        
        .team-card p.blue {
            color: #1e3a8a;
        }
        
        .team-card p.green {
            color: #1e3a8a;
        }
        
        .team-card p.purple {
            color: #1e3a8a;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
            color: white;
            padding: 1rem 2rem;
            border-radius: 9999px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transform: translateY(0);
            /* Added bounce animation for button */
            animation: bounceIn 1s ease-out;
        }
        
        .btn:hover {
            background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0);
            transform: translateY(-2px) scale(1.05);
        }
        
        .flex {
            display: flex;
        }
        
        .items-start {
            align-items: flex-start;
        }
        
        .gap-4 {
            gap: 1rem;
        }
        
        .text-center {
            text-align: center;
        }
        
        .mb-3 {
            margin-bottom: 0.75rem;
        }
        
        .mb-4 {
            margin-bottom: 1rem;
        }
        
        .mb-6 {
            margin-bottom: 1.5rem;
        }
        
        .mb-8 {
            margin-bottom: 2rem;
        }
        
        .mb-12 {
            margin-bottom: 3rem;
        }
        
        .mt-12 {
            margin-top: 3rem;
        }
        
        .py-12 {
            padding-top: 3rem;
            padding-bottom: 3rem;
        }
        
        .text-xl {
            font-size: 1.25rem;
        }
        
        .text-lg {
            font-size: 1.125rem;
        }
        
        .font-bold {
            font-weight: bold;
        }
        
        .leading-relaxed {
            line-height: 1.625;
        }
        
        .text-gray-800 {
            color: #1f2937;
        }
        
        .text-gray-700 {
            color: #374151;
        }
        
        .text-gray-600 {
            color: #4b5563;
        }
        
        .sticky {
            position: sticky;
            top: 2rem;
        }
        
        .max-w-xs {
            max-width: 20rem;
        }
        
        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }
        
        .rounded-xl {
            border-radius: 0.75rem;
        }
        
        .shadow-xl {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .text-2xl {
            font-size: 1.5rem;
        }
        
        .text-3xl {
            font-size: 1.875rem;
        }
        
        @media (max-width: 768px) {
            .grid-cols-3 {
                grid-template-columns: 1fr;
                
            }
            
            .grid-cols-2 {
                grid-template-columns: 1fr;
            }
            
            .lg-col-span-2,
            .lg-col-span-1 {
                grid-column: span 1;
                
            }
            
            .lg-col-span-1 img{
                margin-left: auto;
                margin-right: auto;
            }
            .section-title h2 {
                font-size: 2rem;
            }
            
            .gradient-bg h2 {
                font-size: 2rem;
            }
            
            .culture-section h2 {
                font-size: 2rem;
            }
            
        }

            /* Added comprehensive animations for Peer Reviewed section */
            .peer-reviewed-section .animate-fade-in {
                animation: fadeIn 1s ease-out;
            }

            .peer-reviewed-section .animate-slide-up {
                animation: slideUp 1.2s ease-out 0.3s both;
            }

            .peer-reviewed-section .animate-slide-in-left {
                animation: slideInLeft 1s ease-out 0.6s both;
            }

            .peer-reviewed-section .animate-pulse-dot {
                animation: pulseDot 2s infinite;
            }

            .peer-reviewed-section .animate-bounce-icon {
                animation: bounceIcon 1.5s ease-out 1s both;
            }

            .peer-reviewed-section .animate-block-1 {
                animation: slideInUp 1s ease-out 1.2s both;
            }

            .peer-reviewed-section .animate-block-2 {
                animation: slideInUp 1s ease-out 1.4s both;
            }

            .peer-reviewed-section .animate-block-3 {
                animation: slideInUp 1s ease-out 1.6s both;
            }

            .peer-reviewed-section .animate-block-4 {
                animation: slideInUp 1s ease-out 1.8s both;
            }

            .peer-reviewed-section .peer-block {
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

            .peer-reviewed-section .peer-block:hover {
                transform: translateY(-8px) scale(1.02);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            }

            @keyframes pulseDot {
                0%, 100% { transform: scale(1); opacity: 1; }
                50% { transform: scale(1.3); opacity: 0.7; }
            }

            @keyframes bounceIcon {
                0% { transform: scale(0) rotate(0deg); opacity: 0; }
                50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
                100% { transform: scale(1) rotate(360deg); opacity: 1; }
            }

            @keyframes slideInLeft {
                from { transform: translateX(-50px); opacity: 0; }
                to { transform: translateX(0); opacity: 1; }
            }

            @keyframes fadeIn {
                from { opacity: 0; }
                to { opacity: 1; }
            }

            @keyframes slideUp {
                from { transform: translateY(50px); opacity: 0; }
                to { transform: translateY(0); opacity: 1; }
            }

            @keyframes slideInUp {
                from { transform: translateY(30px); opacity: 0; }
                to { transform: translateY(0); opacity: 1; }
            }
