.partner-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
/*
            max-width: 950px;
            margin: 20px auto;
*/
			margin: 0px auto;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            
            /* Shadow Effects */
            background-color: #f8fbff;
/*
            border-radius: 12px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
*/
        }

        /* Main Section Container */
        .partner-section {
            box-sizing: border-box;
            background-color: transparent;
            border: 1px solid #e2e8f0;
 /*           border-radius: 12px;
            padding: 30px 40px;*/
			padding: 30px 340px; 50px 340px;
            width: 100%;
            text-align: center;
        }

        .partner-section * {
            box-sizing: border-box;
        }

        .partner-section .section-title {
            margin: 0 0 25px 0;
            padding: 0;
            color: #060b39;
            font-size: 22px;
            font-weight: 700;
        }

        .partner-section .content-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .partner-section .decorative-line {
            height: 4px;
            width: 50px;
            background-color: #ffb800;
            border-radius: 2px;
            flex-shrink: 0;
        }

        .partner-section .main-content {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-grow: 1;
            gap: 40px;
        }

        .partner-section .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 250px;
        }

        .partner-section .logo-container img {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
        }

        .partner-section .divider {
            width: 1px;
            height: 90px;
            background-color: #e2e8f0;
            flex-shrink: 0;
        }

        .partner-section .info-container {
            text-align: left;
            max-width: 280px;
        }

        .partner-section .description {
            margin: 0 0 16px 0;
            padding: 0;
            color: #2d3748;
            font-size: 15px;
            line-height: 1.4;
            font-weight: 600;
        }

       
        /* Responsive Design */
        @media (max-width: 768px) {
            .partner-section .content-container {
                flex-direction: column;
            }

            .partner-section .decorative-line {
                display: none;
            }

            .partner-section .main-content {
                flex-direction: column;
                gap: 20px;
            }

            .partner-section .divider {
                width: 80%;
                height: 1px;
            }

            .partner-section .info-container {
                text-align: center;
            }
        }