/* About Us Page Styling */
.about-us-section-one {
    padding: 60px 0;
    background-color: #f9f9f9;
    font-family: var(--primary-body-font);
    font-weight: 500;
}

.about-us-section-one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 87, 146, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 0;
}

.about-us-section-one .container {
    z-index: 1;
}

.about-us-section-one h2 {
    font-size: 2.2rem;
    color: var(--primary-colour);
    margin-bottom: 30px;
    font-family: var(--primary-heading-font);
    position: relative;
}

.about-us-section-one p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    font-family: var(--primary-body-font);
    font-weight: 500;
}

.about-us-section-one .highlight-box {
    background-color: var(--secondary-colour);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
    /* border-left: 4px solid #005792; */
}






.about-us-section-two {
    padding: 80px 0;
    background: var(--primary-colour);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.about-section-two-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-section-two-header h2 {
    font-size: 2.2rem;
    color: white;
    font-family: var(--primary-heading-font);
    display: inline-block;
}


.about-section-two-header p {
    font-size: 1.2rem;
    font-family: var(--primary-body-font);
    color: white;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
    text-align: center;
}

/* Grid Layout */
.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.left-column, .right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Card Styles */
.principle-card {
    background: var(--secondary-colour);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e0;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.card-icon {
    font-size: 2.2rem;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ebf8ff;
    color: #2b6cb0;
}

.purpose-card .card-icon {
    background: #ebf8ff;
    color: #2b6cb0;
}

.vision-card .card-icon {
    background: #fff5f5;
    color: #c53030;
}

.mission-card .card-icon {
    background: #f0fff4;
    color: #2f855a;
}

.story-card .card-icon {
    background: #faf5ff;
    color: #6b46c1;
}

.principle-card h3 {
    font-size: 1.5rem;
    font-family: var(--primary-heading-font);
    color: #2d3748;
    font-weight: 600;
    margin: 0;
}

.card-content p {
    color: #4a5568;
    line-height: 1.7;
    font-family: var(--primary-body-font);
    margin-bottom: 15px;
}

.card-content p:last-child {
    margin-bottom: 0;
}

/* Timeline Styles */
.story-timeline {
    position: relative;
    padding-left: 30px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    border: 3px solid #4299e1;
    z-index: 1;
}

.timeline-year {
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #4a5568;
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section-two-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-us-section-two {
        padding: 60px 0;
    }
    
    .about-section-two-header h2 {
        font-size: 2rem;
    }
    
    .about-section-two-header p {
        font-size: 1.1rem;
    }
    
    .principle-card {
        padding: 25px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        margin-right: 15px;
    }
    
    .principle-card h3 {
        font-size: 1.3rem;
    }
}

/* Section 3 - Core Values */
.about-us-section-three {
    padding: 60px 0;
    background-color: #f5f7fa;
    font-family: var(--primary-body-font);
    font-weight: 500;
}

.about-us-section-three h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-colour);
    margin-bottom: 50px;
    font-family: var(--primary-heading-font);
}

.about-us-section-three .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-us-section-three .value-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-section-three .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-us-section-three .value-card h3 {
    color: var(--primary-colour);
    font-size: 1.4rem;
    margin: 20px 0 15px;
    font-family: var(--primary-heading-font);
}

.about-us-section-three .value-card p {
    color: #666;
    line-height: 1.6;
    font-family: var(--primary-body-font);
    font-weight: 500;
}

.about-us-section-three .value-icon {
    font-size: 2.2rem;
    color: #ff6b6b;
}

/* Section 4 - Impact/Stats */
.about-us-section-four {
    padding: 60px 0;
    background: var(--primary-colour);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    font-family: var(--primary-body-font);
    font-weight: 500;
}

.about-us-section-four h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-family: var(--primary-heading-font);
}

.about-us-section-four p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto 30px;
    font-family: var(--primary-body-font);
}

.about-us-section-four .impact-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.about-us-section-four .stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.about-us-section-four .stat-number {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: #fff;
    font-family: var(--primary-heading-font);
}

.about-us-section-four .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-family: var(--primary-body-font);
    color: #f8fafc;
}

/* Base Styles */
.code-of-conduct-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.code-of-conduct-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgwLDg3LDE0NiwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
    z-index: 0;
}

.code-of-conduct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.code-of-conduct-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.code-of-conduct-badge {
    display: inline-block;
    background: #005792;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.code-of-conduct-header h2 {
    font-size: 2.2rem;
    color: #1a365d;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: var(--primary-heading-font);
}

.code-of-conduct-intro {
    font-size: 1.2rem;
    font-family: var(--primary-body-font);
    line-height: 1.8;
    color: #4a5568;
}

/* Grid Layout */
.code-of-conduct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Card Styles */
.code-of-conduct-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 87, 146, 0.1);
    text-align: center;
}

.code-of-conduct-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 87, 146, 0.15);
    border-color: rgba(0, 87, 146, 0.2);
}

.code-of-conduct-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    background: rgba(0, 87, 146, 0.1);
    color: #005792;
}

.code-of-conduct-icon svg {
    width: 30px;
    height: 30px;
}

.code-of-conduct-card h3 {
    font-size: 1.4rem;
    color: #1a365d;
    font-family: var(--primary-heading-font);
    margin-bottom: 20px;
    font-weight: 600;
}

.code-of-conduct-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    font-family: var(--primary-body-font);
    color: #4a5568;
    margin-bottom: 0;
}

/* Footer Styles */
.code-of-conduct-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.code-of-conduct-footer p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    font-family: var(--primary-body-font);
    margin-bottom: 30px;
}

.code-of-conduct-download-btn {
    display: inline-flex;
    align-items: center;
    background: #005792;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #005792;
    font-size: 1.1rem;
}

.code-of-conduct-download-btn svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.code-of-conduct-download-btn:hover {
    background: transparent;
    color: #005792;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 87, 146, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .code-of-conduct-section {
        padding: 80px 0;
    }
    
    .code-of-conduct-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .code-of-conduct-section {
        padding: 60px 0;
    }
    
    .code-of-conduct-header h2 {
        font-size: 2rem;
    }
    
    .code-of-conduct-intro {
        font-size: 1.1rem;
    }
    
    .code-of-conduct-card {
        padding: 30px 25px;
    }
    
    .code-of-conduct-download-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .code-of-conduct-grid {
        grid-template-columns: 1fr;
    }
    
    .code-of-conduct-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .code-of-conduct-header h2 {
        font-size: 1.8rem;
    }
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .about-us-section-one, 
    .about-us-section-three, 
    .about-us-section-four{
        padding: 60px 0;
    }
    
    .about-us-section-one h2,
    .about-us-section-three h2,
    .about-us-section-four h2 {
        font-size: 1.8rem;
    }
    
    .about-us-section-two .grid-container {
        grid-template-columns: 1fr;
    }
    
    .about-us-section-three .values-grid {
        grid-template-columns: 1fr;
    }
}


