:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-hero: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(30, 64, 175, 0.95) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.custom-logo{
    width: 280px;
    height: 76px;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 70px;
    width: auto;
    transition: var(--transition-base);
}

.logo:hover .logo-image {
    opacity: 0.85;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-base);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    background-image: url('../images/hero-main.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 5rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.88) 0%, rgba(30, 64, 175, 0.88) 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background: #d97706;
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-block {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about {
    background: var(--bg-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--primary-color);
}

.feature-item h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
}

.services {
    background: var(--bg-light);
}

/* COMMENTED OUT - Now using Bootstrap .row .col-md-6 .col-lg-4
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
*/

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-features li {
    color: var(--text-light);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.process-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

/* COMMENTED OUT - Now using Bootstrap .row .col-md-6 .col-lg-4
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
*/

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-base);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.destinations {
    background: var(--bg-white);
}

/* COMMENTED OUT - Now using Bootstrap .row .col-md-6 .col-lg-4
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
*/

.destination-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    transition: var(--transition-base);
}

.destination-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.destination-flag {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.destination-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.destination-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.partners {
    background: var(--bg-light);
}

.partners-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.partners-note p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

.recruitment-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

/* COMMENTED OUT - Now using Bootstrap .row .col-lg-6 .g-4
.recruitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}
*/

.recruitment-info h3,
.recruitment-positions h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.recruitment-info p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* COMMENTED OUT - Now using Bootstrap .d-flex .align-items-center .mb-3
.recruitment-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    transition: var(--transition-base);
}

.benefit-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.benefit-item svg {
    width: 24px;
    height: 24px;
    color: var(--success-color);
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--text-dark);
    font-weight: 500;
}
*/

.position-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.position-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-base);
}

.position-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.position-item h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.position-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.recruitment-cta {
    padding: 2rem;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    text-align: center;
    color: white;
}

.recruitment-cta p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
}

.recruitment-cta p:last-of-type {
    margin-bottom: 1rem;
}

.recruitment-email {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 0.5rem;
    transition: var(--transition-base);
}

.recruitment-email:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

.cta-section {
    background: var(--gradient-primary);
    color: white;
    /* COMMENTED OUT - Now using Bootstrap .py-5 and .text-center
    text-align: center;
    padding: 5rem 0;
    */
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    /* COMMENTED OUT - Now using Bootstrap .mb-4
    margin-bottom: 1rem;
    */
}

.cta-content p {
    font-size: 1.25rem;
    /* COMMENTED OUT - Now using Bootstrap .mb-4
    margin-bottom: 2rem;
    */
    color: rgba(255, 255, 255, 0.9);
}

.contact {
    background: var(--bg-white);
}

/* COMMENTED OUT - Now using Bootstrap .row .col-lg-5 .col-lg-7 .g-4
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}
*/

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-item h3 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item p a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-base);
}

.contact-item p a:hover {
    color: var(--primary-color);
}

.map-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.map-placeholder {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    max-width: 600px;
    margin: 0 auto;
}

.map-placeholder p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.partners-intro,
.partners-listing,
.faq-section {
    background: var(--bg-white);
}

/* COMMENTED OUT - Old contact form (now using WPForms)
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-base);
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
*/

/* WPForms Styling - Full Width Fields */


.wpforms-container  {
    margin: 0 !important;
}

.wpforms-container .wpforms-field input[type="text"],
.wpforms-container .wpforms-field input[type="email"],
.wpforms-container .wpforms-field input[type="tel"],
.wpforms-container .wpforms-field input[type="url"],
.wpforms-container .wpforms-field input[type="number"],
.wpforms-container .wpforms-field select,
.wpforms-container .wpforms-field textarea {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.wpforms-container .wpforms-field input:focus,
.wpforms-container .wpforms-field select:focus,
.wpforms-container .wpforms-field textarea:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(26, 51, 83, 0.25);
}

/* WPForms Submit Button */
.wpforms-container .wpforms-submit {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    border: none;
    color: white;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wpforms-container .wpforms-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* WPForms Field Labels */
.wpforms-container .wpforms-field-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

/* WPForms Field Spacing */
.wpforms-container .wpforms-field {
    margin-bottom: 1rem;
}

/* WPForms Error Messages */
.wpforms-container .wpforms-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.wpforms-container .wpforms-field.wpforms-has-error input,
.wpforms-container .wpforms-field.wpforms-has-error select,
.wpforms-container .wpforms-field.wpforms-has-error textarea {
    border-color: #dc3545;
}
.wpforms-field{
    padding: 0 !important;
}

/* COMMENTED OUT - Now using Bootstrap grid + custom overrides at bottom of file
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0 1.5rem;
}
*/

/* COMMENTED OUT - Now using Bootstrap .row .g-4 in footer
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
*/

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: var(--text-lighter);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-lighter);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-badge {
    display: inline-block;
    margin-top: 1rem;
}

.icef-badge-img {
    width: 120px;
    height: auto;
    display: block;
}

.footer-bottom {
    /*border-top: 1px solid rgba(255, 255, 255, 0.1);*/
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* COMMENTED OUT - Now using Bootstrap responsive grid
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    */

    /* COMMENTED OUT - Bootstrap handles responsive grid
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    */

    /* COMMENTED OUT - Now using Bootstrap responsive grid
    .recruitment-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    */
}

@media (max-width: 768px) {
    .logo-image {
        height: 55px;
    }

    .hero {
        background-attachment: scroll;
    }

    /* COMMENTED OUT - Now using Bootstrap navbar-toggler and navbar-collapse
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    */

    .hero {
        padding-top: 6rem;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    /* COMMENTED OUT - Bootstrap handles responsive grid
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    */

    /* COMMENTED OUT - Using Bootstrap responsive grid now
    .footer-content {
        grid-template-columns: 1fr;
    }
    */
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* COMMENTED OUT - Bootstrap handles responsive grid
    .services-grid {
        grid-template-columns: 1fr;
    }
    */
}

.page-hero {
    position: relative;
    margin-top: 90px;
    padding: 8rem 0 4rem;
    background: var(--gradient-primary);
    background-image: url('../images/page-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(30, 64, 175, 0.85) 100%);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro,
.our-services-overview,
.leadership-team {
    background: var(--bg-white);
}

.accreditations {
    background: var(--bg-light);
}

.icef-details {
    background: var(--bg-white);
    padding: 5rem 0;
}

.icef-content {
    max-width: 1000px;
    margin: 0 auto;
}

.icef-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.icef-intro .lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.8;
}

/* COMMENTED OUT - Now using Bootstrap .row .col-lg-4
.icef-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
*/

.icef-benefit-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition-base);
    overflow: hidden;
}

.icef-benefit-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.icef-benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
    overflow: hidden;
}

.icef-benefit-icon svg {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px;
    max-height: 32px;
    color: white;
    flex-shrink: 0;
}

.icef-benefit-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.icef-benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.icef-link {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.icef-badge-section {
    text-align: center;
    margin: 2rem 0;
}

.icef-badge-large {
    width: 180px;
    height: auto;
    display: inline-block;
    transition: var(--transition-base);
}

.icef-badge-large:hover {
    transform: scale(1.05);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* COMMENTED OUT - Now using Bootstrap .row .col-md-6 .col-lg-3
.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
*/

.accreditation-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.accreditation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.accreditation-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.accreditation-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.accreditation-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.accreditation-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* COMMENTED OUT - Now using .max-width-900 .mx-auto utility classes
.services-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
*/

/* COMMENTED OUT - Now using Bootstrap .d-flex .mb-4
.service-item-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
    transition: var(--transition-base);
}

.service-item-row:hover {
    background: white;
    box-shadow: var(--shadow-md);
}
*/

.service-item-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-item-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.service-item-content h3 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-item-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* COMMENTED OUT - Now using Bootstrap .row .col-md-6 .col-lg-4
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
*/

.team-member {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.team-member:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-avatar svg {
    width: 50px;
    height: 50px;
    color: white;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

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

.member-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.member-role {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.member-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.member-contact a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.member-video {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.member-video h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.member-video iframe {
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
}

/* COMMENTED OUT - Now using Bootstrap .row .col-md-6 .col-lg-4
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.partner-region {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.partner-region h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.partner-region ul {
    list-style: none;
}

.partner-region ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.partner-region ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}
*/

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition-base);
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer.active {
    max-height: 1000px;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1.125rem;
    }

    /* COMMENTED OUT - These grids now use Bootstrap responsive classes
    .accreditation-grid,
    .team-grid,
    .partner-grid,
    .icef-benefits-grid {
        grid-template-columns: 1fr;
    }
    */

    .member-video iframe {
        height: 200px;
    }

    .icef-badge-large {
        width: 140px;
    }

    .icef-badge-img {
        width: 100px;
    }

    .service-item-row {
        flex-direction: column;
        text-align: center;
    }

    .service-item-icon {
        margin: 0 auto;
    }
}

/* WordPress Content Styles */
.entry-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.entry-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.max-width-900 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Bootstrap Overrides */
.footer {
    background: var(--secondary-color) !important;
}

.footer h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    line-height: 1.7;
}

.footer h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
}

.footer p,
.footer ul li {
    color: var(--text-lighter);
    font-size: 0.95rem;
     line-height: 2;
}


.footer a {
    color: var(--text-lighter) !important;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color) !important;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.9) !important;
}

.footer .footer-bottom p {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

/* About Page - Comprehensive Support Services Section */
.service-item-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
    transition: var(--transition-base);
}

.service-item-row:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.service-item-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-item-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.service-item-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-item-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .service-item-row {
        flex-direction: column;
        text-align: center;
    }

    .service-item-icon {
        margin: 0 auto;
    }
}

/* Blog Templates Styling */
.blog-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card-image img {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card-title a:hover {
    color: var(--primary-color) !important;
}

.read-more:hover {
    text-decoration: underline !important;
}

/* Single Post Styling */
.single-post .post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.single-post .post-content h2,
.single-post .post-content h3,
.single-post .post-content h4 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.single-post .post-content h2 {
    font-size: 1.75rem;
}

.single-post .post-content h3 {
    font-size: 1.5rem;
}

.single-post .post-content h4 {
    font-size: 1.25rem;
}

.single-post .post-content p {
    margin-bottom: 1.5rem;
}

.single-post .post-content img {
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.single-post .post-content ul,
.single-post .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.single-post .post-content li {
    margin-bottom: 0.75rem;
}

.single-post .post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

.post-tags .badge {
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.post-tags .badge:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color);
}

.nav-post a:hover {
    color: var(--primary-color) !important;
}

/* Pagination Styling */
.pagination-wrapper .page-numbers {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrapper .page-numbers li {
    list-style: none;
}

.pagination-wrapper .page-numbers a,
.pagination-wrapper .page-numbers span {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers a:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-wrapper .page-numbers .current {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .blog-card-title {
        font-size: 1.125rem;
    }

    .single-post .post-content {
        font-size: 1rem;
    }
}
