body {
            font-family: 'Inter', sans-serif;
            background-color: #f8fafc; 
            color: #334155; 
            margin: 0;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

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

        .hero-section {
            background: linear-gradient(to right, #080808, #00407c); 
            color: #ffffff;
            padding: 1rem 0; 
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .hero-section h1 {
            font-size: 3.75rem; 
            font-weight: 800; 
            margin-bottom: 1.5rem; 
            line-height: 1.25; 
        }
        .hero-third-line{
            margin-top: 10px;
            margin-bottom: 10px;
            font-size: 20px;
            text-align: justify;

        }
            
    

        .hero-section p {
            font-size: 1.25rem; 
            max-width: 48rem; 
            margin: 0 auto;
            opacity: 0.9;
        }

        .section-padding {
            padding: 1rem 0; 
        }

        .section-heading {
            font-size: 2.5rem; 
            font-weight: 700; 
            color: #1a202c; 
            margin-bottom: 2rem;
            text-align: center;
        }

        .grid-layout {
            display: grid;
            gap: 2.5rem; 
        }

        .grid-cols-1 {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }

        .md-grid-cols-2 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .lg-grid-cols-3 {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        @media (min-width: 768px) { 
            .md-grid-cols-2 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (min-width: 640px) { 
            .sm-grid-cols-2 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (min-width: 1024px) { 
            .lg-grid-cols-3 {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }


        .items-center {
            align-items: center;
        }

        .card {
            background-color: #ffffff;
            border-radius: 0.75rem; 
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Subtle shadow */
            padding: 2rem;
            transition: transform 0.3s ease-in-out;
        }

        .card:hover {
            transform: translateY(-5px); 
        }

        .text-lg {
            font-size: 1.125rem;
        }

        .leading-relaxed {
            line-height: 1.75;
        }

        .mb-4 {
            margin-bottom: 1rem;
        }

        .rounded-lg {
            border-radius: 0.5rem;
        }

        .overflow-hidden {
            overflow: hidden;
        }

        .shadow-xl {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .w-full {
            width: 100%;
        }

        .h-auto {
            height: auto;
        }

        .object-cover {
            object-fit: cover;
        }

        .bg-gray-100 {
            background-color: #f3f4f6;
        }

        .flex-col {
            flex-direction: column;
        }

        .flex {
            display: flex;
        }

        .items-center {
            align-items: center;
        }

        .text-center {
            text-align: center;
        }

        .w-16 {
            width: 4rem;
        }

        .h-16 {
            height: 4rem;
        }

        .text-indigo-500 {
            color: #6366f1;
        }

        .mb-4 {
            margin-bottom: 1rem;
        }

        .text-2xl {
            font-size: 1.5rem;
        }

        .font-semibold {
            font-weight: 600;
        }

        .text-gray-800 {
            color: #1f2937;
        }

        .mb-3 {
            margin-bottom: 0.75rem;
        }

        .text-purple-500 {
            color: #a855f7;
        }

        .team-member-img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%; 
            border: 4px solid #6366f1; 
        }

        .text-xl {
            font-size: 1.25rem;
        }

        .text-indigo-600 {
            color: #4f46e5;
        }

        .mb-2 {
            margin-bottom: 0.5rem;
        }

        .text-base {
            font-size: 1rem;
        }

        .text-gray-600 {
            color: #4b5563;
        }

        .call-to-action {
            background: linear-gradient(to right, #494949, #0011ff);
            color: #ffffff;
            padding: 1rem 0; 
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .call-to-action h2 {
            font-size: 2.25rem;
            font-weight: 700; 
            margin-bottom: 1.5rem; 
        }

        .call-to-action p {
            font-size: 1.25rem; 
            max-width: 42rem; 
            margin: 0 auto 2rem auto; 
            opacity: 0.9;
        }

        .call-to-action .btn {
            display: inline-block;
            background-color: #ffffff;
            color: #000000; 
            font-weight: 700; 
            padding: 1rem 2rem; 
            border-radius: 9999px; 
            font-size: 1.125rem; 
            transition: background-color 0.3s ease;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .call-to-action .btn:hover{
            transform: scale(1.07);
        }
    

        .call-to-action .btn:hover {
            background-color: #ffc403;
            color: #ffffff;
        }

        .footer {
            background-color: #1a202c; 
            color: #9ca3af; 
            padding: 0.02rem 0; 
            text-align: center;
        }

        .footer .links {
            display: flex;
            justify-content: center;
            gap: 1.5rem; 
            margin-top: 1rem; 
        }

        .footer .links a {
            color: #9ca3af;
            transition: color 0.3s ease;
        }

        .footer .links a:hover {
            color: #ffffff;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .header .container {
                flex-direction: column;
                text-align: center;
            }
            .header nav ul {
                margin-top: 1rem;
                flex-direction: column;
                gap: 0.5rem;
            }
            .hero-section h1 {
                font-size: 3rem;
            }
            .hero-section p {
                font-size: 1rem;
            }
            .section-heading {
                font-size: 2rem;
            }
            .grid-layout.md-grid-cols-2 {
                grid-template-columns: 1fr;
            }
            .grid-layout.lg-grid-cols-3 {
                grid-template-columns: 1fr;
            }
            .call-to-action h2 {
                font-size: 2rem;
            }
            .call-to-action p {
                font-size: 1rem;
            }
        }