@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600&display=swap');

:root {
    --bg: #FAF9F5;
    --text: #30302e;
    --accent: #D97757;
    --accent-rgb: 217, 119, 87;
    --accent-hover: #c4664a;
    --muted: #5E5D59;
    --border: rgba(48, 48, 46, 0.1);
    --card-bg: #FFFFFF;
    --stats-bg: #30302e;
    --stats-text: #FAF9F5;
    --cta-bg: #30302e;
    --cta-text: #FAF9F5;
    --btn-primary-bg: #30302e;
    --btn-primary-text: #FAF9F5;
    --btn-secondary-bg: #FAF9F5;
    --btn-secondary-text: #5E5D59;
    --btn-shadow: rgba(48, 48, 46, 0.1);
    --btn-outline-shadow: rgba(209, 207, 197, 0.5);
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-theme="dark"] {
    --bg: #30302e;
    --text: #FAF9F5;
    --accent: #E88C6F;
    --accent-rgb: 232, 140, 111;
    --accent-hover: #f0a38c;
    --muted: #8E8D8A;
    --border: rgba(250, 249, 245, 0.1);
    --card-bg: #3a3a38;
    --stats-bg: #3a3a38;
    --stats-text: #FAF9F5;
    --cta-bg: #3a3a38;
    --cta-text: #FAF9F5;
    --btn-primary-bg: #FAF9F5;
    --btn-primary-text: #30302e;
    --btn-secondary-bg: #3a3a38;
    --btn-secondary-text: #FAF9F5;
    --btn-shadow: rgba(255, 255, 255, 0.1);
    --btn-outline-shadow: rgba(255, 255, 255, 0.2);
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Instrument Serif', serif;
    font-weight: 500;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

/* Typography Utilities */
.text-serif { font-family: 'Instrument Serif', serif; }
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 8.5px;
    font-weight: 400;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    line-height: 1;
}

.btn-primary {
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    box-shadow: 0px 0px 0px 1px var(--btn-shadow);
}

.btn-primary:hover {
    background-color: var(--btn-primary-bg);
    opacity: 0.9;
    transform: none;
}

.btn-outline {
    background: var(--btn-secondary-bg);
    color: var(--btn-secondary-text);
    padding: 8px 12px;
    border-radius: 7.5px;
    box-shadow: 0px 0px 0px 1px var(--btn-outline-shadow);
}

.btn-outline:hover {
    background: var(--btn-secondary-bg);
    color: var(--text);
    box-shadow: 0px 0px 0px 1px var(--text);
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text);
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    height: auto;
    width: auto;
    box-shadow: none;
    transition: opacity 0.2s;
}

.theme-toggle:hover {
    opacity: 0.8;
}

.theme-toggle-text {
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    opacity: 0.8;
    display: block;
}

.theme-toggle-text .light-text,
.theme-toggle-text .dark-text {
    display: none;
}

[data-theme="dark"] .theme-toggle-text .dark-text { display: block; }
:root:not([data-theme="dark"]) .theme-toggle-text .light-text { display: block; }

/* iOS Style Track */
.theme-toggle-track {
    width: 40px;
    height: 22px;
    background: rgba(48, 48, 46, 0.15);
    border-radius: 22px;
    position: relative;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

[data-theme="dark"] .theme-toggle-track {
    background: var(--accent);
}

/* iOS Style Thumb */
.theme-toggle-thumb {
    width: 18px;
    height: 18px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    left: 2px;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .theme-toggle-thumb {
    transform: translateX(18px);
}

/* Thumb Icons */
.theme-toggle-thumb svg {
    width: 11px;
    height: 11px;
}

[data-theme="dark"] .moon-icon { display: block; color: var(--accent); }
[data-theme="dark"] .sun-icon { display: none; }
.sun-icon { display: block; color: #888; }
.moon-icon { display: none; }

/* Header */
header {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header .container {
    max-width: 1400px;
}

header.scrolled {
    background: var(--bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    max-width: 240px;
    max-height: 85px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-left: -15px;
}

.logo-dark {
    display: none;
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
}

.nav-links a:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 3rem);
    height: auto;
    margin: 1.5rem;
    border-radius: 48px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    background: var(--bg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.hero .container {
    max-width: 1400px;
    width: 100%;
}

#interactive-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: all; /* Allow interaction with the grid squares */
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-tagline {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
    color: var(--muted);
}

.hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 3rem;
    color: var(--muted);
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
    align-items: center;
}

.hero-image {
    position: relative;
    height: 600px;
    max-height: 80vh;
    border-radius: 40px;
    overflow: hidden;
}

#hr-constellation {
    width: 100%;
    height: 100%;
    display: block;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-container {
    height: auto;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}


/* ── Group of Companies ────────────────────────────────── */
.group {
    background: var(--stats-bg);
    color: var(--stats-text);
    padding: 80px 0 60px;
    transition: var(--transition);
}

/* Intro header row */
.group-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 5rem;
}

.section-label-sm {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 1.2rem;
}

.group-headline {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.05;
    font-weight: 400;
}

.group-mission {
    font-size: 1.1rem;
    line-height: 1.75;
    opacity: 0.65;
    align-self: end;
}

/* Rows container */
.group-rows {
    display: flex;
    flex-direction: column;
}

/* Each company row */
.group-row {
    display: grid;
    grid-template-columns: 60px 1.2fr 0.8fr;
    gap: 3rem;
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    align-items: start;
    transition: background 0.2s ease;
}

[data-theme="light"] .group-row {
    border-top-color: var(--border);
}

.group-row:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

[data-theme="light"] .group-row:last-child {
    border-bottom-color: var(--border);
}

/* Big faded number */
.group-row-num {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
    opacity: 0.25;
    padding-top: 0.3rem;
}

/* Left column: badge, name, tagline, desc */


.group-row-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.28rem 0.8rem;
    border-radius: 99px;
    margin-bottom: 1.2rem;
}

.group-row-badge--tech    { background: rgba(99, 179, 237, 0.15); color: #63B3ED; }
.group-row-badge--people  { background: rgba(104, 211, 145, 0.15); color: #68D391; }
.group-row-badge--academy { background: rgba(196, 96, 62, 0.18);   color: #E88C6F; }

[data-theme="light"] .group-row-badge--tech    { background: rgba(59, 130, 246, 0.10); color: #3B82F6; }
[data-theme="light"] .group-row-badge--people  { background: rgba(56, 161, 105, 0.10); color: #38A169; }
[data-theme="light"] .group-row-badge--academy { background: rgba(196, 96, 62, 0.10);  color: var(--accent); }

.group-row-name {
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.group-row-name em {
    font-style: italic;
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
}

.group-row-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.45;
    margin-bottom: 1.2rem;
}

.group-row-desc {
    font-size: 0.96rem;
    line-height: 1.75;
    opacity: 0.7;
    max-width: 440px;
}

/* Right column: features + link */
.group-row-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.group-row-features {
    list-style: none;
    padding: 0;
    margin: 3.3rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.group-row-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.9rem;
    opacity: 0.75;
    line-height: 1.5;
}

.group-row-features li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 0.62em;
    flex-shrink: 0;
    opacity: 0.8;
}

.group-row-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.2s ease;
    align-self: flex-start;
    margin-top: auto;
}

.group-row-link:hover { gap: 1rem; }

.group-row-link svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .group-intro { grid-template-columns: 1fr; gap: 2rem; }
    .group-row   { grid-template-columns: 48px 1fr; grid-template-rows: auto auto; }
    .group-row-right { grid-column: 2; }
    .hero-grid   { grid-template-columns: 1fr; }
    .hero-image  { height: 400px; }
}



/* Services Section */
.section-header {
    margin-bottom: 4rem;
}

.section-header span {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    font-size: 48px;
}


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

.glowing-card-wrapper {
    position: relative;
    border-radius: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.5s ease;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .glowing-card-wrapper {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.glowing-card-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.08), 0 12px 24px -8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(var(--accent-rgb), 0.25);
}

[data-theme="dark"] .glowing-card-wrapper:hover {
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    border-color: rgba(var(--accent-rgb), 0.3);
}

/* Background blur glow */
.glowing-card-bg-glow {
    display: none;
}

.glowing-card-inner {
    padding: 3.5rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: transparent;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.glowing-card-wrapper:hover .service-icon {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    transform: scale(1.05);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5px;
}

.glowing-card-inner h3 {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.glowing-card-inner p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

/* Stats Section */
.stats {
    background: var(--stats-bg);
    color: var(--stats-text);
    padding: 80px 0;
    transition: var(--transition);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    text-align: center;
}

.stat-item h4 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    opacity: 0.6;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Contact Section */
.contact-box {
    background: var(--cta-bg);
    color: var(--cta-text);
    padding: 5rem;
    border-radius: 40px;
    text-align: center;
    transition: var(--transition);
}

.contact-box h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.contact-box p {
    margin-bottom: 3rem;
    opacity: 0.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.contact-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn-primary {
    background: var(--accent) !important;
    color: #FAF9F5 !important;
    border: none !important;
    box-shadow: none !important;
}

.contact-btn-primary:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-2px);
}



/* Footer */
footer {
    padding: 80px 0 40px;
    background-color: #30302e;
    color: #FAF9F5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-col:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#locations {
    justify-self: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-link {
    font-size: 0.95rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-link:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #FAF9F5;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-social-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-social-btn svg {
    width: 16px;
    height: 16px;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-desc {
    max-width: 300px;
    opacity: 0.6;
}

.footer-tagline {
    text-align: center;
}

.footer-col h5 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    opacity: 0.6;
    font-size: 0.9rem;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    opacity: 0.4;
    font-size: 0.8rem;
}





/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ── Laptop / Small Desktop ──────────────────────────────── */
@media (max-width: 1366px) {
    body { font-size: 17px; }
    
    .container { max-width: 1100px; padding: 0 1.5rem; }
    
    .hero { margin: 1rem; border-radius: 32px; padding: 60px 0; }
    .hero h1 { font-size: clamp(32px, 4.5vw, 48px); }
    .hero p { font-size: 18px; margin-bottom: 2rem; }
    .hero-image { height: 450px; }
    .hero-grid { gap: 1.5rem; }
    
    .nav-links { gap: 1.5rem; }
    .logo img { max-width: 180px; max-height: 70px; }
    
    .about-grid { gap: 2rem; }
    .about-image-container { height: auto; }
    
    .glowing-card-inner { padding: 2.5rem 1.75rem; }
    
    .group-row { 
        grid-template-columns: 40px 1fr; 
        grid-template-rows: auto auto; 
        gap: 1.5rem; 
        padding: 3rem 0;
    }
    .group-row-right { grid-column: 2; margin-top: 1rem; }
    .group-row-features { margin-top: 1rem; flex-direction: row; flex-wrap: wrap; gap: 1.5rem; }
    .group-row-features li { width: calc(50% - 1rem); }
    .group-row-desc { max-width: 100%; }
}

/* ── Tablet ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    /* Hero: lose the floating pill look on tablets */
    .hero {
        height: auto;
        min-height: 80vh;
        margin: 0;
        border-radius: 0;
        padding: 160px 0 60px;
        align-items: flex-start;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-image {
        height: 420px;
        border-radius: 28px;
    }

    /* Group rows on tablet */
    .group-intro { grid-template-columns: 1fr; gap: 2rem; }
    .group-row { grid-template-columns: 48px 1fr; grid-template-rows: auto auto; }
    .group-row-right { grid-column: 2; }
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-links { display: none; }
    header nav .btn-primary { display: none; }
    
    nav {
        justify-content: center;
        position: relative;
    }
    
    .logo {
        margin: 0 auto;
    }
    
    .logo img {
        margin-left: 0;
    }
    
    .nav-actions {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .theme-toggle-text {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 140px 0 30px;
        min-height: auto;
    }
    .hero h1 { font-size: 2.6rem; }
    .hero p { font-size: 1.1rem; margin-bottom: 2rem; }
    .hero-tagline { font-size: 11px; }
    .hero-image { display: none; } /* hide constellation on small screens */

    /* Stats */
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stat-item h4 { font-size: 2.8rem; }

    /* About */
    .section-header h2 { font-size: 2.2rem; }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image-container { height: auto; }

    /* Contact CTA */
    .contact-box { padding: 3rem 1.5rem; border-radius: 24px; }
    .contact-box h2 { font-size: 2rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    /* Footer branding column is now centered by default */
    .footer-col:not(:first-child) {
        text-align: center;
        align-items: center;
    }
    .footer-col:not(:first-child) .footer-desc { text-align: center; }
    .contact-item { justify-content: center; }
    .contact-item p, .contact-item a { text-align: center; }
    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
        align-items: center;
    }

    /* Section padding */
    section { padding: 70px 0; }
    .container { padding: 0 1.25rem; }
}

