:root {
    --primary: #0a0a0a;
    --secondary: #1a1a1a;
    --accent: #656464;
    --accent-red: #da393f;
    --light: #f5f5f5;
    --dark: #0a0a0a;
    --gray: #8a8a8a;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 0;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover:before {
    left: 0;
}

.btn:hover {
    color: white;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
}

.btn-accent:before {
    background: var(--primary);
}

/* About section button hover -> red */
.about .btn:before {
    background: var(--accent-red);
}
.about .btn:hover {
    color: white;
    border-color: var(--accent-red);
}

section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-header p {
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ========================================
   PRELOADER
   ======================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

.loader-logo {
    height: 100px;
    width: auto;
    margin-bottom: 30px;
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    position: relative;
    margin-top: 20px;
}

.loader-progress:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent-red);
    animation: loadProgress 3s ease-in-out forwards;
}

@keyframes loadProgress {
    to { width: 100%; }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 15px 0;
}

header.scrolled {
    background-color: rgba(255,255,255,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    font-size: 0.95rem;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-red);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-red);
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent-red);
}

.nav-links a.active:after {
    width: 100%;
    background-color: var(--accent-red);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary);
    transition: var(--transition);
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

/* ========================================
   HERO SECTION (index.html)
   ======================================== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.9)), url('https://storage.googleapis.com/msgsndr/HTJQ5aYEiiYkaU5R4rMD/media/68e943c81d7a920598424dba.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    color: white;
    line-height: 1.1;
    font-weight: 500;
}

.typed-text {
    color: var(--accent);
    position: relative;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.hero .btn {
    color: white;
    border-color: white;
}

.hero .btn:before {
    background: white;
}

.hero .btn:hover {
    color: var(--primary);
}

.hero .btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.hero .btn-accent:before {
    background: white;
}

.hero .btn-accent:hover {
    color: var(--primary);
}

#connectivity-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ========================================
   STOCK TICKER
   ======================================== */
.stock-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 0;
    overflow: hidden;
    z-index: 3;
}

.ticker-container {
    display: flex;
    animation: ticker 60s linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    margin-right: 40px;
    white-space: nowrap;
}

.ticker-symbol {
    font-weight: 600;
    margin-right: 8px;
    color: var(--accent);
}

.ticker-price {
    font-weight: 500;
    margin-right: 5px;
}

.ticker-change {
    font-size: 0.9rem;
}

.positive {
    color: #00d09c;
}

.negative {
    color: #ff4d4d;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background-color: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
}

/* ========================================
   VISION & MISSION
   ======================================== */
.vision-mission {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.vm-item {
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.vm-item h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-choose-us {
    background-color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(10,10,10,0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* ========================================
   USPs SECTION
   ======================================== */
.usps {
    background-color: white;
    padding: 100px 0;
}

.usps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 40px 30px;
    border: 1px solid rgba(10,10,10,0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-red);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover:before {
    left: 0;
}

.service-card:hover {
    color: white;
    transform: translateY(-10px);
}

.service-card:hover h3,
.service-card:hover p {
    color: white;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card p {
    transition: var(--transition);
    color: var(--gray);
    line-height: 1.6;
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.values .section-header h2 {
    color: white !important;
}

.values .section-header p {
    color: rgba(255,255,255,0.8) !important;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 25px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
    background-color: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    margin-top: 50px;
}

.process-steps:before {
    display: none;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 160px;
    height: 160px;
    background: white;
    color: var(--primary);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 500;
    margin: 0 auto 30px;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-number:hover {
    background: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
    transform: scale(1.05);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--accent-red);
    margin-top: 5px;
}

.contact-details h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-control {
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(10,10,10,0.2);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: transparent;
    color: var(--primary);
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Send Message button hover -> red */
.contact-form .btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
}
.contact-form .btn-accent:before {
    background: var(--accent-red);
}
.contact-form .btn-accent:hover {
    color: white;
    border-color: var(--accent-red);
}

/* ========================================
   PRODUCTS PAGE - PAGE HEADER
   ======================================== */
.page-header {
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.9)), url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ========================================
   PRODUCTS GRID
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 30px;
}

.product-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.spec-icon {
    color: var(--accent-red);
}

/* ========================================
   MARKET DATA (products page)
   ======================================== */
.market-data {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.market-data .section-header h2 {
    color: white;
}

.market-data .section-header p {
    color: rgba(255,255,255,0.8);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.data-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.data-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.data-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.data-value {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.data-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========================================
   QUALITY STANDARDS (products page)
   ======================================== */
.quality-standards {
    background-color: var(--light);
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.standard-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.standard-icon {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 25px;
}

.standard-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background-color: var(--primary);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-red);
}

.footer-icon {
    color: var(--accent-red);
    min-width: 16px;
    margin-top: 3px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-red);
    transform: translateY(-5px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
}

.fade-in-visible {
    animation: fadeInUp 0.8s ease forwards;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .usps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .features-grid,
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .products-grid,
    .data-grid,
    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .section-header h2 {
        font-size: 2.5rem;
    }
    .logo-img {
        height: 100px;
    }
}

@media (max-width: 992px) {
    .usps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-content,
    .contact-content,
    .vm-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .logo-img {
        height: 80px;
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
        transition: var(--transition);
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links li {
        margin: 20px 0;
    }
    .hamburger {
        display: block;
    }
    .page-header h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .navbar {
        padding: 15px 0;
    }
    .usps-grid {
        grid-template-columns: 1fr;
    }
    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .products-grid,
    .data-grid,
    .standards-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .logo-img {
        height: 70px;
    }
    .footer-logo {
        height: 40px;
    }
    .page-header h1 {
        font-size: 2.3rem;
    }
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
        transition: var(--transition);
    }
    .logo-img {
        height: 120px;
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 60px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .step-number {
        width: 120px;
        height: 120px;
        font-size: 2rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
}
