        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: #2563eb;
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background-color: #1d4ed8;
        }

        .btn-outline {
            background-color: transparent;
            color: white;
            border: 1px solid white;
        }

        .btn-outline:hover {
            background-color: white;
            color: #1e3a8a;
        }

        /* Page Header */
        .page-header {
            background-color: #1e3a8a;
            color: white;
            padding: 150px 0;
            text-align: center;
        }

        .page-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .page-subtitle {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Partners Overview */
        .partners-overview {
            padding: 80px 0;
            background-color: #f9fafb;
        }

        .partners-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 20px;
        }

        .section-description {
            color: #4b5563;
            margin-bottom: 30px;
        }

        /* Partners Carousel */
        .partners-carousel {
            margin-bottom: 0px;
        }
        
        .carousel-slide {
            position: relative;
        }
        
        .carousel-slide .slide-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Partners Grid */
        .partners-section {
            padding: 80px 0;
        }

        .partners-section:nth-child(even) {
            background-color: #f9fafb;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-subtitle {
            color: #4b5563;
            max-width: 600px;
            margin: 0 auto;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .partner-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .partner-card:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .partner-logo {
            height: 80px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partner-logo img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

        .partner-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1f2937;
        }

        .partner-description {
            color: #4b5563;
            flex-grow: 1;
        }

        /* CTA Section */
        .cta-section {
            background-color: #1e3a8a;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-description {
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {

            .page-header {
                padding: 100px 0 50px;
            }

            .contact-info {
                display: none;
            }

            .top-bar-content {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {

            .page-header {
                padding: 80px 0 50px;
            }

            .partners-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .action-buttons {
                display: none;
            }
        }