/* ===== HEADER & NAVIGATION ===== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin: 0;
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
}

.logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.2;
}

.site-title a {
    color: #1a365d;
    text-decoration: none;
}

.site-description {
    margin: 5px 0 0;
    font-size: 0.85rem;
    color: #718096;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo img {
        max-height: 45px;
    }
    
    .site-title {
        font-size: 1.2rem;
    }
}

/* Desktop Navigation */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0.5rem;
}

/* Mobile Sidebar Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 1001;
    padding: 2rem;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0.5rem;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 1rem;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Force mobile menu toggle to show */
.menu-toggle {
    display: none !important; /* Hidden by default on desktop */
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block !important; /* Force show on mobile */
        background: none;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
        color: #1a365d;
        padding: 0.5rem 1rem;
        z-index: 1001;
    }
    
    /* Ensure desktop nav is hidden on mobile */
    .desktop-nav {
        display: none !important;
    }
}

/* Debug helper - add this temporarily to see if the button exists */
.menu-toggle::before {
    content: '';
}

/* Force mobile menu to work */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0 !important;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

body.mobile-menu-open {
    overflow: hidden !important;
}

/* Mobile dropdown styles */
.mobile-dropdown-toggle {
    position: absolute;
    right: 0;
    top: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    z-index: 10;
}

.mobile-nav .sub-menu {
    display: none;
    padding-left: 15px;
}

.mobile-nav .sub-menu.active {
    display: block !important;
}

/* Debug helper - remove after fixing */
.menu-toggle {
    background: red !important; /* Temporary - to see if button is there */
    color: white !important;
}

/* Force mobile menu to work despite jQuery errors */
.mobile-nav {
    position: fixed !important;
    top: 0 !important;
    right: -300px !important;
    width: 300px !important;
    height: 100% !important;
    background: white !important;
    z-index: 10000 !important;
    transition: right 0.3s ease !important;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1) !important;
    overflow-y: auto !important;
    display: block !important;
}

.mobile-nav.active {
    right: 0 !important;
}

.overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.5) !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

body.mobile-menu-open {
    overflow: hidden !important;
}

.menu-toggle {
    display: none !important;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
        background: none !important;
        border: none !important;
        font-size: 1.8rem !important;
        cursor: pointer !important;
        color: #1a365d !important;
        padding: 0.5rem 1rem !important;
        z-index: 10001 !important;
    }
    
    .desktop-nav {
        display: none !important;
    }
}

/* Dropdown styles */
.mobile-dropdown-toggle {
    position: absolute !important;
    right: 0 !important;
    top: 5px !important;
    width: 40px !important;
    height: 40px !important;
    background: transparent !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    z-index: 10 !important;
}

.mobile-nav .sub-menu {
    display: none !important;
    padding-left: 15px !important;
}

.mobile-nav .sub-menu.active {
    display: block !important;
}

.mobile-nav .menu-item-has-children > a {
    padding-right: 45px !important;
}

/* ===== Enhanced About Page Styles ===== */
.about-page .about-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-page .about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M10 50 L90 50 M50 10 L50 90" stroke="white" stroke-width="1"/><circle cx="50" cy="50" r="20" fill="none" stroke="white" stroke-width="1"/></svg>') repeat;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-page .about-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInDown 0.8s ease;
}

.about-page .about-hero .subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.8;
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Our Story Section */
.about-page .our-story {
    padding: 100px 0;
    background: white;
    position: relative;
}

.about-page .our-story .container {
    position: relative;
    z-index: 2;
}

.about-page .our-story h2 {
    color: #1a365d;
    font-size: 2.8rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.about-page .our-story h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

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

.about-page .story-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 25px;
}

.about-page .story-content p:first-child {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2d3748;
    border-left: 4px solid #2b6cb0;
    padding-left: 25px;
}

.about-page blockquote {
    border-left: 4px solid #38a169;
    padding: 30px 40px;
    margin: 40px 0;
    font-style: italic;
    color: #2d3748;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0 20px 20px 0;
    position: relative;
    font-size: 1.3rem;
    line-height: 1.8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-page blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(43, 108, 176, 0.1);
    font-family: Georgia, serif;
}

/* Vision & Mission Section */
.about-page .vision-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.about-page .vision-mission .grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-page .vision,
.about-page .mission {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(43, 108, 176, 0.1);
}

.about-page .vision:hover,
.about-page .mission:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(26, 54, 93, 0.15);
    border-color: #2b6cb0;
}

.about-page .vision::before,
.about-page .mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
}

.about-page .vision h2,
.about-page .mission h2 {
    color: #1a365d;
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-page .vision p,
.about-page .mission p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
}

/* Core Values Section */
.about-page .core-values {
    padding: 100px 0;
    background: white;
}

.about-page .core-values h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.8rem;
    margin-bottom: 60px;
    position: relative;
}

.about-page .core-values h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.about-page .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-page .value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.about-page .value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.about-page .value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #2b6cb0, #38a169);
    transition: height 0.3s ease;
}

.about-page .value-item:hover::before {
    height: 100%;
}

.about-page .value-item h3 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.about-page .value-item:hover h3 {
    padding-left: 15px;
    color: #2b6cb0;
}

.about-page .value-item p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* How We Work Section */
.about-page .our-approach {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-page .our-approach h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.8rem;
    margin-bottom: 30px;
    position: relative;
}

.about-page .our-approach h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.about-page .approach-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #2b6cb0;
    max-width: 800px;
    margin: 0 auto 50px;
    font-weight: 500;
    background: white;
    padding: 25px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(43, 108, 176, 0.2);
}

.about-page .approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-page .approach-step {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    counter-increment: step-counter;
}

.about-page .approach-step::before {
    content: counter(step-counter, decimal-leading-zero);
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(43, 108, 176, 0.1);
    line-height: 1;
    transition: all 0.3s ease;
}

.about-page .approach-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.about-page .approach-step:hover::before {
    color: rgba(43, 108, 176, 0.2);
    transform: scale(1.1);
}

.about-page .approach-step h3 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 15px;
}

.about-page .approach-step h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.about-page .approach-step:hover h3:after {
    width: 80px;
}

.about-page .approach-step p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ===== Enhanced How We Work Section ===== */
.our-approach {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.our-approach::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(43, 108, 176, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.our-approach h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.8rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.our-approach h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.approach-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 500;
    position: relative;
    z-index: 2;
    line-height: 1.8;
    padding: 0 20px;
}

/* Approach Principle Statement - STYLED */
.approach-principle {
    max-width: 900px;
    margin: 40px auto 60px;
    padding: 40px;
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-principle:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(26, 54, 93, 0.4);
}

.approach-principle::before {
    content: '✦';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
}

.approach-principle::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.principle-statement {
    font-size: 1.5rem;
    color: white;
    font-weight: 500;
    margin: 0;
    text-align: center;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.principle-statement strong {
    color: #ffd700;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 15px;
    border-radius: 50px;
    margin: 0 5px;
    display: inline-block;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.approach-step {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    counter-increment: step-counter;
    overflow: hidden;
}

.approach-step::before {
    content: counter(step-counter, decimal-leading-zero);
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(43, 108, 176, 0.05);
    line-height: 1;
    transition: all 0.4s ease;
    font-family: 'Arial Black', sans-serif;
}

.approach-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, #2b6cb0, #38a169);
    transition: height 0.4s ease;
}

.approach-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(43, 108, 176, 0.15);
    border-color: transparent;
}

.approach-step:hover::after {
    height: 100%;
}

.approach-step:hover::before {
    color: rgba(43, 108, 176, 0.15);
    transform: scale(1.1) rotate(-5deg);
}

.approach-step h3 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
    transition: color 0.3s ease;
}

.approach-step:hover h3 {
    color: #2b6cb0;
}

.approach-step h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.approach-step:hover h3:after {
    width: 100px;
}

.approach-step p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

/* ===== Enhanced Why Work With Us Section ===== */
.why-work-with-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.why-work-with-us::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2b6cb0, #38a169, #2b6cb0, transparent);
}

.why-work-with-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.02"><path d="M10 10 L90 10 L90 90 L10 90 Z" fill="none" stroke="%232b6cb0" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="none" stroke="%2338a169" stroke-width="2"/></svg>') repeat;
    pointer-events: none;
}

.why-work-with-us h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.8rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.why-work-with-us h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.why-item {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.why-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 50px rgba(43, 108, 176, 0.15);
    border-color: transparent;
}

.why-item:hover::before {
    transform: translateX(0);
}

.why-item::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 8rem;
    color: rgba(43, 108, 176, 0.03);
    font-family: Georgia, serif;
    line-height: 1;
}

.why-item h3 {
    color: #2b6cb0;
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    transition: color 0.3s ease;
}

.why-item:hover h3 {
    color: #1a365d;
}

.why-item h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.why-item:hover h3:after {
    width: 100px;
}

.why-item p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Contact Block */
.why-contact {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 50px;
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 50px rgba(26, 54, 93, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.why-contact::before {
    content: '✉️';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.why-contact::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-contact p {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.why-contact p:first-of-type::before {
    content: '📧';
    font-size: 1.4rem;
}

.why-contact p:nth-of-type(2)::before {
    content: '📞';
    font-size: 1.4rem;
}

.why-contact p:nth-of-type(3)::before {
    content: '📍';
    font-size: 1.4rem;
}

.why-contact p:last-child {
    margin-top: 30px;
    font-style: italic;
    opacity: 0.9;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Add icons to Why Work With Us items */
.why-item:nth-child(1) h3:before {
    content: '🎯';
    margin-right: 10px;
    font-size: 1.8rem;
    vertical-align: middle;
}

.why-item:nth-child(2) h3:before {
    content: '🔬';
    margin-right: 10px;
    font-size: 1.8rem;
    vertical-align: middle;
}

.why-item:nth-child(3) h3:before {
    content: '🌍';
    margin-right: 10px;
    font-size: 1.8rem;
    vertical-align: middle;
}

.why-item:nth-child(4) h3:before {
    content: '🤝';
    margin-right: 10px;
    font-size: 1.8rem;
    vertical-align: middle;
}

.why-item:nth-child(5) h3:before {
    content: '🧩';
    margin-right: 10px;
    font-size: 1.8rem;
    vertical-align: middle;
}

.why-item:nth-child(6) h3:before {
    content: '⚖️';
    margin-right: 10px;
    font-size: 1.8rem;
    vertical-align: middle;
}

.why-item:nth-child(7) h3:before {
    content: '📝';
    margin-right: 10px;
    font-size: 1.8rem;
    vertical-align: middle;
}

.why-item:nth-child(8) h3:before {
    content: '📈';
    margin-right: 10px;
    font-size: 1.8rem;
    vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 992px) {
    .approach-principle {
        padding: 30px;
    }
    
    .principle-statement {
        font-size: 1.3rem;
    }
    
    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .our-approach,
    .why-work-with-us {
        padding: 60px 0;
    }
    
    .our-approach h2,
    .why-work-with-us h2 {
        font-size: 2.2rem;
    }
    
    .approach-intro {
        font-size: 1.1rem;
    }
    
    .approach-principle {
        padding: 25px;
        margin: 30px auto 40px;
    }
    
    .principle-statement {
        font-size: 1.2rem;
    }
    
    .principle-statement strong {
        display: inline-block;
        margin: 5px 2px;
        padding: 3px 10px;
        font-size: 1rem;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
    }
    
    .approach-step {
        padding: 30px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-item {
        padding: 30px;
    }
    
    .why-contact {
        padding: 40px 25px;
    }
    
    .why-contact p {
        font-size: 1rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .principle-statement {
        font-size: 1.1rem;
    }
    
    .principle-statement strong {
        font-size: 0.9rem;
        padding: 2px 8px;
    }
    
    .why-item h3 {
        font-size: 1.3rem;
    }
    
    .why-item h3:before {
        font-size: 1.5rem;
    }
}

/* ===== About Page Connect Section ===== */
.about-connect {
    max-width: 1100px;
    margin: 80px auto 0;
    padding: 60px 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(26, 54, 93, 0.15);
    border: 1px solid rgba(43, 108, 176, 0.1);
}

.about-connect::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(43, 108, 176, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.about-connect::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 161, 105, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.connect-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2b6cb0 0%, #38a169 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(43, 108, 176, 0.3);
}

.connect-header h3 {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.connect-tagline {
    color: #4a5568;
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Connect Grid */
.connect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

.connect-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.connect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.connect-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(43, 108, 176, 0.2);
    border-color: transparent;
}

.connect-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.connect-card:hover .card-icon {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, #2b6cb0 0%, #38a169 100%);
    color: white;
}

.connect-card h4 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.connect-link {
    display: block;
    color: #2b6cb0;
    font-size: 1.1rem;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 500;
    word-break: break-all;
    transition: color 0.3s ease;
}

.connect-link:hover {
    color: #38a169;
    text-decoration: underline;
}

.connect-phone {
    display: block;
    color: #4a5568;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.main-phone {
    color: #2b6cb0;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.connect-phone:hover {
    color: #38a169;
}

.connect-note {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

.connect-availability {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 10px;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
}

/* Footer CTA */
.connect-footer {
    text-align: center;
    position: relative;
    z-index: 5;
    padding-top: 30px;
    border-top: 2px solid rgba(43, 108, 176, 0.1);
}

.connect-footer p {
    color: #4a5568;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.connect-footer .btn-large {
    padding: 16px 50px;
    font-size: 1.2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #1a365d, #2b6cb0);
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 20px 30px rgba(26, 54, 93, 0.3);
}

.connect-footer .btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 40px rgba(26, 54, 93, 0.4);
    background: linear-gradient(135deg, #2b6cb0, #38a169);
    gap: 20px;
}

.btn-arrow {
    transition: transform 0.3s ease;
    font-size: 1.3rem;
}

.connect-footer .btn-large:hover .btn-arrow {
    transform: translateX(10px);
}

/* Weather Widget (from your screenshot) */
.weather-widget {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(43, 108, 176, 0.1);
    color: #718096;
    font-size: 0.95rem;
}

.weather-widget strong {
    color: #2b6cb0;
    font-size: 1.2rem;
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .connect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .connect-header h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-connect {
        padding: 40px 25px;
        margin: 60px auto 0;
        border-radius: 30px;
    }
    
    .connect-header h3 {
        font-size: 1.8rem;
    }
    
    .connect-tagline {
        font-size: 1.1rem;
    }
    
    .connect-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .connect-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        font-size: 2.5rem;
        padding: 15px;
    }
    
    .connect-card h4 {
        font-size: 1.3rem;
    }
    
    .connect-footer p {
        font-size: 1.1rem;
    }
    
    .connect-footer .btn-large {
        padding: 14px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-connect {
        padding: 30px 20px;
    }
    
    .connect-header h3 {
        font-size: 1.5rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .connect-phone {
        font-size: 1rem;
    }
    
    .main-phone {
        font-size: 1.1rem;
    }
}

/* ===== Enhanced Services Page Styles ===== */
.services-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="none" stroke="white" stroke-width="2"/><line x1="10" y1="50" x2="90" y2="50" stroke="white" stroke-width="2"/><line x1="50" y1="10" x2="50" y2="90" stroke="white" stroke-width="2"/></svg>') repeat;
    animation: pulse 4s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.services-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInDown 0.8s ease;
}

.services-hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s both;
    font-weight: 500;
}

.services-hero .hero-description {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.8;
    position: relative;
    animation: fadeInUp 0.8s ease 0.4s both;
    background: rgba(255,255,255,0.1);
    padding: 25px 40px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

/* Services Grid Section */
.services-grid-section {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.service-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(26, 54, 93, 0.15);
    border-color: transparent;
}

.service-item:hover::before {
    transform: translateX(0);
}

.service-item.full-width {
    grid-column: 1 / -1;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #2b6cb0 0%, #38a169 100%);
    color: white;
}

.service-item h2 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-item:hover h2 {
    color: #2b6cb0;
}

.service-item > p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.service-details {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.service-item:hover .service-details {
    border-top-color: #2b6cb0;
}

.service-details h4 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.service-details li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #4a5568;
    transition: all 0.3s ease;
}

.service-details li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-details li:hover {
    transform: translateX(5px);
    color: #1a365d;
}

.service-details li:hover:before {
    transform: translateX(3px);
    color: #38a169;
}

.service-note {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    color: #2b6cb0;
    font-style: italic;
    margin-top: 20px;
    border-left: 4px solid #2b6cb0;
}

/* Custom Grid for Solutions */
.custom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.custom-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.custom-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.custom-item h5 {
    color: #1a365d;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.custom-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Research Process Section */
.research-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.research-process h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.8rem;
    margin-bottom: 30px;
    position: relative;
}

.research-process h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.process-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(43, 108, 176, 0.2);
    border-color: #2b6cb0;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(43, 108, 176, 0.1);
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    color: rgba(43, 108, 176, 0.2);
    transform: scale(1.1);
}

.process-step h3 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 15px;
}

.process-step h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.process-step:hover h3:after {
    width: 80px;
}

.process-step p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* Why Services Section */
.why-services {
    padding: 100px 0;
    background: white;
}

.why-services h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.8rem;
    margin-bottom: 60px;
    position: relative;
}

.why-services h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.reason-item {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.reason-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(43, 108, 176, 0.15);
    background: white;
    border-color: transparent;
}

.reason-item:hover::before {
    transform: scaleX(1);
}

.reason-item h3 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.reason-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Geographic Reach */
.geographic-reach {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px;
    border-radius: 20px;
    margin-top: 50px;
    border: 1px solid #e2e8f0;
}

.geographic-reach h3 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.geographic-reach p {
    color: #4a5568;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
}

.reach-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    padding-left: 0;
}

.reach-list li {
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    color: #2b6cb0;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 3px solid #2b6cb0;
}

.reach-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(43, 108, 176, 0.15);
}

.reach-note {
    margin-top: 30px;
    font-style: italic;
    color: #4a5568;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
}

/* Services CTA */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><polygon points="0,0 100,0 50,100" fill="white"/></svg>') repeat;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}

.services-cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 30px;
    position: relative;
}

.services-cta .cta-text {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.8;
    position: relative;
}

.services-cta .btn {
    position: relative;
    padding: 15px 50px;
    font-size: 1.2rem;
    background: white;
    color: #1a365d;
    border: none;
    transition: all 0.3s ease;
}

.services-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: #38a169;
    color: white;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-page .about-hero h1,
    .services-hero h1 {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-page .about-hero,
    .services-hero {
        padding: 80px 0 60px;
    }
    
    .about-page .about-hero h1,
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-page .about-hero .subtitle,
    .services-hero .subtitle {
        font-size: 1.2rem;
    }
    
    .services-hero .hero-description {
        font-size: 1rem;
        padding: 20px;
        border-radius: 20px;
    }
    
    .about-page .vision-mission .grid-two {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-page .values-grid,
    .about-page .approach-steps,
    .services-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        padding: 30px;
    }
    
    .service-item.full-width {
        grid-column: auto;
    }
    
    .custom-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .geographic-reach {
        padding: 30px;
    }
    
    .reach-list {
        grid-template-columns: 1fr;
    }
    
    .services-cta h2 {
        font-size: 2.2rem;
    }
    
    .services-cta .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-page .about-hero h1,
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .service-item h2 {
        font-size: 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
}

/* ===== Development Approach Section ===== */
.development-approach {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.development-approach::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(43, 108, 176, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.development-approach h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.development-approach h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.development-approach .approach-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 50px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.approach-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.approach-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #2b6cb0, #38a169);
    transition: height 0.4s ease;
}

.approach-item:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(43, 108, 176, 0.15);
    border-color: transparent;
}

.approach-item:hover::before {
    height: 100%;
}

.approach-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.approach-item:hover .approach-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #2b6cb0 0%, #38a169 100%);
    color: white;
}

.approach-item h3 {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.approach-item:hover h3 {
    color: #1a365d;
}

.approach-note {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 4px solid #2b6cb0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.approach-note p {
    color: #2b6cb0;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
    text-align: center;
}

/* ===== Why Development Partners Section ===== */
.development-partners {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    position: relative;
    overflow: hidden;
}

.development-partners::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="none" stroke="white" stroke-width="2"/><path d="M50 10 L50 90 M10 50 L90 50" stroke="white" stroke-width="2"/></svg>') repeat;
    animation: rotate 60s linear infinite;
}

.development-partners h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.development-partners h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #38a169);
    border-radius: 2px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.partner-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #38a169);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

.partner-card:hover::before {
    transform: translateY(0);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.partner-card:hover .card-icon {
    transform: scale(1.1) rotate(360deg);
    background: rgba(255, 255, 255, 0.25);
}

.partner-card h3 {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.partners-statement {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    text-align: center;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partners-statement p {
    color: white;
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .development-approach,
    .development-partners {
        padding: 60px 0;
    }
    
    .development-approach h2,
    .development-partners h2 {
        font-size: 2rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-item {
        padding: 25px;
    }
    
    .approach-icon {
        font-size: 2rem;
        min-width: 50px;
        height: 50px;
    }
    
    .approach-item h3 {
        font-size: 1rem;
    }
    
    .approach-note p {
        font-size: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-card {
        padding: 30px;
    }
    
    .card-icon {
        font-size: 2.5rem;
        padding: 15px;
    }
    
    .partner-card h3 {
        font-size: 1.1rem;
    }
    
    .partners-statement {
        padding: 30px;
    }
    
    .partners-statement p {
        font-size: 1.1rem;
    }
}

/* ===== Insights Page Styles ===== */
.insights-hero {
    background: linear-gradient(135deg, #234e52 0%, #285e61 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.publications-section,
.case-studies-section,
.thought-leadership-section,
.news-events-section {
    padding: 80px 0;
}

.publications-section,
.thought-leadership-section {
    background: #f8f9fa;
}

.publications-grid,
.case-studies-grid,
.thought-leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.publication-item,
.case-study-item,
.thought-item {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
}

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

.news-events-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.news-item {
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item .meta {
    color: #718096;
    font-size: 0.9rem;
    margin: 5px 0 15px;
}

.insights-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
    color: white;
}

/* ===== Contact Page Styles ===== */
/* ===== Contact Hero Section ===== */
.contact-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="none" stroke="white" stroke-width="2"/><path d="M20 20 L80 80 M80 20 L20 80" stroke="white" stroke-width="2"/><path d="M50 10 L50 90 M10 50 L90 50" stroke="white" stroke-width="2"/></svg>') repeat;
    animation: rotate 40s linear infinite;
}

.contact-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInDown 0.8s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-hero .subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s both;
    font-weight: 400;
}

.contact-container {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.contact-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    color: #2b6cb0;
    margin-bottom: 10px;
}

.work-with-us,
.newsletter-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #2b6cb0;
}

.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-intro {
    margin-bottom: 30px;
    color: #718096;
}

.gsra-contact-form .form-group {
    margin-bottom: 25px;
}

.gsra-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
}

.gsra-contact-form input,
.gsra-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
}

.gsra-contact-form textarea {
    resize: vertical;
}

/* ===== Archive Templates ===== */
.insight-archive-item,
.publication-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.insight-category {
    display: inline-block;
    background: #2b6cb0;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.insight-meta,
.publication-meta {
    color: #718096;
    font-size: 0.9rem;
    margin: 10px 0;
}

.publication-type .type-label {
    display: inline-block;
    background: #38a169;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.publication-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.publication-topics {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.topic-tag {
    display: inline-block;
    background: #e2e8f0;
    padding: 3px 10px;
    border-radius: 4px;
    margin: 0 5px 5px 0;
    font-size: 0.85rem;
}

/* ===== Proposal Boilerplate Page Styles ===== */
/* ===== Proposal Hero Section ===== */
.proposal-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.proposal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><rect x="10" y="10" width="80" height="80" fill="none" stroke="white" stroke-width="2"/><rect x="20" y="20" width="60" height="60" fill="none" stroke="white" stroke-width="2"/><rect x="30" y="30" width="40" height="40" fill="none" stroke="white" stroke-width="2"/><line x1="10" y1="10" x2="90" y2="90" stroke="white" stroke-width="2"/><line x1="90" y1="10" x2="10" y2="90" stroke="white" stroke-width="2"/></svg>') repeat;
    animation: rotate 50s linear infinite;
}

.proposal-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInDown 0.8s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.proposal-hero .subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
    opacity: 0.95;
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s both;
    font-weight: 400;
}

.proposal-hero .hero-description {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.8;
    position: relative;
    animation: fadeInUp 0.8s ease 0.4s both;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 40px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== Download Section Styling ===== */
.proposal-download {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.proposal-download::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2b6cb0, #38a169, #2b6cb0, transparent);
}

.proposal-download h2 {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.proposal-download h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.proposal-download p {
    color: #4a5568;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.download-buttons .btn {
    min-width: 200px;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-buttons .btn::before {
    content: '📥';
    margin-right: 10px;
    font-size: 1.2rem;
}

.download-buttons .btn-primary {
    background: #2b6cb0;
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(43, 108, 176, 0.3);
}

.download-buttons .btn-primary:hover {
    background: #1a365d;
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(26, 54, 93, 0.4);
}

.download-buttons .btn-secondary {
    background: #38a169;
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(56, 161, 105, 0.3);
}

.download-buttons .btn-secondary:hover {
    background: #2f855a;
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(47, 133, 90, 0.4);
}

.download-note {
    color: #718096;
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #e2e8f0;
}

/* ===== Proposal CTA Section ===== */
.proposal-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.proposal-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><polygon points="0,0 100,0 50,100" fill="white"/></svg>') repeat;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}

.proposal-cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.proposal-cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.8;
    position: relative;
}

.proposal-cta .btn-large {
    padding: 18px 50px;
    font-size: 1.2rem;
    border-radius: 50px;
    background: white;
    color: #1a365d;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.proposal-cta .btn-large::before {
    content: '📄';
    margin-right: 10px;
    font-size: 1.3rem;
}

.proposal-cta .btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
    background: #38a169;
    color: white;
}

/* ===== Animation Keyframes ===== */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .proposal-hero h1,
    .contact-hero h1 {
        font-size: 2.8rem;
    }
    
    .proposal-hero .hero-description {
        font-size: 1.1rem;
        padding: 20px 30px;
    }
}

@media (max-width: 768px) {
    .proposal-hero,
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .proposal-hero h1,
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .proposal-hero .subtitle,
    .contact-hero .subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .proposal-hero .hero-description {
        font-size: 1rem;
        padding: 20px;
        border-radius: 20px;
        margin: 0 20px;
    }
    
    .proposal-download {
        padding: 60px 0;
    }
    
    .proposal-download h2 {
        font-size: 2rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .download-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .proposal-cta {
        padding: 60px 0;
    }
    
    .proposal-cta h2 {
        font-size: 2rem;
    }
    
    .proposal-cta p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .proposal-cta .btn-large {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .proposal-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .proposal-hero .hero-description {
        padding: 15px;
    }
    
    .download-buttons .btn {
        font-size: 1rem;
    }
}
.proposal-section {
    padding: 80px 0;
}

.proposal-section.alt-bg {
    background: #f8f9fa;
}

.proposal-section h2 {
    color: #1a365d;
    margin-bottom: 30px;
    font-size: 2rem;
    border-bottom: 3px solid #2b6cb0;
    padding-bottom: 15px;
}

.section-intro {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
    font-style: italic;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.principle-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.principle-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.principle-item h3 {
    color: #2b6cb0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.methodology-phases {
    display: grid;
    gap: 40px;
}

.phase-item {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-left: 4px solid #2b6cb0;
}

.phase-item h3 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.phase-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.phase-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.phase-list li:before {
    content: "✓";
    color: #38a169;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.phase-list.columns-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
}

.phase-note {
    background: #ebf8ff;
    padding: 15px;
    border-radius: 6px;
    color: #2c5282;
    margin-top: 20px;
    font-style: italic;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
}

.feature-list li:before {
    content: "→";
    color: #2b6cb0;
    position: absolute;
    left: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-list.highlight li {
    background: #f0fff4;
    margin-bottom: 10px;
    border-radius: 6px;
    padding: 15px 15px 15px 45px;
}

.feature-list.highlight li:before {
    left: 20px;
    color: #38a169;
}

.considerations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.consideration-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.consideration-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.consideration-item h3 {
    color: #2d3748;
    font-size: 1rem;
    line-height: 1.4;
}

.capacity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.capacity-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.capacity-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.capacity-item h3 {
    color: #2b6cb0;
    font-size: 1.1rem;
}

.commitment-box {
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
}

.proposal-download {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.proposal-download h2 {
    color: #1a365d;
    margin-bottom: 20px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.download-note {
    color: #718096;
    font-style: italic;
}

.proposal-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    text-align: center;
}

.proposal-cta h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.proposal-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .proposal-hero {
        padding: 60px 0 40px;
    }
    
    .proposal-hero h1 {
        font-size: 2.2rem;
    }
    
    .proposal-section {
        padding: 40px 0;
    }
    
    .phase-list.columns-2 {
        grid-template-columns: 1fr;
    }
    
    .phase-item {
        padding: 25px;
    }
    
    .principles-grid,
    .considerations-grid,
    .capacity-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .commitment-box {
        padding: 25px;
        font-size: 1rem;
    }
}

/* ===== Team Page Styles ===== */
.team-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.team-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.team-hero .subtitle {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

.executive-leadership,
.network-expertise {
    padding: 80px 0;
}

.executive-leadership {
    background: #f8f9fa;
}

.executive-leadership h2,
.network-expertise h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #4a5568;
    font-size: 1.2rem;
    line-height: 1.8;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    color: #1a365d;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.member-title {
    color: #2b6cb0;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    color: #4a5568;
    line-height: 1.6;
}

.expertise-grid {
    display: grid;
    gap: 50px;
    margin-top: 40px;
}

.expert-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.expert-item:hover {
    transform: translateX(10px);
}

.expert-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-info h3 {
    color: #1a365d;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.expert-title {
    color: #2b6cb0;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.expert-bio p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.leadership-philosophy {
    padding: 60px 0;
    background: linear-gradient(135deg, #2b6cb0 0%, #1a365d 100%);
    color: white;
}

.philosophy-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.team-cta {
    padding: 80px 0;
    text-align: center;
    background: #f8f9fa;
}

.team-cta h2 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.team-cta p {
    color: #4a5568;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* Advisory Board & Ethical Review Board */
.advisory-board,
.ethical-review-board {
    padding: 80px 0;
}

.advisory-board {
    background: #f8f9fa;
}

.ethical-review-board {
    background: white;
}

.board-intro {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin: 40px 0;
    border-left: 4px solid #2b6cb0;
}

.board-benefits {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.board-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.board-benefits li:before {
    content: "✓";
    color: #38a169;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.board-note {
    font-style: italic;
    color: #4a5568;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.board-grid {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.board-member {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.board-member:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.board-member .member-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #2b6cb0;
}

.board-member .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board-member .member-info {
    padding: 0;
}

.board-member .member-title {
    color: #2b6cb0;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.board-note-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px;
    text-align: center;
    border-radius: 8px;
    border: 2px dashed #2b6cb0;
    font-size: 1.2rem;
    color: #2d3748;
}

/* ===== Enhanced About Page Styles ===== */
.about-page .about-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-page .about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M10 50 L90 50 M50 10 L50 90" stroke="white" stroke-width="1"/><circle cx="50" cy="50" r="20" fill="none" stroke="white" stroke-width="1"/></svg>') repeat;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-page .about-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInDown 0.8s ease;
}

.about-page .about-hero .subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.8;
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Our Story Section */
.about-page .our-story {
    padding: 100px 0;
    background: white;
    position: relative;
}

.about-page .our-story .container {
    position: relative;
    z-index: 2;
}

.about-page .our-story h2 {
    color: #1a365d;
    font-size: 2.8rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.about-page .our-story h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

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

.about-page .story-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 25px;
}

.about-page .story-content p:first-child {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2d3748;
    border-left: 4px solid #2b6cb0;
    padding-left: 25px;
}

.about-page blockquote {
    border-left: 4px solid #38a169;
    padding: 30px 40px;
    margin: 40px 0;
    font-style: italic;
    color: #2d3748;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0 20px 20px 0;
    position: relative;
    font-size: 1.3rem;
    line-height: 1.8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-page blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(43, 108, 176, 0.1);
    font-family: Georgia, serif;
}

/* Vision & Mission Section */
.about-page .vision-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.about-page .vision-mission .grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-page .vision,
.about-page .mission {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(43, 108, 176, 0.1);
}

.about-page .vision:hover,
.about-page .mission:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(26, 54, 93, 0.15);
    border-color: #2b6cb0;
}

.about-page .vision::before,
.about-page .mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
}

.about-page .vision h2,
.about-page .mission h2 {
    color: #1a365d;
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-page .vision p,
.about-page .mission p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
}

/* Core Values Section */
.about-page .core-values {
    padding: 100px 0;
    background: white;
}

.about-page .core-values h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.8rem;
    margin-bottom: 60px;
    position: relative;
}

.about-page .core-values h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.about-page .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-page .value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.about-page .value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.about-page .value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #2b6cb0, #38a169);
    transition: height 0.3s ease;
}

.about-page .value-item:hover::before {
    height: 100%;
}

.about-page .value-item h3 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.about-page .value-item:hover h3 {
    padding-left: 15px;
    color: #2b6cb0;
}

.about-page .value-item p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* How We Work Section */
.about-page .our-approach {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-page .our-approach h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.8rem;
    margin-bottom: 30px;
    position: relative;
}

.about-page .our-approach h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.about-page .approach-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #2b6cb0;
    max-width: 800px;
    margin: 0 auto 50px;
    font-weight: 500;
    background: white;
    padding: 25px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(43, 108, 176, 0.2);
}

.about-page .approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-page .approach-step {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    counter-increment: step-counter;
}

.about-page .approach-step::before {
    content: counter(step-counter, decimal-leading-zero);
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(43, 108, 176, 0.1);
    line-height: 1;
    transition: all 0.3s ease;
}

.about-page .approach-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.about-page .approach-step:hover::before {
    color: rgba(43, 108, 176, 0.2);
    transform: scale(1.1);
}

.about-page .approach-step h3 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 15px;
}

.about-page .approach-step h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.about-page .approach-step:hover h3:after {
    width: 80px;
}

.about-page .approach-step p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ===== Enhanced Services Page Styles ===== */
.services-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="none" stroke="white" stroke-width="2"/><line x1="10" y1="50" x2="90" y2="50" stroke="white" stroke-width="2"/><line x1="50" y1="10" x2="50" y2="90" stroke="white" stroke-width="2"/></svg>') repeat;
    animation: pulse 4s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.services-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInDown 0.8s ease;
}

.services-hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s both;
    font-weight: 500;
}

.services-hero .hero-description {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.8;
    position: relative;
    animation: fadeInUp 0.8s ease 0.4s both;
    background: rgba(255,255,255,0.1);
    padding: 25px 40px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

/* Services Grid Section */
.services-grid-section {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.service-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(26, 54, 93, 0.15);
    border-color: transparent;
}

.service-item:hover::before {
    transform: translateX(0);
}

.service-item.full-width {
    grid-column: 1 / -1;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #2b6cb0 0%, #38a169 100%);
    color: white;
}

.service-item h2 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-item:hover h2 {
    color: #2b6cb0;
}

.service-item > p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.service-details {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.service-item:hover .service-details {
    border-top-color: #2b6cb0;
}

.service-details h4 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.service-details li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #4a5568;
    transition: all 0.3s ease;
}

.service-details li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-details li:hover {
    transform: translateX(5px);
    color: #1a365d;
}

.service-details li:hover:before {
    transform: translateX(3px);
    color: #38a169;
}

.service-note {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    color: #2b6cb0;
    font-style: italic;
    margin-top: 20px;
    border-left: 4px solid #2b6cb0;
}

/* Custom Grid for Solutions */
.custom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.custom-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.custom-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.custom-item h5 {
    color: #1a365d;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.custom-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Research Process Section */
.research-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.research-process h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.8rem;
    margin-bottom: 30px;
    position: relative;
}

.research-process h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.process-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(43, 108, 176, 0.2);
    border-color: #2b6cb0;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(43, 108, 176, 0.1);
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    color: rgba(43, 108, 176, 0.2);
    transform: scale(1.1);
}

.process-step h3 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 15px;
}

.process-step h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.process-step:hover h3:after {
    width: 80px;
}

.process-step p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* Why Services Section */
.why-services {
    padding: 100px 0;
    background: white;
}

.why-services h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.8rem;
    margin-bottom: 60px;
    position: relative;
}

.why-services h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.reason-item {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.reason-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(43, 108, 176, 0.15);
    background: white;
    border-color: transparent;
}

.reason-item:hover::before {
    transform: scaleX(1);
}

.reason-item h3 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.reason-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Geographic Reach */
.geographic-reach {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px;
    border-radius: 20px;
    margin-top: 50px;
    border: 1px solid #e2e8f0;
}

.geographic-reach h3 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.geographic-reach p {
    color: #4a5568;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
}

.reach-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    padding-left: 0;
}

.reach-list li {
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    color: #2b6cb0;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 3px solid #2b6cb0;
}

.reach-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(43, 108, 176, 0.15);
}

.reach-note {
    margin-top: 30px;
    font-style: italic;
    color: #4a5568;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
}

/* Services CTA */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><polygon points="0,0 100,0 50,100" fill="white"/></svg>') repeat;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}

.services-cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 30px;
    position: relative;
}

.services-cta .cta-text {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.8;
    position: relative;
}

.services-cta .btn {
    position: relative;
    padding: 15px 50px;
    font-size: 1.2rem;
    background: white;
    color: #1a365d;
    border: none;
    transition: all 0.3s ease;
}

.services-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: #38a169;
    color: white;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-page .about-hero h1,
    .services-hero h1 {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-page .about-hero,
    .services-hero {
        padding: 80px 0 60px;
    }
    
    .about-page .about-hero h1,
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-page .about-hero .subtitle,
    .services-hero .subtitle {
        font-size: 1.2rem;
    }
    
    .services-hero .hero-description {
        font-size: 1rem;
        padding: 20px;
        border-radius: 20px;
    }
    
    .about-page .vision-mission .grid-two {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-page .values-grid,
    .about-page .approach-steps,
    .services-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        padding: 30px;
    }
    
    .service-item.full-width {
        grid-column: auto;
    }
    
    .custom-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .geographic-reach {
        padding: 30px;
    }
    
    .reach-list {
        grid-template-columns: 1fr;
    }
    
    .services-cta h2 {
        font-size: 2.2rem;
    }
    
    .services-cta .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-page .about-hero h1,
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .service-item h2 {
        font-size: 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
}

/* Responsive for new sections */
@media (max-width: 992px) {
    .board-member {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .board-member .member-image {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .advisory-board,
    .ethical-review-board {
        padding: 60px 0;
    }
    
    .board-intro {
        padding: 25px;
    }
    
    .board-note-card {
        padding: 40px 20px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .expert-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expert-image {
        height: 250px;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .team-hero {
        padding: 60px 0 40px;
    }
    
    .team-hero h1 {
        font-size: 2.2rem;
    }
    
    .executive-leadership,
    .network-expertise {
        padding: 60px 0;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-item {
        padding: 25px;
    }
    
    .expert-info h3 {
        font-size: 1.3rem;
    }
    
    .philosophy-box {
        font-size: 1.2rem;
    }
    
    .team-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== Guides & References Page Styles ===== */
.guides-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guides-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="white" stroke-width="2"/><path d="M30 30 L70 30 L70 70 L30 70 Z" fill="none" stroke="white" stroke-width="2"/><line x1="20" y1="20" x2="80" y2="80" stroke="white" stroke-width="2"/><line x1="80" y1="20" x2="20" y2="80" stroke="white" stroke-width="2"/></svg>') repeat;
    animation: rotate 40s linear infinite;
}

.guides-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInDown 0.8s ease;
}

.guides-hero .subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Quick Navigation */
.quick-nav {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 80px;
    z-index: 90;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #1a365d;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.quick-nav-item:hover {
    transform: translateY(-5px);
    background: #2b6cb0;
    color: white;
    border-color: #2b6cb0;
    box-shadow: 0 10px 25px rgba(43, 108, 176, 0.3);
}

.nav-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.nav-label {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.section-description {
    color: #4a5568;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* Newsroom Section */
.newsroom-section {
    padding: 80px 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.news-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.news-item.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.news-image {
    position: relative;
    height: 100%;
    min-height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #2b6cb0;
    color: white;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #718096;
    font-size: 0.9rem;
}

.news-category {
    background: #e2e8f0;
    padding: 3px 10px;
    border-radius: 4px;
    color: #2d3748;
    font-weight: 500;
}

.news-item h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.post-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #718096;
    font-size: 0.9rem;
}

.post-author {
    font-weight: 600;
    color: #2b6cb0;
}

.post-content h3 {
    color: #1a365d;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-excerpt {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.post-tags .tag {
    background: #e2e8f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #2d3748;
    transition: all 0.3s ease;
}

.post-tags .tag:hover {
    background: #2b6cb0;
    color: white;
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background: white;
}

.events-grid {
    display: grid;
    gap: 25px;
}

.event-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 25px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.event-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
    background: white;
}

.event-item.upcoming {
    border-left: 4px solid #38a169;
}

.event-item.past {
    opacity: 0.8;
}

.event-date {
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.date-day {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 1rem;
    color: #2b6cb0;
    font-weight: 600;
    text-transform: uppercase;
}

.event-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #38a169;
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-badge.past {
    background: #718096;
}

.event-details h3 {
    color: #1a365d;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.event-description {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.event-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
    color: #718096;
    font-size: 0.9rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Publications Section */
.publications-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.publication-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.publication-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.publication-card.featured {
    border: 2px solid #2b6cb0;
    position: relative;
}

.publication-card.featured::before {
    content: '★';
    position: absolute;
    top: 15px;
    right: 15px;
    color: #2b6cb0;
    font-size: 1.5rem;
}

.publication-type {
    display: inline-block;
    padding: 5px 12px;
    background: #e2e8f0;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
    align-self: flex-start;
}

.publication-card h3 {
    color: #1a365d;
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.publication-authors {
    color: #2b6cb0;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
}

.publication-abstract {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.publication-meta {
    display: flex;
    justify-content: space-between;
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.publication-actions {
    display: flex;
    gap: 10px;
}

/* eBooks Section */
.ebooks-section {
    padding: 80px 0;
    background: white;
}

.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.ebook-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ebook-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.ebook-cover {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ebook-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ebook-card:hover .ebook-cover img {
    transform: scale(1.05);
}

.ebook-cover::after {
    content: '📖';
    position: absolute;
    font-size: 3rem;
    opacity: 0.2;
    color: white;
}

.ebook-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ebook-content h3 {
    color: #1a365d;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.ebook-description {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    font-size: 0.95rem;
}

.ebook-meta {
    display: flex;
    justify-content: space-between;
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.partners-grid {
    display: grid;
    gap: 50px;
}

.partner-category {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.partner-category h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.partner-category h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
    background: white;
}

.partner-item img {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

.partner-item p {
    color: #2d3748;
    font-weight: 500;
    font-size: 0.9rem;
}

.partner-cta {
    text-align: center;
    margin-top: 50px;
    padding: 50px;
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    border-radius: 15px;
    color: white;
}

.partner-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.partner-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partner-cta .btn {
    background: white;
    color: #1a365d;
}

.partner-cta .btn:hover {
    background: #38a169;
    color: white;
}

/* Newsletter CTA */
.newsletter-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 30px;
    font-size: 1rem;
}

.privacy-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .guides-hero h1 {
        font-size: 2.8rem;
    }
    
    .news-item.featured {
        grid-template-columns: 1fr;
    }
    
    .quick-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .guides-hero {
        padding: 80px 0 60px;
    }
    
    .guides-hero h1 {
        font-size: 2.2rem;
    }
    
    .quick-nav {
        top: 60px;
        padding: 20px 0;
    }
    
    .quick-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .event-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .event-date {
        display: inline-block;
        padding: 10px 20px;
    }
    
    .date-day {
        font-size: 1.5rem;
        display: inline;
        margin-right: 5px;
    }
    
    .date-month {
        display: inline;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .publications-grid,
    .blog-grid,
    .ebooks-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .quick-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-logos {
        grid-template-columns: 1fr;
    }
    
    .publication-actions {
        flex-direction: column;
    }
    
    .publication-actions .btn {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== Careers Page Styles ===== */
.careers-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="none" stroke="white" stroke-width="2"/><path d="M50 10 L50 90 M10 50 L90 50" stroke="white" stroke-width="2"/></svg>') repeat;
    animation: rotate 40s linear infinite;
}

.careers-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInDown 0.8s ease;
}

.careers-hero .subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Why Work Here Section */
.why-work-here {
    padding: 80px 0;
    background: white;
}

.why-work-here h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.why-work-here h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(43, 108, 176, 0.15);
    background: white;
    border-color: #2b6cb0;
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.benefit-item h3 {
    color: #1a365d;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Join Our Team Section */
.join-our-team {
    padding: 80px 0;
    background: #f8f9fa;
}

.join-our-team h2,
.internships-section h2,
.consultant-network h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #4a5568;
    font-size: 1.2rem;
    line-height: 1.8;
}

.openings-list {
    max-width: 900px;
    margin: 0 auto;
}

.job-opening {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.job-opening:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.job-header {
    position: relative;
    margin-bottom: 25px;
    padding-right: 80px;
}

.job-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #38a169;
    color: white;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-header h3 {
    color: #1a365d;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.job-meta {
    display: flex;
    gap: 25px;
    color: #718096;
    font-size: 0.95rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-description h4 {
    color: #2b6cb0;
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.job-description h4:first-of-type {
    margin-top: 0;
}

.job-description ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.job-description li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    color: #4a5568;
}

.job-description li:before {
    content: "✓";
    color: #38a169;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.job-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.openings-footer {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.openings-footer p {
    color: #4a5568;
    font-size: 1.1rem;
}

.openings-footer a {
    color: #2b6cb0;
    font-weight: 600;
    text-decoration: none;
}

.openings-footer a:hover {
    text-decoration: underline;
}

/* Internships Section */
.internships-section {
    padding: 80px 0;
    background: white;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.opportunity-item {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.opportunity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
    background: white;
}

.opportunity-item.featured {
    border: 2px solid #2b6cb0;
    position: relative;
}

.opportunity-item.featured::before {
    content: '★ Featured';
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2b6cb0;
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.opportunity-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #2b6cb0;
    color: white;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    align-self: flex-start;
}

.opportunity-item h3 {
    color: #1a365d;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.opportunity-subtitle {
    color: #2b6cb0;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.opportunity-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.opportunity-details h4 {
    color: #1a365d;
    font-size: 1rem;
    margin: 20px 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opportunity-details h4:first-of-type {
    margin-top: 0;
}

.opportunity-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.opportunity-details li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #4a5568;
    font-size: 0.95rem;
}

.opportunity-details li:before {
    content: "•";
    color: #2b6cb0;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.opportunity-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 20px 0;
    padding: 15px;
    background: #e2e8f0;
    border-radius: 8px;
    color: #2d3748;
    font-size: 0.95rem;
}

.opportunity-meta i {
    color: #2b6cb0;
    width: 20px;
}

/* Consultant Network */
.consultant-network {
    padding: 80px 0;
    background: #f8f9fa;
}

.network-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 40px;
}

.network-benefits {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.network-benefits h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefit-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.benefit-text strong {
    display: block;
    color: #1a365d;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.benefit-text p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.network-registration {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.network-registration h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.network-registration p {
    color: #4a5568;
    margin-bottom: 30px;
}

.consultant-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b6cb0;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

.form-group select[multiple] {
    height: 120px;
    padding: 8px;
}

.form-group select[multiple] option {
    padding: 8px;
}

.form-group small {
    color: #718096;
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-group input[type="file"] {
    padding: 10px;
    background: #f8f9fa;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    color: #4a5568;
    font-size: 0.95rem;
}

.form-checkbox a {
    color: #2b6cb0;
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

/* Apply Guide */
.apply-guide {
    padding: 80px 0;
    background: white;
}

.apply-guide h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.guide-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.guide-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2b6cb0 0%, #38a169 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.guide-step h3 {
    color: #1a365d;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.guide-step p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Section */
.careers-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.careers-faq h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(43, 108, 176, 0.1);
    border-color: #2b6cb0;
}

.faq-item h3 {
    color: #1a365d;
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.faq-item h3:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #2b6cb0;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Careers Contact */
.careers-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    text-align: center;
}

.careers-contact h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.careers-contact p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.contact-options .btn-primary {
    background: white;
    color: #1a365d;
}

.contact-options .btn-primary:hover {
    background: #38a169;
    color: white;
}

.contact-options .btn-outline {
    border-color: white;
    color: white;
}

.contact-options .btn-outline:hover {
    background: white;
    color: #1a365d;
}

/* Responsive Design */
@media (max-width: 992px) {
    .careers-hero h1 {
        font-size: 2.8rem;
    }
    
    .network-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .careers-hero {
        padding: 80px 0 60px;
    }
    
    .careers-hero h1 {
        font-size: 2.2rem;
    }
    
    .job-header {
        padding-right: 0;
    }
    
    .job-badge {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .job-actions {
        flex-direction: column;
    }
    
    .job-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .guide-steps {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-options .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .benefits-grid,
    .opportunities-grid {
        grid-template-columns: 1fr;
    }
    
    .network-benefits,
    .network-registration {
        padding: 25px;
    }
}
/* ===== Inside GSRA Page Styles ===== */
.inside-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inside-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><rect x="10" y="10" width="80" height="80" fill="none" stroke="white" stroke-width="2"/><rect x="20" y="20" width="60" height="60" fill="none" stroke="white" stroke-width="2"/><rect x="30" y="30" width="40" height="40" fill="none" stroke="white" stroke-width="2"/><line x1="10" y1="10" x2="90" y2="90" stroke="white" stroke-width="2"/><line x1="90" y1="10" x2="10" y2="90" stroke="white" stroke-width="2"/></svg>') repeat;
    animation: rotate 50s linear infinite;
}

.inside-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInDown 0.8s ease;
}

.inside-hero .subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* ===== Enhanced Organogram Styles ===== */
.organogram {
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 30px;
    box-shadow: 0 30px 50px rgba(26, 54, 93, 0.15);
    border: 1px solid rgba(43, 108, 176, 0.2);
    position: relative;
    overflow: hidden;
}

.organogram::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(43, 108, 176, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.organogram::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56, 161, 105, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.organogram-title {
    text-align: center;
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.organogram-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

/* Org Levels */
.org-level {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    position: relative;
    flex-wrap: wrap;
}

.level-1 {
    margin-bottom: 10px;
}

.level-2 {
    gap: 50px;
}

.level-3 {
    gap: 40px;
}

.level-4 {
    gap: 40px;
}

/* Org Cards */
.org-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    min-width: 220px;
    max-width: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1 1 auto;
}

.org-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.org-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #38a169);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.org-card:hover::before {
    transform: scaleX(1);
}

.org-card-header {
    font-weight: 700;
    color: #1a365d;
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(43, 108, 176, 0.2);
}

.org-card-content {
    color: #4a5568;
    font-size: 0.9rem;
}

.org-tag {
    display: inline-block;
    background: #e6f0ff;
    color: #2b6cb0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 8px;
}

/* Card Type Specifics */
.board-card .org-card-header {
    color: #fff;
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    margin: -20px -20px 15px -20px;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
}

.advisory-card .org-card-header {
    color: #fff;
    background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
    margin: -20px -20px 15px -20px;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
}

.ceo-card .org-card-header {
    color: #fff;
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    margin: -20px -20px 15px -20px;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    font-size: 1.2rem;
}

.coa-card .org-card-header,
.cra-card .org-card-header {
    color: #fff;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    margin: -20px -20px 15px -20px;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
}

.support-card .org-card-header {
    color: #fff;
    background: linear-gradient(135deg, #718096 0%, #a0aec0 100%);
    margin: -20px -20px 15px -20px;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
}

.research-card .org-card-header {
    color: #fff;
    background: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
    margin: -20px -20px 15px -20px;
    padding: 20px 15px;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    font-size: 1rem;
    line-height: 1.4;
}

/* Connectors */
.org-connector-vertical {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, #2b6cb0, #38a169);
    margin: 5px auto;
    position: relative;
}

.org-connector-vertical::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 10px;
    height: 10px;
    background: #2b6cb0;
    border-radius: 50%;
}

.org-connector-vertical::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: -4px;
    width: 10px;
    height: 10px;
    background: #38a169;
    border-radius: 50%;
}

/* Advanced Grid for Research Units */
.advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    width: 100%;
}

/* Org Note */
.org-note {
    text-align: center;
    margin-top: 40px;
    padding: 15px;
    background: rgba(43, 108, 176, 0.05);
    border-radius: 50px;
    color: #4a5568;
    font-size: 0.95rem;
    font-style: italic;
    border: 1px dashed #2b6cb0;
}

.org-note p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .org-level {
        gap: 20px;
    }
    
    .org-card {
        min-width: 200px;
    }
    
    .advanced-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .organogram {
        padding: 30px 20px;
    }
    
    .org-level {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .level-2, .level-3, .level-4 {
        flex-direction: column;
    }
    
    .org-card {
        width: 100%;
        max-width: 350px;
    }
    
    .advanced-grid {
        grid-template-columns: 1fr;
    }
    
    .org-connector-vertical {
        display: none;
    }
    
    .org-note {
        margin-top: 20px;
        padding: 12px;
    }
}

/* Unit Quick Navigation */
.unit-quick-nav {
    padding: 30px 0;
    background: #f8f9fa;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 80px;
    z-index: 90;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.quick-nav-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.quick-nav-item {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    color: #1a365d;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-nav-item:hover {
    background: #2b6cb0;
    color: white;
    border-color: #2b6cb0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 108, 176, 0.3);
}

/* Research Units */
.research-unit {
    padding: 80px 0;
    border-bottom: 1px solid #e2e8f0;
}

.research-unit.alt-bg {
    background: #f8f9fa;
}

.research-unit:last-of-type {
    border-bottom: none;
}

.unit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #2b6cb0;
}

.unit-header h2 {
    color: #1a365d;
    font-size: 2rem;
    margin: 0;
    line-height: 1.3;
}

.unit-acronym {
    color: #2b6cb0;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

.unit-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #2b6cb0 0%, #38a169 100%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    box-shadow: 0 10px 20px rgba(43, 108, 176, 0.3);
}

.unit-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #2b6cb0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.unit-objectives {
    margin-bottom: 40px;
}

.unit-objectives h3 {
    color: #1a365d;
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.unit-objectives h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.unit-objectives ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.unit-objectives li {
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    color: #4a5568;
    line-height: 1.6;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 45px;
}

.unit-objectives li:before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: #38a169;
    font-weight: bold;
    font-size: 1.2rem;
}

.unit-objectives li:hover {
    transform: translateX(5px);
    border-color: #2b6cb0;
    box-shadow: 0 10px 25px rgba(43, 108, 176, 0.1);
}

.unit-outputs {
    margin-bottom: 40px;
}

.unit-outputs h3 {
    color: #1a365d;
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.unit-outputs h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2b6cb0, #38a169);
    border-radius: 2px;
}

.outputs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.output-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.output-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.output-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.output-item span:last-child {
    color: #2d3748;
    font-weight: 500;
    font-size: 0.95rem;
}

.unit-cta {
    text-align: center;
    margin-top: 30px;
}

/* Collaboration Section */
.collaboration-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.collaboration-section h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.collab-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #4a5568;
    font-size: 1.2rem;
    line-height: 1.8;
}

.collab-diagram {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.collab-center {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.3);
}

.collab-nodes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.collab-node {
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid #2b6cb0;
    border-radius: 8px;
    font-weight: 600;
    color: #1a365d;
    text-align: center;
    transition: all 0.3s ease;
}

.collab-node:hover {
    background: #2b6cb0;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(43, 108, 176, 0.3);
}

.collab-examples h3 {
    text-align: center;
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.example-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.example-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.example-item h4 {
    color: #2b6cb0;
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.example-item p {
    color: #4a5568;
    line-height: 1.8;
}

.example-item strong {
    color: #1a365d;
}

/* Inside CTA */
.inside-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    text-align: center;
}

.inside-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.inside-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.inside-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.inside-cta .btn-primary {
    background: white;
    color: #1a365d;
}

.inside-cta .btn-primary:hover {
    background: #38a169;
    color: white;
}

.inside-cta .btn-outline {
    border-color: white;
    color: white;
}

.inside-cta .btn-outline:hover {
    background: white;
    color: #1a365d;
}

/* Responsive Design */
@media (max-width: 992px) {
    .inside-hero h1 {
        font-size: 2.8rem;
    }
    
    .unit-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .unit-icon {
        margin: 0 auto;
    }
    
    .quick-nav-grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .inside-hero {
        padding: 80px 0 60px;
    }
    
    .inside-hero h1 {
        font-size: 2.2rem;
    }
    
    .org-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .unit-quick-nav {
        top: 60px;
        padding: 20px 0;
    }
    
    .quick-nav-item {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .unit-objectives ul {
        grid-template-columns: 1fr;
    }
    
    .outputs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collab-nodes {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .inside-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .inside-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .org-grid {
        grid-template-columns: 1fr;
    }
    
    .outputs-grid {
        grid-template-columns: 1fr;
    }
    
    .collab-nodes {
        grid-template-columns: 1fr;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2b6cb0;
    color: white;
}

.btn-primary:hover {
    background: #2c5282;
}

.btn-secondary {
    background: #38a169;
    color: white;
}

.btn-secondary:hover {
    background: #2f855a;
}

.btn-outline {
    background: transparent;
    color: #2b6cb0;
    border: 2px solid #2b6cb0;
}

.btn-outline:hover {
    background: #2b6cb0;
    color: white;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .grid-two {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .publications-grid,
    .case-studies-grid,
    .thought-leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .approach-steps,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero,
    .services-hero,
    .insights-hero,
    .contact-hero {
        padding: 60px 0 40px;
    }
    
    .our-story,
    .vision-mission,
    .core-values,
    .our-approach,
    .services-grid-section,
    .why-services,
    .services-cta,
    .publications-section,
    .case-studies-section,
    .thought-leadership-section,
    .news-events-section,
    .insights-cta {
        padding: 60px 0;
    }
}