/* ===========================================
   CREATIVE ABOUT US PAGE STYLES
   =========================================== */

/* Optima Font Face Declarations */
@font-face {
    font-family: 'Optima';
    src: url('../assets/fonts/fonts/Optima.eot');
    src: url('../assets/fonts/fonts/Optima.eot?#iefix') format('embedded-opentype'),
         url('../assets/fonts/fonts/Optima.woff2') format('woff2'),
         url('../assets/fonts/fonts/Optima.woff') format('woff'),
         url('../assets/fonts/fonts/Optima.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Optima';
    src: url('../assets/fonts/fonts/Optima-Bold.eot');
    src: url('../assets/fonts/fonts/Optima-Bold.eot?#iefix') format('embedded-opentype'),
         url('../assets/fonts/fonts/Optima-Bold.woff2') format('woff2'),
         url('../assets/fonts/fonts/Optima-Bold.woff') format('woff'),
         url('../assets/fonts/fonts/Optima-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* CSS Custom Properties */
:root {
    --asaf-dark-blue: #1e3a8a;
    --asaf-blue: #3b82f6;
    --asaf-light-blue: #60a5fa;
    --asaf-navy: #0f172a;
    --asaf-teal: #10b981;
    --asaf-green: #059669;
}

/* Reset and Base Styles */
html, body {
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.about-hero * {
    box-sizing: border-box;
}

/* Hero Section - University Design */
.about-hero {
    height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3b82f6 100%);
    color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.hero-background-pattern {
    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"><defs><pattern id="wavy-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M0,30 Q15,10 30,30 T60,30 T90,30 T120,30" stroke="%233b82f6" stroke-width="2" fill="none" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23wavy-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

/* Hero Content Layout */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem 2rem;
    position: relative;
    z-index: 3;
    flex: 1;
    min-height: 80vh;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-right: 2rem;
    position: relative;
    max-width: 600px;
    padding-top: 6rem;
}

.hero-text::before {
    display: none;
}

.hero-title {
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    text-align: left;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin: 0 0 2rem 0;
    max-width: 500px;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    align-items: center;
}

.btn {
    padding: 0.6rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    min-height: 42px;
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.btn-primary {
    background: #f97316;
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    background: #ea580c;
}

.btn-secondary {
    background: transparent;
    color: #f97316;
    border: 2px solid #f97316;
}

.btn-secondary:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
}

.graduates-image {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 700px;
    margin: 0;
    margin-top: -4rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.graduates-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: opacity 1.5s ease-in-out;
    border-radius: 0;
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 0;
}

.graduates-photo.active {
    opacity: 1;
}

/* Feature Highlights Section */
.feature-highlights {
    background: #000000;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    border: none;
}

.feature-item {
    text-align: left;
    color: #ffffff;
    padding: 2rem 2rem 3rem 2rem;
    transition: all 0.3s ease;
    border-radius: 0;
    background: #000000;
    border: none;
    position: relative;
    overflow: visible;
    min-height: 200px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
    padding-top: 2rem;
}

.feature-item:nth-child(1) {
    background: #000000;
}

.feature-item:nth-child(2) {
    background: linear-gradient(135deg, #1e3a8a 0%, #000000 100%);
}

.feature-item:nth-child(3) {
    background: #000000;
}

.feature-item:hover {
    transform: none;
    box-shadow: none;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: none;
    padding: 0.5rem;
    flex-shrink: 0;
}

.feature-item:hover .feature-icon {
    transform: none;
}

.feature-icon svg {
    color: #ffffff;
    stroke-width: 2;
    width: 40px;
    height: 40px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    margin-top: 0.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 2;
    text-shadow: none;
    line-height: 1.2;
}

.feature-description {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.005em;
    position: relative;
    z-index: 2;
    text-shadow: none;
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 0;
}

/* Executive Summary - Gradient Design Layout */
.executive-summary {
    padding: 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    margin-bottom: 0;
}

.summary-gradient-container {
    display: flex;
    height: 80vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

/* Left side with image background */
.summary-image-section {
    flex: 0 0 50%;
    position: relative;
    background: #000000;
    overflow: hidden;
}

.summary-image-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    mask: linear-gradient(to right, 
        black 0%, 
        black 65%, 
        rgba(0, 0, 0, 0.95) 70%, 
        rgba(0, 0, 0, 0.85) 75%, 
        rgba(0, 0, 0, 0.7) 80%, 
        rgba(0, 0, 0, 0.5) 85%, 
        rgba(0, 0, 0, 0.3) 90%, 
        rgba(0, 0, 0, 0.1) 95%, 
        transparent 100%
    );
    -webkit-mask: linear-gradient(to right, 
        black 0%, 
        black 65%, 
        rgba(0, 0, 0, 0.95) 70%, 
        rgba(0, 0, 0, 0.85) 75%, 
        rgba(0, 0, 0, 0.7) 80%, 
        rgba(0, 0, 0, 0.5) 85%, 
        rgba(0, 0, 0, 0.3) 90%, 
        rgba(0, 0, 0, 0.1) 95%, 
        transparent 100%
    );
}

.summary-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
    mask: linear-gradient(to right, 
        black 0%, 
        black 60%, 
        rgba(0, 0, 0, 0.95) 70%, 
        rgba(0, 0, 0, 0.85) 75%, 
        rgba(0, 0, 0, 0.7) 80%, 
        rgba(0, 0, 0, 0.5) 85%, 
        rgba(0, 0, 0, 0.3) 90%, 
        rgba(0, 0, 0, 0.1) 95%, 
        transparent 100%
    );
    -webkit-mask: linear-gradient(to right, 
        black 0%, 
        black 60%, 
        rgba(0, 0, 0, 0.95) 70%, 
        rgba(0, 0, 0, 0.85) 75%, 
        rgba(0, 0, 0, 0.7) 80%, 
        rgba(0, 0, 0, 0.5) 85%, 
        rgba(0, 0, 0, 0.3) 90%, 
        rgba(0, 0, 0, 0.1) 95%, 
        transparent 100%
    );
}

.summary-bg-image.active {
    opacity: 1;
}

.summary-image-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 500px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(255, 255, 255, 0.01) 5%, 
        rgba(255, 255, 255, 0.03) 10%, 
        rgba(255, 255, 255, 0.06) 15%, 
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(255, 255, 255, 0.15) 25%, 
        rgba(255, 255, 255, 0.22) 30%, 
        rgba(255, 255, 255, 0.3) 35%, 
        rgba(255, 255, 255, 0.4) 40%, 
        rgba(255, 255, 255, 0.5) 45%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.7) 55%, 
        rgba(255, 255, 255, 0.78) 60%, 
        rgba(255, 255, 255, 0.85) 65%, 
        rgba(255, 255, 255, 0.9) 70%, 
        rgba(255, 255, 255, 0.94) 75%, 
        rgba(255, 255, 255, 0.97) 80%, 
        rgba(255, 255, 255, 0.98) 85%, 
        rgba(255, 255, 255, 0.99) 90%, 
        rgba(255, 255, 255, 0.995) 95%, 
        rgba(255, 255, 255, 1) 100%
    );
    z-index: 2;
}

.summary-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(255, 255, 255, 0.02) 10%, 
        rgba(255, 255, 255, 0.05) 20%, 
        rgba(255, 255, 255, 0.1) 30%, 
        rgba(255, 255, 255, 0.18) 40%, 
        rgba(255, 255, 255, 0.28) 50%, 
        rgba(255, 255, 255, 0.4) 60%, 
        rgba(255, 255, 255, 0.55) 70%, 
        rgba(255, 255, 255, 0.7) 80%, 
        rgba(255, 255, 255, 0.82) 90%, 
        rgba(255, 255, 255, 0.92) 95%, 
        rgba(255, 255, 255, 0.98) 98%, 
        rgba(255, 255, 255, 1) 100%
    );
    z-index: 3;
}

.summary-content-section {
    flex: 0 0 50%;
    background: #ffffff;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem 2rem 2rem 1rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.summary-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.1) 20%, 
        rgba(0, 0, 0, 0.05) 80%, 
        transparent 100%
    );
    z-index: 1;
}

.summary-content-wrapper {
    max-width: 600px;
    width: 100%;
    margin-left: 0;
    padding-left: 1rem;
}

.summary-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin: 0 0 1.25rem 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    position: relative;
}

.summary-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
}

.summary-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 400;
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.summary-description:last-child {
    margin-bottom: 0;
}

.highlight-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* Vision Section - Overlay Design */
.vision-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vision-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/GettyImages-501224618.webp') center/cover no-repeat;
    z-index: 1;
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.vision-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem 2rem 3rem 2rem;
    text-align: center;
}

.vision-title {
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-shadow: none;
    position: relative;
    letter-spacing: -0.02em;
}

.vision-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
}

.vision-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.vision-item {
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: none;
    font-weight: 400;
}

.vision-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
    box-shadow: none;
}

.vision-item p {
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
    font-style: italic;
    font-weight: 400;
}

/* Mission Statements Section - Dark Design */
.mission-statements-section {
    padding: 4rem 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.mission-statements-section::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"><defs><pattern id="wavy-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M0,30 Q15,10 30,30 T60,30 T90,30 T120,30" stroke="%233b82f6" stroke-width="2" fill="none" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23wavy-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.mission-statements-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.mission-statements-title {
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    position: relative;
}

.mission-statements-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
}

.mission-statements-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 2;
}

.mission-statement-card {
    background: #000000;
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 2;
    min-height: 320px;
}

.mission-statement-card:nth-child(1) {
    background: linear-gradient(135deg, var(--asaf-dark-blue), #000000);
}

.mission-statement-card:nth-child(2) {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.mission-statement-card:nth-child(3) {
    background: linear-gradient(135deg, var(--asaf-dark-blue), #000000);
}

.mission-statement-card:nth-child(4) {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.mission-statement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.mission-statement-card:hover .mission-statement-icon {
    transform: scale(1.1);
    color: #d97706;
}

.mission-statement-icon {
    width: 60px;
    height: 60px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #f59e0b;
    flex-shrink: 0;
}

.mission-statement-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 3;
    color: #f59e0b;
    stroke: #f59e0b;
}

.mission-statement-content {
    text-align: center;
    flex: 1;
}

.mission-statement-title {
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin: 0 0 1rem 0;
}

.mission-statement-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
    font-weight: 400;
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Strategic Pillars & Cultural Code Section */
.strategy-pillars-section {
    padding: 3rem 0;
    background: url('../assets/uni3.jpg') center/cover no-repeat;
    color: #0f172a;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.strategy-pillars-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.65);
    z-index: 1;
}

.strategy-pillars-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 3;
}

.strategy-pillars-title {
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
}

.strategy-pillars-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
}

.pillar-code-matrix {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
    position: relative;
    z-index: 3;
}

.pillars-row,
.letters-row,
.codes-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 0;
    position: relative;
    align-items: start;
    justify-items: center;
}

.pillars-row {
    margin-bottom: 1.5rem;
}

.codes-row {
    margin-top: 1.5rem;
}

.letters-row {
    margin: 1.5rem 0;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
}

.letters-row::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #1e3a8a;
    transform: translateY(-50%);
    z-index: 1;
}

.pillar-item,
.letter-item,
.code-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.pillar-box {
    background: linear-gradient(180deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 0.85rem 0.75rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pillar-box::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #1e3a8a;
    z-index: 2;
}

.pillar-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.25;
    flex-shrink: 0;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.pillar-box p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    flex: 1;
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.pillar-box strong, .code-box strong {
    color: #fbbf24;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.letter-box {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    position: relative;
    margin: 0 auto;
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    z-index: 3;
}

.letter-box::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.letter-box:hover::before {
    opacity: 1;
}

.letter-box:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
}

.code-box {
    background: linear-gradient(180deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 0.85rem 0.75rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.code-box::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #1e3a8a;
    z-index: 2;
}

.code-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
}

.code-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.25;
    flex-shrink: 0;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.code-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    flex: 1;
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* CTA Section - Clean Design */
.cta-section {
    padding: 2rem 0;
    background: #000000;
    color: #ffffff;
    text-align: center;
    position: relative;
    margin-bottom: 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #ffffff;
    line-height: 1.1;
    position: relative;
}

.cta-content h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
    margin: 0.75rem auto 1rem auto;
}

.cta-content p {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.cta-buttons .btn svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
}

.cta-buttons .btn:hover svg {
    transform: scale(1.1);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Animations */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 4rem 2rem 2rem 2rem;
    }

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

    .hero-description {
        text-align: center;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .graduates-image {
        height: 600px;
        max-width: 600px;
        margin: 0 auto;
    }

    .summary-gradient-container {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .summary-image-section {
        flex: none;
        height: 35vh;
        min-height: 300px;
    }

    .summary-content-section {
        flex: none;
        padding: 1.5rem 2rem 1.5rem 1rem;
        justify-content: flex-start;
    }

    .summary-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .summary-description {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .mission-statements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .pillar-code-matrix {
        padding: 1.5rem 2rem;
    }

    .pillars-row,
    .letters-row,
    .codes-row {
        gap: 2.5rem;
    }

    .letter-box {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }

    .pillar-box,
    .code-box {
        padding: 1rem 0.9rem;
        max-width: 180px;
        height: 200px;
    }

    .pillar-box h3,
    .code-box h3 {
        font-size: 1rem;
    }

    .pillar-box p,
    .code-box p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        height: auto;
        padding-top: 80px;
        padding-bottom: 0;
        gap: 0;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: flex-start;
        padding: 2rem 1.5rem 1rem 1.5rem;
        min-height: auto;
        margin-bottom: 0;
        padding-bottom: 1rem;
        height: auto;
        flex: 0 0 auto;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-right: 1rem;
        padding-top: 1.5rem;
        padding-bottom: 0;
        text-align: left;
        max-width: 100%;
        margin-bottom: 0;
    }

    .hero-title {
        font-size: 1.5rem;
        text-align: left;
        margin-bottom: 1rem;
        line-height: 1.3;
        letter-spacing: -0.01em;
    }

    .hero-description {
        font-size: 0.8rem;
        text-align: justify;
        max-width: 100%;
        margin: 0 0 1rem 0;
        line-height: 1.6;
        text-justify: inter-word;
        hyphens: auto;
    }

    .hero-actions {
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 0.5rem;
        margin-bottom: 0;
        padding-bottom: 0;
        padding-top: 0;
        width: 100%;
    }
    
    .feature-highlights {
        margin-top: 1rem !important;
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
        position: relative;
        z-index: 10;
    }
    
    .about-hero > .feature-highlights {
        margin-top: 1rem !important;
        padding-bottom: 0;
        margin-bottom: 0;
        z-index: 10;
    }
    
    .about-hero {
        padding-bottom: 0;
    }

    .hero-actions .btn,
    .hero-actions .btn-primary {
        padding: 0.3rem 0.8rem !important;
        font-size: 0.6rem !important;
        margin-bottom: 0;
        margin-top: 0;
        margin-left: 0 !important;
        margin-right: auto !important;
        line-height: 1;
        min-height: auto !important;
        min-width: auto !important;
        width: auto !important;
        max-width: fit-content !important;
        gap: 0.2rem !important;
        font-weight: 500 !important;
        align-self: flex-start;
    }
    
    .hero-actions .btn svg,
    .hero-actions .btn-icon {
        width: 10px !important;
        height: 10px !important;
        flex-shrink: 0;
    }

    .hero-visual {
        position: relative;
        order: 0;
        margin-bottom: 0;
        padding-bottom: 0;
        margin-top: 5rem;
        align-self: flex-end;
    }

    .graduates-image {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 180px;
        margin: 0;
        margin-top: 0;
        margin-bottom: 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background: transparent;
        border: none;
        box-shadow: none;
        overflow: visible;
    }
    
    .graduates-photo {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }

    .feature-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding: 0;
    }

    .feature-item {
        padding: 0.5rem 0.75rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.3rem;
        min-height: auto;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        margin: 0;
        margin-bottom: 0.15rem;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-content {
        margin-top: 0;
        text-align: center;
    }

    .feature-title {
        font-size: 0.85rem;
        margin-bottom: 0.15rem;
        line-height: 1.2;
    }

    .feature-description {
        font-size: 0.65rem;
        line-height: 1.4;
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
    }

    .summary-gradient-container {
        flex-direction: column;
    }

    .summary-image-section {
        height: 35vh;
        min-height: 280px;
    }

    .summary-content-section {
        padding: 1.5rem 1.25rem;
    }

    .summary-title {
        font-size: 1.875rem;
        margin-bottom: 0.875rem;
    }

    .summary-description {
        font-size: 0.9rem;
        margin-bottom: 0.625rem;
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
    }

    .vision-section {
        min-height: 350px;
        padding: 1rem 0;
    }

    .vision-content {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
        max-width: 100%;
    }

    .vision-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .vision-title::after {
        margin-bottom: 0;
        margin-top: 0.75rem;
        width: 90px;
        height: 3px;
    }

    .vision-list {
        margin-top: 0.75rem;
        gap: 1.25rem;
        margin-bottom: 0;
    }

    .vision-item {
        font-size: 1rem;
        padding: 1.5rem 1.25rem;
        line-height: 1.65;
        border-radius: 10px;
    }

    .vision-item p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .mission-statements-section {
        padding: 2rem 0;
    }
    
    .mission-statements-section .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        box-sizing: border-box;
    }

    .mission-statements-header {
        margin-bottom: 1.5rem;
        padding: 0 0.75rem;
    }

    .mission-statements-title {
        font-size: 1.75rem;
    }

    .mission-statements-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        padding: 0;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-top: 0;
    }

    .mission-statement-card {
        padding: 0.5rem 0.35rem;
        min-height: 200px;
        max-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow: visible;
        box-sizing: border-box;
    }

    .mission-statement-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.15rem;
        flex-shrink: 0;
    }

    .mission-statement-icon svg {
        width: 18px;
        height: 18px;
    }

    .mission-statement-title {
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
        margin-top: 0;
        line-height: 1.1;
        flex-shrink: 0;
    }

    .mission-statement-description {
        font-size: 0.6rem;
        line-height: 1.2;
        flex: 1;
        overflow: visible;
        word-wrap: break-word;
        hyphens: auto;
    }

    .strategy-pillars-section {
        padding: 2rem 0;
    }

    .strategy-pillars-title {
        font-size: 2rem;
    }

    .strategy-pillars-header {
        padding: 0 0.8rem;
        margin-bottom: 1.5rem;
    }

    .strategy-pillars-section .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .pillar-code-matrix {
        padding: 0.75rem 0;
        width: 100%;
        box-sizing: border-box;
    }

    .pillars-row,
    .letters-row,
    .codes-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.35rem;
        margin-bottom: 0.75rem;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .pillar-item,
    .letter-item,
    .code-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
    }

    .letters-row {
        margin: 0.75rem 0;
    }

    .letters-row::before {
        display: block;
        height: 2px;
    }

    .letter-box {
        width: 36px;
        height: 36px;
        font-size: 1.15rem;
    }

    .pillar-box,
    .code-box {
        padding: 0.35rem 0.25rem;
        max-width: 100% !important;
        width: 100% !important;
        height: 110px;
        box-sizing: border-box;
        overflow: visible;
        margin: 0;
    }

    .pillar-box h3,
    .code-box h3 {
        font-size: 0.6rem;
        margin-bottom: 0.2rem;
        min-height: 1.4rem;
        line-height: 1.15;
        word-wrap: break-word;
    }

    .pillar-box p,
    .code-box p {
        font-size: 0.53rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .pillar-box::after {
        bottom: -8px;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #1e3a8a;
        z-index: 2;
        display: block;
    }

    .code-box::after {
        top: -8px;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #1e3a8a;
        z-index: 2;
        display: block;
    }

    .cta-section {
        padding: 1.5rem 0;
    }

    .cta-section .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        box-sizing: border-box;
    }

    .cta-content {
        padding: 1.5rem 0;
        max-width: 100%;
    }

    .cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .cta-content h2::after {
        margin: 0.5rem auto 0.75rem auto;
        width: 80px;
        height: 2px;
    }

    .cta-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
    }

    .cta-buttons .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
        width: auto;
        flex: 0 0 auto;
        min-width: 140px;
        justify-content: center;
    }

    /* CTA buttons use desktop styles on tablet */
}

@media (max-width: 480px) {
    .about-hero {
        min-height: auto !important;
        height: auto;
        padding-top: 65px !important;
        padding-bottom: 0 !important;
        gap: 0;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        align-items: flex-start;
        padding: 1.25rem 0.85rem 0 0.85rem !important;
        min-height: auto !important;
        margin-bottom: 0;
        padding-bottom: 0 !important;
        height: auto;
        flex: 0 0 auto;
        position: relative;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-right: 0.6rem;
        padding-top: 1rem !important;
        padding-bottom: 0;
        text-align: left;
        max-width: 100%;
        margin-bottom: 0;
    }

    .hero-title {
        font-size: 1.4rem;
        text-align: left;
        margin-bottom: 0.75rem;
        line-height: 1.3;
        letter-spacing: -0.01em;
    }

    .hero-description {
        font-size: 0.8rem;
        text-align: justify;
        max-width: 100%;
        margin: 0 0 0.75rem 0;
        line-height: 1.6;
        text-justify: inter-word;
        hyphens: auto;
    }

    .hero-actions {
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        margin-top: 0.4rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0;
        padding-top: 0;
    }
    
    .feature-highlights {
        margin-top: -0.5rem !important;
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
        position: relative;
        z-index: 10;
    }
    
    .about-hero > .feature-highlights {
        margin-top: -0.5rem !important;
        padding-bottom: 0;
        margin-bottom: 0;
        z-index: 10;
    }
    
    .about-hero {
        padding-bottom: 0;
    }

    .hero-actions .btn,
    .hero-actions .btn-primary {
        width: auto !important;
        max-width: fit-content !important;
        justify-content: center;
        padding: 0.4rem 1rem !important;
        font-size: 0.7rem !important;
        min-height: 32px !important;
        min-width: auto !important;
        margin-bottom: 0;
        margin-top: 0;
        margin-left: 0 !important;
        margin-right: auto !important;
        line-height: 1;
        gap: 0.25rem !important;
        font-weight: 500 !important;
        align-self: flex-start;
    }
    
    .hero-actions .btn svg,
    .hero-actions .btn-icon {
        width: 12px !important;
        height: 12px !important;
        flex-shrink: 0;
    }

    .hero-visual {
        position: absolute !important;
        right: 0.85rem;
        top: 1.5rem !important;
        order: 0;
        margin-bottom: 0 !important;
        padding-bottom: 0;
        margin-top: 0 !important;
        align-self: flex-start;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        z-index: 1;
        width: calc(50% - 0.5rem);
    }

    .graduates-image {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 380px;
        margin: 0;
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 0;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        background: transparent;
        border: none;
        box-shadow: none;
        overflow: visible;
        z-index: 1;
    }
    
    .graduates-photo {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }

    .feature-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding: 0;
    }

    .feature-item {
        padding: 0.35rem 0.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.2rem;
        min-height: auto;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        margin: 0;
        margin-bottom: 0.1rem;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-content {
        margin-top: 0;
        text-align: center;
    }

    .feature-title {
        font-size: 0.65rem;
        margin-bottom: 0.05rem;
        line-height: 1.15;
    }

    .feature-description {
        font-size: 0.55rem;
        line-height: 1.3;
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
    }

    .summary-gradient-container {
        flex-direction: column;
    }

    .summary-image-section {
        height: 25vh;
        min-height: 180px;
    }

    .summary-content-section {
        padding: 1.25rem 1rem;
    }

    .summary-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .summary-description {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
    }

    .vision-section {
        min-height: 300px;
        padding: 0.25rem 0;
    }

    .vision-content {
        padding: 0.5rem 1rem 1rem 1rem;
        max-width: 100%;
    }

    .vision-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        letter-spacing: -0.01em;
        margin-top: 0;
    }

    .vision-title::after {
        margin-bottom: 0;
        margin-top: 0.6rem;
        width: 80px;
        height: 3px;
        display: block;
    }

    .vision-list {
        margin-top: 1rem;
        gap: 1rem;
        margin-bottom: 0;
    }

    .vision-item {
        font-size: 0.9rem;
        padding: 1.25rem 1rem;
        line-height: 1.6;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

    .vision-item p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0;
    }

    .mission-statements-section {
        padding: 2.5rem 0;
    }
    
    .mission-statements-section .container {
        padding-left: 0.65rem !important;
        padding-right: 0.65rem !important;
        box-sizing: border-box;
    }

    .mission-statements-header {
        margin-bottom: 2rem;
        padding: 0 0.65rem;
    }

    .mission-statements-title {
        font-size: 1.5rem;
    }

    .mission-statements-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        padding: 0;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-top: 0;
    }

    .mission-statement-card {
        padding: 0.75rem 0.5rem;
        min-height: 280px;
        max-height: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow: visible;
        box-sizing: border-box;
        gap: 0.5rem;
    }

    .mission-statement-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.4rem;
        flex-shrink: 0;
    }

    .mission-statement-icon svg {
        width: 18px;
        height: 18px;
    }

    .mission-statement-title {
        font-size: 0.65rem;
        margin-bottom: 0.4rem;
        margin-top: 0;
        line-height: 1.2;
        flex-shrink: 0;
    }

    .mission-statement-description {
        font-size: 0.6rem;
        line-height: 1.4;
        flex: 1;
        overflow: visible;
        word-wrap: break-word;
        hyphens: auto;
    }

    .strategy-pillars-section {
        padding: 2rem 0;
    }

    .strategy-pillars-header {
        margin-bottom: 1.5rem;
        padding: 0 0.7rem;
    }

    .strategy-pillars-title {
        font-size: 1.75rem;
    }

    .strategy-pillars-section .container {
        padding-left: 0.65rem !important;
        padding-right: 0.65rem !important;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .pillar-code-matrix {
        padding: 0.75rem 0;
        width: 100%;
        box-sizing: border-box;
        overflow: visible;
    }

    .pillars-row,
    .letters-row,
    .codes-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.45rem;
        margin-bottom: 0.75rem;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
        overflow: visible;
    }

    .pillar-item,
    .letter-item,
    .code-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
    }

    .letters-row {
        margin: 0.75rem 0;
    }

    .letters-row::before {
        display: block;
        height: 2px;
    }

    .letter-box {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        margin: 0 auto;
    }

    .pillar-box,
    .code-box {
        padding: 0.5rem 0.4rem;
        max-width: 100% !important;
        width: 100% !important;
        height: auto;
        min-height: 150px;
        max-height: 180px;
        box-sizing: border-box;
        overflow: visible;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        position: relative;
    }

    .pillar-box h3,
    .code-box h3 {
        font-size: 0.65rem;
        margin-bottom: 0.25rem;
        min-height: 1.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pillar-box p,
    .code-box p {
        font-size: 0.55rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        flex: 1;
        margin: 0;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .pillar-box::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #1e3a8a;
        z-index: 10;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .code-box::after {
        content: '';
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #1e3a8a;
        z-index: 10;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .cta-section {
        padding: 0.75rem 0;
    }

    .cta-section .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        box-sizing: border-box;
    }

    .cta-content {
        padding: 0.5rem 0;
        max-width: 100%;
    }

    .cta-content h2 {
        font-size: 1.35rem;
        margin-bottom: 0.3rem;
    }

    .cta-content h2::after {
        margin: 0.3rem auto 0.5rem auto;
        width: 70px;
        height: 2px;
    }

    .cta-content p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .cta-buttons {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 0;
    }

    .cta-buttons .btn {
        padding: 0.4rem 0.85rem;
        font-size: 0.7rem;
        width: auto;
        flex: 0 0 auto;
        min-width: 110px;
        min-height: 28px;
        justify-content: center;
        text-align: center;
        display: inline-flex;
        align-items: center;
    }

    .cta-buttons .btn svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    .cta-content {
        text-align: center;
    }

    .cta-content p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    align-items: center;
    border: none;
    outline: none;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    border: none;
    outline: none;
    background: none;
    padding: 0;
    margin: 0;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    stroke: none;
    border: none;
    outline: none;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.15);
    border: none;
    outline: none;
}

.social-icon:focus {
    outline: none;
    border: none;
}

.social-icon:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
    border-radius: 4px;
}

.social-icon:hover svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

/* Social Icons - White Color */
.social-facebook,
.social-instagram,
.social-twitter,
.social-linkedin,
.social-youtube {
    color: #ffffff;
}

.social-facebook:hover,
.social-instagram:hover,
.social-twitter:hover,
.social-linkedin:hover,
.social-youtube:hover {
    color: #ffffff;
}

