:root {
    --primary: #f5a623;
    --primary-dark: #e09518;
    --primary-light: #fef3e2;
    --accent: #f5a623;
    --accent-dark: #e09518;
    --secondary: #1a2250;
    --secondary-light: #2b3470;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-400: #ced4da;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --radius: 10px;
    --radius-lg: 16px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: #fff;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

button {
    cursor: pointer;
    outline: none;
    border: 0;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Global Buttons */
.btn-primary {
    background: var(--primary);
    color: #1a2250;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--secondary-light);
}

/* Section Typography */
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 18px!important;
    }
}

/* Trusted Organizations Section (Slider) */
.trusted {
    background: #fff;
    padding: 50px 0;
}

.trusted-swiper-wrap {
    position: relative;
    padding: 0 40px;
}

.trusted-logo {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.trusted-logo img {
    max-width: 130px;
    width: auto;
    object-fit: contain;
}

.trusted-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--secondary);
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 10;
    transition: background 0.2s, color 0.2s;
}

.trusted-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.trusted-next { right: 0; }
.trusted-prev { left: 0; }

.trusted-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 768px) {
    .trusted {
        padding: 35px 0;
    }
    .trusted-swiper-wrap {
        padding: 0 30px;
    }
    .trusted-logo img {
        max-width: 110px;
    }
}