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

body {
    font-family: 'Aptos', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

/* Header */
.header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 40px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 12px 16px;
    border-radius: 6px;
}

.nav a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav a.contact-btn {
    background: #1e3a8a;
    color: white;
    border-radius: 8px;
}

.nav a.contact-btn:hover {
    background: #1e40af;
    color: white;
}

/* Scrolled state navigation */
.header.scrolled .nav a {
    color: #28303b;
}

.header.scrolled .nav a:hover {
    color: #1e3a8a;
}

/* Contact page header - always white background */
body.contact-page .header {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.contact-page .nav a {
    color: #28303b;
}

body.contact-page .nav a:hover {
    color: #1e3a8a;
}

body.contact-page .mobile-menu-toggle span {
    background: #28303b;
}

/* About page header - always white background */
body.about-page .header {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.about-page .nav a {
    color: #28303b;
}

body.about-page .nav a:hover {
    color: #1e3a8a;
}

body.about-page .mobile-menu-toggle span {
    background: #28303b;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Scrolled state mobile menu */
.header.scrolled .mobile-menu-toggle span {
    background: #28303b;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    color: #28303b;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #1e3a8a;
}

.mobile-nav a.contact-btn {
    background: #1e3a8a;
    color: white;
    border-radius: 8px;
    border: none;
    padding: 12px 20px;
    text-align: center;
    border-bottom: none;
}

.mobile-nav a.contact-btn:hover {
    background: #1e40af;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    color: white;
}

.slide h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ef4444;
    color: white;
}

.btn-primary:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #475569;
    border: 2px solid #475569;
}

.btn-secondary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.679);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #1e3a8a;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.dot.active {
    background: #3b82f6;
    border-color: white;
    transform: scale(1.3);
}

/* Four Forces Section */
.four-forces {
    padding: 5rem 2rem;
    background: #f8fafc;
    text-align: center;
}

.four-forces-container {
    max-width: 1200px;
    margin: 0 auto;
}

.four-forces h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.four-forces p {
    font-size: 1.2rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.capabilities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-block {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #f1f5f9;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.capability-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.capability-block:hover::before {
    transform: scaleX(1);
}

.capability-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #e2e8f0;
}

.capability-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.capability-block:hover .capability-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
}

.capability-block:nth-child(1) .capability-icon {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.capability-block:nth-child(2) .capability-icon {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.capability-block:nth-child(3) .capability-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.capability-block:nth-child(4) .capability-icon {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.capability-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.capability-block p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 200px;
}

/* NAICS Section */
.naics-section {
    padding: 5rem 2rem;
    background: white;
}

.naics-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.naics-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.naics-subheading {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.naics-companies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.naics-company-box {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #1e3a8a;
    text-align: left;
    transition: all 0.3s ease;
}

.naics-company-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.naics-company {
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.naics-code {
    font-weight: 600;
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.naics-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.hero-bottom-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Clients Section */
.clients-section {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.clients-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.client-logo {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.client-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/* About Page Styles */
.about-section {
    padding: 8rem 2rem 5rem;
    background: white;
    min-height: 100vh;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-intro {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 4rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.partner-block {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.partner-logo {
    width: 100%;
    height: 120px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DBDBDB;
    border-radius: 10px;
    padding: 10px;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
}

.partner-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.8rem;
}

.partner-service {
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

.core-capabilities {
    text-align: center;
}

.core-capabilities h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.core-capabilities p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

.mission-statement {
    text-align: center;
    margin: 4rem 0;
    padding: 2rem;
    background: #f1f5f9;
    border-radius: 15px;
}

.mission-statement h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-statement p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.capability-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.capability-downloads,
.special-news {
    background: #1e3a8a;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.capability-downloads h3,
.special-news h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Page Styles */
.contact-section {
    padding: 8rem 2rem 5rem;
    background: white;
    min-height: 100vh;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-intro {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-row.three-columns {
    grid-template-columns: 1fr 1fr 1fr;
}

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

.form-group label {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Aptos', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

/* Certifications Section */
.certifications-section {
    padding: 4rem 2rem;
    background: #1e3a8a;
    color: white;
}

.certifications-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.special-news {
}

.special-news h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
}

.certifications-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cert-logo {
    background: white;
    color: #1e3a8a;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cert-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cert-logo .cert-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cert-logo .cert-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
    color: #64748b;
}

.sba-cert {
    min-width: 180px;
}

/* Diagonal Footer */
.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e3a8a 60%, #dc2626 60%, #dc2626 100%);
    position: relative;
    padding: 3rem 2rem;
    color: white;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, transparent 58%, #dc2626 58%, #dc2626 100%);
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-text p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-right {
    text-align: right;
}

.footer-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

body .mobile-menu-toggle span {
    background: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
        height: 80px;
        padding: 15px 0;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        color: #000;
        display: flex;
    }

    .header {
        position: relative;
    }

    .hero {
        height: 100vh;
    }

    .slide h1 {
        font-size: 2.5rem;
    }

    .slide p {
        font-size: 1.1rem;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 250px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-prev {
        left: 1rem;
    }

    .slider-next {
        right: 1rem;
    }

    .four-forces {
        padding: 3rem 1rem;
    }

    .four-forces h2 {
        font-size: 2rem;
    }

    .capabilities {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .capability-block {
        padding: 2rem 1.5rem;
    }

    .naics-companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-section {
        padding: 6rem 1rem 4rem;
    }

    .about-section h1 {
        font-size: 2.5rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .naics-companies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partner-block {
        padding: 1rem;
    }

    .partner-logo {
        height: 100px;
    }

    .mission-statement h2 {
        font-size: 1.5rem;
    }

    .capability-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-section {
        padding: 6rem 1rem 4rem;
    }

    .contact-section h1 {
        font-size: 2.5rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row.three-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .certifications-logos {
        gap: 1rem;
    }

    .cert-logo {
        min-width: 120px;
        padding: 1.5rem 1rem;
    }

    .sba-cert {
        min-width: 140px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .slide h1 {
        font-size: 2rem;
    }

    .slide p {
        font-size: 1rem;
    }

    .four-forces h2 {
        font-size: 1.5rem;
    }
}