/* OG-NEXUS - Consolidated Professional Styles */
/* Merged from og_style.css and style.css for unified styling */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables - OG-PvP Professional Theme */
:root {
    /* Primary Color Scheme */
    --bg-color: #030712;
    --og-bg-color: #030712;
    --card-bg: rgba(31, 41, 55, 0.8);
    --card-bg-solid: #1f2937;
    --og-card-bg: #1f2937;
    --border-color: rgba(75, 85, 99, 0.3);
    --og-border-color: rgba(129, 140, 153, 0.2);
    --accent-color: #e11d48;
    --og-accent-color: #e11d48;
    --accent-hover: #be123c;
    --og-accent-hover: #be123c;
    --glow-color: rgba(225, 29, 72, 0.5);
    --og-glow-color: rgba(225, 29, 72, 0.5);
    --text-primary: #f9fafb;
    --og-text-primary: #f5f5f5;
    --text-secondary: #d1d5db;
    --og-text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --og-text-muted: #9ca3af;
    --text-accent: var(--accent-color);
    
    /* Additional Professional Colors */
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    
    /* Legacy color variables for JavaScript compatibility */
    --color-slate-900-rgb: 3, 7, 18;
    --color-primary: var(--og-accent-color);
    
    /* Gradients */
    --hero-gradient: linear-gradient(270deg, #030712, #1f2937, #e11d48, #1f2937, #030712);
    --card-gradient: linear-gradient(145deg, rgba(31, 41, 55, 0.8), rgba(15, 23, 42, 0.9));
    
    /* 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), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 25px var(--glow-color);
    
    /* Spacing */
    --container-max-width: 1200px;
    --header-height: 80px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* MYST Logo Background - Subtle for website */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background-image: url('images/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.01;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Responsive watermark sizing */
@media (max-width: 768px) {
    body::before {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    body::before {
        width: 150px;
        height: 150px;
    }
}

/* Typography */
.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 600;
}

.text-accent {
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--glow-color);
}

.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(var(--color-slate-900-rgb), 0.95);
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.nav {
    padding: 1rem 0;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__brand {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--og-accent-color);
    margin: 0;
    letter-spacing: 0.05em;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--og-text-muted);
    margin-top: 0.25rem;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    color: var(--og-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    padding: 0.5rem 0;
    position: relative;
}

.nav__link:hover {
    color: var(--og-accent-color);
}

.og-pvp-link {
    color: var(--og-accent-color) !important;
    font-weight: 600;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--og-text-primary);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    background: var(--hero-gradient);
    background-size: 1000% 1000%;
    animation: gradient-animation 20s ease infinite;
}

/* Hero Background Animation - Matching Dashboard */
.hero-bg {
    background: var(--hero-gradient);
    background-size: 1000% 1000%;
    animation: gradient-animation 20s ease infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 7, 18, 0.6);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero__text {
    max-width: 800px;
}

.hero__title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--og-text-primary);
    line-height: 1.1;
}

.hero__description {
    font-size: 1.25rem;
    color: var(--og-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero__cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--og-accent-color);
    display: block;
    text-shadow: 0 0 10px var(--og-glow-color);
}

.stat__label {
    font-size: 0.875rem;
    color: var(--og-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

/* Service Cards - Professional Design */
.service-card {
    background: var(--card-gradient);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--info-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-color);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    height: 120px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    position: relative;
    background: var(--og-card-bg);
}

.service-card__icon .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    border-radius: 8px 8px 0 0;
}

.service-card:hover .service-card__icon .service-image {
    transform: scale(1.05);
}

.service-card__image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
}

.service-card__content {
    padding: 1.5rem;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--og-text-primary);
    margin-bottom: 0.5rem;
}

.service-card__subtitle {
    font-size: 0.875rem;
    color: var(--og-accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-card__description {
    color: var(--og-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--og-text-muted);
}

.service-card__features li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
}

/* Status Indicators - Matching Dashboard */
.status-indicator {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
}

.status-online { 
    background-color: var(--success-color);
    box-shadow: 0 0 8px var(--success-color);
    animation: pulse 2s infinite;
}

.status-offline { 
    background-color: #ef4444;
    box-shadow: 0 0 8px #ef4444;
}

.status-unknown { 
    background-color: var(--text-muted);
    box-shadow: 0 0 8px var(--text-muted);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Buttons - Professional Styling */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.btn--primary:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn--outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn--outline:hover {
    background-color: var(--accent-color);
    color: white;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--og-card-bg);
}

.services__header {
    text-align: center;
    margin-bottom: 4rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Cards and Sections */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--og-text-primary);
}

.section-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Experience Section */
.experience {
    padding: 5rem 0;
    background: var(--og-bg-color);
}

.experience__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.experience__text .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.experience__text .section-description {
    text-align: left;
    margin: 0 0 2rem 0;
    max-width: none;
}

.experience__highlights {
    margin-bottom: 2rem;
}

.highlight {
    margin-bottom: 1.5rem;
}

.highlight h3 {
    color: var(--og-text-primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.highlight p {
    color: var(--og-text-muted);
}

.experience__technologies h4 {
    color: var(--og-text-primary);
    margin-bottom: 1rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-item {
    background: var(--og-card-bg);
    color: var(--og-text-secondary);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    border: 1px solid var(--og-border-color);
    transition: var(--transition-fast);
}

.tech-item:hover {
    background: var(--og-accent-color);
    color: white;
    transform: translateY(-1px);
}

.experience__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.experience__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Cross Promotion Section */
.cross-promotion {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--og-card-bg), rgba(225, 29, 72, 0.1));
    border-top: 2px solid var(--og-accent-color);
}

.cross-promotion__content {
    text-align: center;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.promo-card {
    background: var(--og-bg-color);
    border: 1px solid var(--og-border-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.promo-card:hover {
    transform: translateY(-4px);
    border-color: var(--og-accent-color);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.2);
}

.promo-icon {
    width: 60px;
    height: 60px;
    background: var(--og-accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.promo-card h3 {
    color: var(--og-text-primary);
    margin-bottom: 0.75rem;
}

.promo-card p {
    color: var(--og-text-muted);
    font-size: 0.875rem;
}

.cross-promotion__cta {
    margin-top: 2rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--og-bg-color);
}

.cta__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta__title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--og-text-primary);
    margin-bottom: 1rem;
}

.cta__description {
    font-size: 1.125rem;
    color: var(--og-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta__contact p {
    color: var(--og-text-muted);
}

.cta__contact a {
    color: var(--og-accent-color);
    text-decoration: none;
}

.cta__contact a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--og-card-bg);
    border-top: 1px solid var(--og-border-color);
    padding: 3rem 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__brand h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--og-accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer__brand p {
    color: var(--og-text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer__location {
    font-style: italic;
    color: var(--og-text-muted);
    font-size: 0.875rem;
}

.footer__column h4 {
    color: var(--og-text-primary);
    margin-bottom: 1rem;
}

.footer__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__column li {
    margin-bottom: 0.5rem;
}

.footer__column a {
    color: var(--og-text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer__column a:hover {
    color: var(--og-accent-color);
}

.footer__bottom {
    border-top: 1px solid var(--og-border-color);
    padding-top: 1rem;
    text-align: center;
    color: var(--og-text-muted);
    font-size: 0.875rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Spacing Utilities */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

.m-4 { margin: 1rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

/* Responsive Text Sizes */
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

/* Background Utilities */
.bg-transparent { background-color: transparent; }
.bg-card { background-color: var(--card-bg); }
.bg-accent { background-color: var(--accent-color); }

/* Border Utilities */
.border { border: 1px solid var(--border-color); }
.border-accent { border-color: var(--accent-color); }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }

/* Shadow Utilities */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Animation Utilities */
.transition { transition: var(--transition-smooth); }
.transition-fast { transition: var(--transition-fast); }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.10); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }

/* Professional Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Professional Hover Effects */
.hover-glow:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

/* Animation Classes for JavaScript */
.aos-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
body:not(.loaded) .hero__title,
body:not(.loaded) .hero__description,
body:not(.loaded) .hero__cta,
body:not(.loaded) .hero__stats {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

/* Image Loading */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Focus States */
.btn:focus,
.nav__link:focus {
    outline: 2px solid var(--og-accent-color);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .lg\:grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
    
    .experience__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience__image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .md\:grid-cols-2 { grid-template-columns: repeat(1, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(1, 1fr); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(1, 1fr); }

    .nav__menu {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__cta {
        flex-direction: column;
    }

    .hero__stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .text-4xl { font-size: 1.875rem; }
    .text-5xl { font-size: 2.25rem; }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 1.25rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat__number {
        font-size: 2rem;
    }
    
    .py-16 { padding-top: 2rem; padding-bottom: 2rem; }
    .py-12 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
}

/* Print Styles */
@media print {
    .header,
    .hero__background,
    .footer {
        background: white !important;
        color: black !important;
    }
}