/* Partnership iGaming Marketing Agency - Main Stylesheet */

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

:root {
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --accent-pink: #EC4899;
    --accent-cyan: #06B6D4;
    --accent-orange: #F97316;
    --bg-dark: #0F0A1F;
    --bg-section: #1A1230;
    --text-white: #FFFFFF;
    --text-gray: #A1A1AA;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --container-max: 1400px;
    --section-padding: 8rem;
    --content-padding: 4rem;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 3rem;
    background: rgba(15, 10, 31, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-white);
}

.nav-cta {
    background: var(--gradient-2);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.nav-back {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-back:hover {
    color: var(--text-white);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem var(--content-padding) 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 40%),
                radial-gradient(ellipse at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-2%, 2%) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-2);
    color: white;
    padding: 1.15rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1.15rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Sections */
section {
    padding: var(--section-padding) var(--content-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 5rem;
    font-size: 1.15rem;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
}

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

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

.about-visual {
    position: relative;
    height: 450px;
    background: var(--gradient-1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-visual::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

.disclaimer {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 1.75rem;
    border-radius: 16px;
    margin-top: 2.5rem;
}

.disclaimer p {
    color: var(--accent-orange);
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: rgba(26, 18, 48, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: var(--text-white);
}

.service-card ul {
    list-style: none;
    color: var(--text-gray);
}

.service-card li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1rem;
}

.service-card li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Why Work With Us */
.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 18px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.4);
}

.feature-check {
    width: 36px;
    height: 36px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.feature-item p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* How We Work */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent-pink) 100%);
}

.step {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(26, 18, 48, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 18px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.4);
}

.faq-question {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.15rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.75rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.75rem;
    max-height: 200px;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    font-size: 1.15rem;
}

.contact-form {
    background: rgba(26, 18, 48, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.15rem 1.25rem;
    background: rgba(15, 10, 31, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1.05rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

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

.form-consent {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.form-consent a {
    color: var(--primary);
    text-decoration: none;
}

.form-consent a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: rgba(10, 5, 20, 0.9);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 3.5rem var(--content-padding);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 1rem;
}

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

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

/* Floating elements for decoration */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    top: 15%;
    right: -150px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    bottom: 15%;
    left: -100px;
}

/* Page Header (for Privacy/Terms pages) */
.page-header {
    padding: 10rem 3rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
}

.page-header p {
    color: var(--text-gray);
    font-size: 1.15rem;
}

/* Content (for Privacy/Terms pages) */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.content h2 {
    font-size: 1.75rem;
    margin: 3.5rem 0 1.25rem;
    color: var(--text-white);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.content h2:first-of-type {
    margin-top: 0;
}

.content p {
    color: var(--text-gray);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

.content ul {
    color: var(--text-gray);
    margin-left: 1.75rem;
    margin-bottom: 1.25rem;
}

.content li {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.content a {
    color: var(--primary);
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

.highlight-box {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box p {
    margin: 0;
    font-size: 1.05rem;
}

.warning-box {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.warning-box p {
    color: var(--accent-orange);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Extra Large Screens (2560px+) */
@media (min-width: 2560px) {
    html {
        font-size: 20px;
    }

    :root {
        --container-max: 1800px;
    }
}

/* Large Screens (1920px - default) */
@media (max-width: 1920px) {
    html {
        font-size: 16px;
    }
}

/* Medium-Large Screens (1600px) */
@media (max-width: 1600px) {
    html {
        font-size: 15px;
    }

    :root {
        --container-max: 1200px;
        --section-padding: 6rem;
        --content-padding: 3rem;
    }
}

/* Medium Screens (1366px - common laptop) */
@media (max-width: 1366px) {
    html {
        font-size: 14px;
    }

    :root {
        --container-max: 1100px;
        --section-padding: 5rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header h1 {
        font-size: 3rem;
    }
}

/* Small-Medium Screens (1200px) */
@media (max-width: 1200px) {
    :root {
        --container-max: 960px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-content {
        gap: 3rem;
    }

    .contact-container {
        gap: 3rem;
    }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    html {
        font-size: 14px;
    }

    :root {
        --section-padding: 4.5rem;
        --content-padding: 2.5rem;
    }

    nav {
        padding: 1rem 2rem;
    }

    .nav-links {
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        height: 350px;
        order: -1;
    }

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

    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .page-header {
        padding: 8rem 2rem 3rem;
    }

    .page-header h1 {
        font-size: 2.75rem;
    }

    .content {
        padding: 4rem 2rem;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    :root {
        --section-padding: 4rem;
        --content-padding: 1.5rem;
    }

    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo {
        font-size: 1.25rem;
    }

    .hero {
        padding: 8rem 1.5rem 4rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .process-steps::before {
        left: 25px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step {
        gap: 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-info h2 {
        font-size: 2.25rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .shape-1 {
        width: 250px;
        height: 250px;
        right: -100px;
    }

    .shape-2 {
        width: 180px;
        height: 180px;
        left: -60px;
    }

    .page-header {
        padding: 7rem 1.5rem 2.5rem;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .content {
        padding: 3rem 1.5rem;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .highlight-box,
    .warning-box {
        padding: 1.5rem;
    }

    footer {
        padding: 3rem 2rem;
    }
}

/* Mobile Large (576px) */
@media (max-width: 576px) {
    html {
        font-size: 14px;
    }

    :root {
        --section-padding: 3rem;
        --content-padding: 1.25rem;
    }

    .logo {
        font-size: 1.15rem;
    }

    .nav-cta {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }

    .nav-back {
        font-size: 0.9rem;
    }

    .hero {
        padding: 7rem 1.25rem 3rem;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-visual {
        height: 280px;
    }

    .about-visual svg {
        width: 100px;
        height: 100px;
    }

    .disclaimer {
        padding: 1.25rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 55px;
        height: 55px;
    }

    .feature-item {
        padding: 1.25rem;
    }

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

    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.85rem;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .page-header {
        padding: 6.5rem 1.25rem 2rem;
    }

    .page-header h1 {
        font-size: 1.85rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .content {
        padding: 2.5rem 1.25rem;
    }

    .content h2 {
        font-size: 1.35rem;
        margin: 2.5rem 0 1rem;
    }

    .content p,
    .content li {
        font-size: 1rem;
    }

    .highlight-box,
    .warning-box {
        padding: 1.25rem;
        border-radius: 12px;
    }
}

/* Mobile Small (375px) */
@media (max-width: 375px) {
    html {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 1.65rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.65rem;
    }
}
