/* ========================
   WEBBFABRIKEN CORPORATE STYLES
   ======================== */

:root {
    /* Corporate Blue Color Palette */
    --primary-color: #1e101f;
    --primary-hover: #1d1e18;
    --primary-dark: #1e1a1a;
    --primary-light: rgba(30, 64, 175, 0.1);
    
    /* Neutral Colors */
    --background-dark: #101218; 
    --surface-dark: #131215;
    --surface-elevated: #334155;
    --surface-hover: #475569;
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    /* Accent Colors */
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-purple: #8b5cf6;
	
	--accent-green-dark: linear-gradient(135deg, #065f46 0%, #064e3b 100%);
	--accent-purple-light: #302741;
	
	
    /* UI Elements */
    --border-color: #334155;
    --border-focus: var(--primary-color);
    --error-color: #ef4444;
    --success-color: #10b981;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(30, 64, 175, 0.3);
	
	/* Button Colors */
    --btn-primary: #f8fafc;
    --btn-secondary: #cbd5e1;
    --btn-muted: #94a3b8;
	--btn-text-color-primary: #181517;
	--primary-btn-hover: #f8fafc;
}

/* ========================
   TYPOGRAPHY
   ======================== */

@font-face {
    font-family: 'IBMPlexSans';
    src: url('/assets/fonts/IBMPlexSans-Regular-1.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'IBMPlexSans';
    src: url('/assets/fonts/IBMPlexSans-SemiBold-1.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'IBMPlexSans';
    src: url('/assets/fonts/IBMPlexSans-Bold-1.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'IBMPlexSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Corporate Typography Scale */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.lead-text {
    font-size: 1.375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ========================
   LAYOUT & GRID
   ======================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

[class*="col-"] {
    padding: 0 1rem;
    box-sizing: border-box;
}

.col-1 { width: 8.3333%; }
.col-2 { width: 16.6667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.3333%; }
.col-5 { width: 41.6667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.3333%; }
.col-8 { width: 66.6667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.3333%; }
.col-11 { width: 91.6667%; }
.col-12 { width: 100%; }

/* ========================
   HEADER & NAVIGATION
   ======================== */

.main-header {
    background-color: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header .row {
    align-items: center;
    min-height: 72px;
}

.main-header img {
    height: 48px;
    transition: transform 0.2s ease;
}

.main-header img:hover {
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-secondary);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--text-primary);
}

.main-nav a:hover::after {
    width: 100%;
}

/* ========================
   HERO SECTION
   ======================== */

.corporate-hero {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--surface-dark) 100%);
    position: relative;
    overflow: hidden;
}

.corporate-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--primary-light) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--accent-cyan) 0%, transparent 30%);
    opacity: 0.1;
    z-index: 1;
}

.corporate-hero .row {
    position: relative;
    z-index: 2;
}

.vision-statement {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

/* ========================
   METRICS SECTION
   ======================== */

.metrics-section {
    background-color: var(--surface-dark);
    padding: 4rem 2rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.metric {
    text-align: center;
    padding: 2rem 1rem;
}

.metric h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.metric p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================
   CORPORATE STORY SECTION
   ======================== */

.corporate-story {
    padding: 6rem 2rem;
    background-color: var(--background-dark);
}

.timeline-intro {
    max-width: 900px;
    margin: 2rem auto 4rem;
    text-align: center;
}

.timeline-intro p {
    font-size: 1.25rem;
    line-height: 1.8;
}

.timeline-highlights {
    margin-top: 4rem;
}

.timeline-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.timeline-item .year {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.timeline-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* ========================
   CAPABILITIES SECTION
   ======================== */

.capabilities {
    padding: 6rem 2rem;
    background-color: var(--surface-dark);
}

.section-lead {
    font-size: 1.375rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 4rem;
	text-align: center;
}

.capability-grid {
    margin-top: 3rem;
}

.capability-grid .col-6 {
    width: 48.6%;
}
.capability-item {
    padding: 3rem 2rem;
    background-color: var(--background-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 2rem;
	margin-right: 20px;
    transition: all 0.3s ease;
}


.capability-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.capability-icon {
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}

.capability-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.capability-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* ========================
   LEADERSHIP SECTION
   ======================== */

.leadership-section {
    padding: 6rem 2rem;
    background-color: var(--background-dark);
}

.ceo-message {
    background-color: var(--primary-hover);
    border-left: 4px solid var(--text-primary);
    padding: 3rem;
    border-radius: 8px;
}

.ceo-message .quote {
    font-size: 1.375rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.ceo-bio h4 {
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.ceo-bio .title {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ceo-portrait {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
}

/* ========================
   VALUES SECTION
   ======================== */

.corporate-values {
    padding: 6rem 2rem;
    background-color: var(--surface-dark);
}

.values-grid {
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-secondary);
}

/* ========================
   GLOBAL PRESENCE
   ======================== */

.global-presence {
    padding: 6rem 2rem;
    background-color: var(--background-dark);
}

.world-map {
    max-width: 1000px;
    width: 100%;
    margin: 3rem auto;
    opacity: 0.8;
}

/* ========================
   CALL TO ACTION
   ======================== */

.corporate-cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--surface-dark) 0%, var(--background-dark) 100%);
    text-align: center;
}

.corporate-cta h2 {
    margin-bottom: 1rem;
}

.corporate-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* ========================
   BUTTONS
   ======================== */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0.5rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--btn-primary);
    color: var(--btn-text-color-primary);
}

.btn-primary:hover {
    background-color: var(--primary-btn-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--btn-secondary);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--btn-muted);
    color: var(--btn-text-color-primary);
}

/* ========================
   FOOTER
   ======================== */

footer {
    background-color: var(--surface-dark);
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
}

footer h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--text-muted);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */

/* Tablet Design (1024px and below) */
@media (max-width: 1024px) {
    /* Container adjustments */
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    /* Typography scaling */
    .vision-statement {
        font-size: 3rem;
        line-height: 1.3;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Grid adjustments */
    .col-3 {
        width: 50%;
    }
    
    .col-4 {
        width: 50%;
    }
    
    /* Navigation adjustments */
    .main-nav ul {
        gap: 1.5rem;
    }
    
    .main-nav a {
        font-size: 0.875rem;
    }
}

/* Mobile Design (768px and below) */
@media (max-width: 768px) {
    /* Base layout */
    body {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* Hide desktop navigation */
    .main-nav {
        display: none;
    }
    
    /* Show mobile menu button */
    #menuToggle {
        display: inline-block;
    }
    
    /* Typography for mobile */
    h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    h3 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    h4 {
        font-size: 1.125rem;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .lead-text {
        font-size: 1.125rem;
        line-height: 1.5;
    }
    
    .vision-statement {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    /* Hero sections */
    .corporate-hero,
    .page-hero {
        padding: 4rem 1rem;
    }
    
    /* Grid system - all columns stack on mobile */
    section [class*="col-"],
	footer [class*="col-"] {
        margin-bottom: 1.5rem;
		width: 100% !important;
    }
    
    .row {
        margin: 0;
    }
    
	.office-card {
		padding: 0 !important;
	}
	
    /* Metrics section */
    .metrics-section {
        padding: 3rem 1rem;
    }
    
    .metric {
        padding: 1.5rem 0.5rem;
        margin-bottom: 1rem;
    }
    
    .metric h2 {
        font-size: 2.5rem;
    }
    
    .metric p {
        font-size: 0.875rem;
    }
    
    /* Section spacing */
    section {
        padding: 3rem 1rem !important;
    }
    
    /* Cards and content boxes */
    .content-box,
    .commitment-card,
    .governance-card,
    .value-card,
    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Buttons */
    .btn {
        display: block;
        width: 80%;
        padding: 1rem 1.5rem;
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .btn-primary + .btn-secondary {
        margin-top: 1rem;
    }
    
    /* Header adjustments */
    .main-header {
        padding: 0.75rem 1rem;
    }
    
    .main-header .row {
        min-height: 56px;
    }
    
    .main-header img {
        height: 36px;
    }
    
    .actions .btn {
        display: none; /* Hide CTA button on mobile */
    }
    
	#menuToggle {
		all: unset;
		display: none;
		cursor: pointer;
		padding: 0.5rem;
		margin-left: 1rem;
		position: relative;
		width: 20px !important;
		height: 24px;
	}
	
	.ceo-message .quote {
		font-size: 1rem;
		font-style: italic;
		line-height: 1.3;
		color: var(--text-primary);
		margin-bottom: 1rem;
	}
	
    /* Footer */
    footer {
        padding: 3rem 1rem 2rem;
        text-align: center;
    }
    
    footer section {
        margin-bottom: 2rem;
        padding: 0 !important;
    }
    
    footer h3 {
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
        margin: 1.5rem 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        font-size: 0.75rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .footer-bottom a {
        display: inline-block;
        margin: 0.25rem 0.5rem;
    }
    
    /* Leadership section */
    .leader-profile {
        text-align: center;
    }
    
    .leader-photo {
        margin-bottom: 2rem;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .leader-info {
        padding-left: 0;
    }
    
    /* Values grid */
    .values-detailed .value-card {
        margin-bottom: 1.5rem;
    }
    
    /* Process timelines */
    .process-wrapper {
        flex-direction: column;
        padding: 1.5rem 0;
    }
    
    .process-wrapper::before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 2rem;
        padding: 0;
    }
    
    /* Impact metrics */
    .impact-metrics {
        text-align: center;
    }
    
    .impact-item h3 {
        font-size: 2.5rem;
    }
    
    /* Form elements */
    .contact-form,
    .partner-form {
        padding: 1.5rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
		width: 90% !important;
    	padding: 0.75rem 1rem !important;
    }
	.contact-form [class*="col-"],
	.contact-form-section [class*="col-"] {
    	padding: 0 !important;
    }
    
	.emergency-number {
		font-size: 1.2rem !important;
		font-weight: 500 !important;
	}
	
    /* Tables */
    table {
        font-size: 0.875rem;
    }
    
    table th,
    table td {
        padding: 0.75rem 0.5rem;
    }
    
    /* Overflow handling */
    .section-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    
    /* Touch targets */
    a, button, .btn {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Modal/Slideout menu */
    #slideoutMenu {
        width: 85%;
        max-width: 320px;
        padding: 60px 1.5rem 2rem;
    }
    
col-4 { width: 100%;}
	
	
	#slideoutMenu a {
		color: var(--text-primary);
		font-weight: 500;
		text-decoration: none;
		display: block;
		padding: 0.15rem 0 !important;
		font-size: 1.125rem;
		transition: all 0.3s ease;
		border-bottom: 1px solid transparent;
	}

	#slideoutMenu ul {
		margin-left: 20px !important;
	}
	
	#slideoutMenu ul li {
		margin-bottom: 0rem !important;
	}

    /* Investor page */
    .financial-metrics {
        gap: 1rem;
    }
    
    .metric-box {
        padding: 1.5rem 1rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    /* Innovation page */
    .innovation-stats .stat {
        padding: 1rem 0;
    }
    
    /* Status page */
    .service-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .uptime-bars {
        height: 40px;
    }
    
    /* Partners page */
    .partner-type-card {
        padding: 1.5rem;
    }
    
    .success-metrics {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Case studies */
    .case-metrics {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .filter-options {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    /* Even smaller typography */
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .vision-statement {
        font-size: 1.5rem;
    }
    
    /* Reduce padding further */
    section {
        padding: 2.5rem 1rem !important;
    }
    
    .corporate-hero,
    .page-hero {
        padding: 3rem 1rem;
    }
    
    /* Metric adjustments */
    .metric h2 {
        font-size: 2rem;
    }
    
    /* Cards */
    .content-box,
    .commitment-card,
    .value-card {
        padding: 10px !important;
        margin: 0;
    }
    
	.container {
		padding: 0 0rem;
	}
	.value-icon {
		text-align: center;
	}
	
    /* Footer */
    .footer-bottom {
        font-size: 0.625rem;
    }
}

/* Landscape Mobile (max-height: 600px) */
@media (max-height: 600px) and (orientation: landscape) {
    .corporate-hero,
    .page-hero {
        padding: 3rem 1rem;
    }
    
    .vision-statement {
        font-size: 1.75rem;
    }
    
    section {
        padding: 2.5rem 1rem !important;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    a, button, .btn {
        min-height: 48px;
    }
    
    /* Remove hover effects on touch devices */
    .capability-item:hover,
    .value-card:hover,
    .benefit-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Improve scrolling */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Smooth scrolling for iOS */
    body {
        -webkit-overflow-scrolling: touch;
    }
}

/* Print styles */
@media print {
    .main-header,
    .main-nav,
    #menuToggle,
    #slideoutMenu,
    .btn,
    footer {
        display: none !important;
    }
    
    body {
        color: black;
        background: white;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* ========================
   ANIMATIONS
   ======================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ========================
   UTILITY CLASSES
   ======================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-10 { margin-top: 10rem; }
.mt-15 { margin-top: 15rem; }
.mt-20 { margin-top: 20rem; }


.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.space-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}


.corporate-story h2,
.investment-highlights h2,
.corporate-story h2,
.global-offices h2,
.growth-strategy h2,
.esg-commitment h2,
.contact-form-section h2,
.ai-innovation h2,
.innovation-labs h2,
.innovation-process h2,
.innovation-partnerships h2,
.industry-insights h2,
.environmental-commitment h2,
.social-impact h2,
.governance-section h2,
.sdg-alignment h2,
.sustainability-resources h2,
.board-directors h2,
.leadership-values h2,
.executive-team h2,
.open-positions h2,
.hiring-process h2 
{
	text-align: center;
}

.error-animation svg {
    background-color: red;
}

