/* ================= ROOT VARIABLES ================= */
:root {
    --primary: #16a34a;
    --primary-light: #22c55e;
    --dark: #0f172a;
    --text: #1e293b;
    --muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
}

.payin-hero {
    position: relative;
    height: 420px;
    margin-top: 62px;
    overflow: hidden;
}

/* IMAGE */
.payin-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.payin-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center,
            rgba(34, 197, 94, 0.18),
            transparent 60%
        ),
        linear-gradient(180deg, rgb(2 6 23 / 44%), rgba(2, 6, 23, 0));
    z-index: 1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .payin-hero {
        height: 340px;
    }

    .payin-hero h1 {
        font-size: 38px;
    }
}

@media (max-width: 500px) {
    .payin-hero {
        height: 220px;
    }
}

/* ================= GLOBAL WRAPPER ================= */
.compliance-wrapper {
    position: relative;
    background: var(--bg-light);
    color: var(--text);
    overflow: hidden;
}

/* ================= HERO SECTION ================= */
.compliance-hero {
    /* min-height: 90vh; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 8%;
    background: linear-gradient(120deg, #f0fdf4, #ffffff);
    position: relative;
}

.hero-left {
    max-width: 620px;
}

.hero-left h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-left p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 35px;
    line-height: 1.7;
}

.spp {
    background: linear-gradient(135deg, #13572e, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Badges */
.hero-badges span {
    display: inline-block;
    padding: 10px 20px;
    margin: 8px 10px 0 0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    background: #ecfdf5;
    color: var(--primary);
    border: 1px solid #bbf7d0;
    transition: all 0.3s ease;
}

.hero-badges span:hover {
    background: var(--primary);
    color: #fff;
}

/* 3D Shield */
#shield-canvas {
    width: 420px;
    height: 420px;
}

/* ================= SECTION SPACING ================= */
.split-section,
.risk-section {
    padding: 100px 8%;
}

/* Section Heading */
.section-head {
    text-align: center;
    margin-bottom: 70px;
}

.section-head h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark);
}

.section-head p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 16px;
}

/* ================= CERTIFICATION CARDS ================= */
/* Grid */
.cert-section {
    position: relative;
    padding: 100px 5%;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc, #ecfdf5);
}

/* Neural Background */
#neural-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.section-head,
.card-grid {
    position: relative;
    z-index: 2;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    perspective: 2000px;
}

/* Card */
.glass-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Micro particle canvas */
.micro-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Card Inner */
.card-inner {
    position: relative;
    padding: 50px 40px;
    border-radius: 24px;
    background: linear-gradient(145deg, #d8f5bc, #f1f5f9);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: 0.4s ease;
}

/* Metallic Animated Border */
.metal-edge {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(120deg, #22c55e, #ffffff, #22c55e, #0ea5e9);
    background-size: 300% 300%;
    animation: metalMove 6s linear infinite;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes metalMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

/* Hover */
.glass-card:hover .card-inner {
    transform: rotateX(8deg) rotateY(-8deg) scale(1.05);
    box-shadow:
        0 40px 100px rgba(34, 197, 94, 0.25),
        0 30px 70px rgba(0, 0, 0, 0.15);
}

/* Content */
.glass-card img {
    width: 70px;
    margin-bottom: 20px;
}

.glass-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.glass-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* ================= SECTION ================= */
.regulatory-section {
    position: relative;
    padding: 100px 8%;
    overflow: hidden;
}

/* ================= OVERLAY (MORE TRANSPARENT) ================= */
.reg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(5, 25, 18, 0.55),
        rgba(5, 25, 18, 0.45)
    );
    backdrop-filter: blur(2px);
    z-index: 0;
}

/* ================= GRID ================= */
.regulatory-content-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 90px;
}

/* ================= LEFT SIDE ================= */
.section-tag {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reg-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #ffffff;
}

.reg-intro {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 35px;
    line-height: 1.8;
}

/* ================= MINI CARDS (DARK GLASS) ================= */
.mini-card {
    padding: 22px;
    border-radius: 18px;
    background: rgba(15, 35, 25, 0.65);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(34, 197, 94, 0.25);
    margin-bottom: 22px;
    transition: 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.mini-card h4 {
    color: #ffffff;
    margin-bottom: 8px;
}

.mini-card p {
    color: #cbd5e1;
}

.mini-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 90px rgba(34, 197, 94, 0.35);
    cursor: pointer;
}

/* ================= RIGHT SIDE ================= */
.reg-right {
    display: grid;
    gap: 35px;
}

/* ================= BIG CARDS (DARK GLASS FLOATING) ================= */
.big-card {
    cursor: pointer;
    padding: 35px;
    border-radius: 24px;
    background: rgba(15, 35, 25, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    transition: 0.5s ease;
    transform-style: preserve-3d;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.big-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #ffffff;
}

.big-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #d1d5db;
}

/* Hover 3D Effect */
.big-card:hover {
    transform: rotateX(6deg) rotateY(-6deg) scale(1.04);
    cursor: pointer;
    box-shadow:
        0 60px 140px rgba(34, 197, 94, 0.35),
        0 30px 90px rgba(0, 0, 0, 0.5);
}

/* ================= MULTI COLOR ================= */
.multi-green {
    color: #4ade80;
    font-weight: 600;
}

.multi-blue {
    color: #b9d56f;
    font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .regulatory-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .reg-left,
    .reg-right {
        margin: auto;
    }
}

/* ================= RISK SECTION ================= */

.risk-section {
    padding: 100px 5%;
    background: radial-gradient(circle at center, #ecfdf5, #f8fafc);
}

/* WRAPPER GRID */
.risk-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

/* ================= LEFT CONTENT ================= */

.risk-content {
    max-width: 550px;
}

.section-head h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.section-head p {
    font-size: 15px;
    color: #475569;
}

.risk-intro {
    margin-top: 30px;
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}

/* ================= ORBIT ================= */

.orbit-container {
    position: relative;
    width: 600px;
    height: 600px;
    margin: auto;
}

/* Glow Ring */
.orbit-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.25);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.3);
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* CENTER IMAGE */
.orbit-core {
    position: absolute;
    width: 262px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    overflow: hidden;
    z-index: 3;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(34, 197, 94, 0.25);
}

.orbit-core img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ORBIT CARDS */
.orbit-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -55px;
    left: -56px;
}

.orbit-card {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #ecfdf5);
    border: 1px solid rgba(34, 197, 94, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s ease;
}

.orbit-card h4 {
    font-size: 12px;
    margin-top: 6px;
}

/* Icon */
.orbit-card .icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

/* Hover */
.orbit-card:hover {
    transform: scale(1.12);
    background: linear-gradient(135deg, #022c22, #064e3b);
    color: #fff;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1000px) {
    .risk-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .orbit-container {
        margin-top: 60px;
        width: 500px;
        height: 500px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .orbit-container {
        width: 380px;
        height: 380px;
    }

    .orbit-core {
        width: 220px;
        height: 160px;
    }

    .orbit-glow {
        width: 300px;
        height: 300px;
    }

    .orbit-card {
        width: 100px;
        height: 100px;
    }

    .orbit-card h4 {
        font-size: 11px;
    }
}

/* ================= ENCRYPTION SECTION ================= */

.encryption-section {
    padding: 100px 6%;
    background: linear-gradient(120deg, #fef6ef 0%, #f8fafc 50%, #e0f2fe 100%);
}

/* Container */
.enc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

/* ================= LEFT CONTENT ================= */

.enc-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.enc-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #0f172a;
}

.highlight {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.enc-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
}

/* Features */
.enc-features {
    display: grid;
    gap: 16px;
}

.enc-feature {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.enc-feature:hover {
    transform: translateX(6px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    cursor: pointer;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    margin-right: 12px;
}

/* ================= IMAGE SIDE ================= */

.enc-image {
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    max-width: 420px;
    border-radius: 24px;
    background: #ffffff;
    padding: 25px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.1),
        0 0 60px rgba(34, 197, 94, 0.15);
    transition: 0.4s ease;
}

.image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow:
        0 60px 140px rgba(34, 197, 94, 0.25),
        0 40px 120px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .enc-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .enc-content {
        max-width: 600px;
        margin: auto;
    }

    .enc-feature {
        justify-content: center;
    }
}

/* ================= MONITOR SECTION ================= */

.monitor-section {
    padding: 100px 8%;
    text-align: center;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(34, 197, 94, 0.05),
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(59, 130, 246, 0.05),
            transparent 40%
        ),
        linear-gradient(327deg, #fef6efb5, #fdf2f8b3, #ecfdf5);
}

/* Heading */
.monitor-section .section-head h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #0f172a;
}

.monitor-section .section-head p {
    font-size: 16px;
    color: #475569;
    max-width: 650px;
    margin: auto;
}

/* ================= GRID ================= */

.monitor-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    perspective: 1500px;
}

/* ================= CARD ================= */

.monitor-card {
    position: relative;
    padding: 45px 35px;
    border-radius: 24px;

    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.9),
        rgba(240, 253, 244, 0.8)
    );

    border: 1px solid rgba(34, 197, 94, 0.15);

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);

    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.16, 0.8, 0.25, 1);
    overflow: hidden;
}

/* Animated Border */
.monitor-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;

    background: linear-gradient(
        120deg,
        rgba(34, 197, 94, 0.4),
        rgba(37, 99, 235, 0.3),
        rgba(124, 58, 237, 0.3),
        rgba(34, 197, 94, 0.4)
    );

    background-size: 300% 300%;
    animation: borderFlow 8s linear infinite;

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

/* ================= ICON ================= */

.monitor-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;

    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    font-size: 22px;

    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.4);
    transition: 0.5s ease;
}

/* ================= TEXT ================= */

.monitor-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
}

.monitor-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
}

/* ================= HOVER ================= */

.monitor-card:hover {
    transform: translateY(-15px) rotateX(6deg) scale(1.05);

    background: linear-gradient(
        135deg,
        rgba(4, 25, 18, 0.95),
        rgba(6, 44, 34, 0.95)
    );

    box-shadow:
        0 60px 140px rgba(15, 23, 42, 0.25),
        0 30px 90px rgba(34, 197, 94, 0.3);
}

.monitor-card:hover h4,
.monitor-card:hover p {
    color: #ecfdf5;
}

.monitor-card:hover .monitor-icon {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transform: translateY(-6px) scale(1.1);
}

/* Glow effect */
.card-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        600px circle at 50% 0%,
        rgba(34, 197, 94, 0.08),
        transparent 70%
    );
    opacity: 0;
    transition: 0.4s ease;
}

.monitor-card:hover .card-glow {
    opacity: 1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .monitor-section {
        padding: 100px 6%;
    }

    .monitor-section .section-head h2 {
        font-size: 32px;
    }

    .monitor-grid {
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .monitor-card {
        padding: 35px 25px;
    }

    .monitor-card h4 {
        font-size: 18px;
    }
}

/* ================= ACCESS SECTION ================= */

.access-section {
    padding: 100px 6%;
    background:
        radial-gradient(circle at 20% 30%, rgba(34,197,94,.05), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59,130,246,.05), transparent 40%),
        linear-gradient(120deg, #fef6ef, #ecfdf5);
}

/* Layout */
.access-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

/* ================= LEFT SIDE ================= */

.access-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(34,197,94,.1);
    color: #16a34a;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.access-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #0f172a;
}

.highlight {
    background: linear-gradient(135deg,#16a34a,#22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.access-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 40px;
}

/* Cards */
.access-cards {
    display: grid;
    gap: 30px;
}

/* Individual Card */
.access-card {
    position: relative;
    padding: 35px;
    border-radius: 20px;

    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.9),
        rgba(240,253,244,0.8)
    );

    border: 1px solid rgba(34,197,94,0.15);

    box-shadow:
        0 20px 50px rgba(15,23,42,0.08),
        inset 0 1px 0 rgba(255,255,255,0.6);

    transition: .5s cubic-bezier(.16,.8,.25,1);
    overflow: hidden;
}

.access-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 50px 120px rgba(34,197,94,.25),
        0 30px 80px rgba(0,0,0,.15);

    background: linear-gradient(
        135deg,
        rgba(4,25,18,0.95),
        rgba(6,44,34,0.95)
    );
}

.access-card:hover h4,
.access-card:hover p {
    color: #ecfdf5;
}

/* Icon */
.access-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;

    background: linear-gradient(135deg,#16a34a,#22c55e);
    color: #fff;
    font-size: 20px;

    box-shadow: 0 18px 40px rgba(34,197,94,.4);
    transition: .4s ease;
}

.access-card:hover .access-icon {
    background: linear-gradient(135deg,#2563eb,#7c3aed);
    transform: translateY(-6px) scale(1.1);
}

/* Glow overlay */
.card-glow {
    position:absolute;
    inset:0;
    border-radius:inherit;
    background: radial-gradient(
        600px circle at 50% 0%,
        rgba(34,197,94,0.08),
        transparent 70%
    );
    opacity:0;
    transition:.4s ease;
}

.access-card:hover .card-glow {
    opacity:1;
}

/* ================= RIGHT SIDE IMAGE ================= */

.access-right {
    display:flex;
    justify-content:center;
}

.image-box {
    max-width: 420px;
    border-radius: 50px;
    /* background: #ffffff; */
    box-shadow:
        0 40px 100px rgba(0,0,0,.1),
        0 0 60px rgba(34,197,94,.15);
    transition:.4s ease;
}

.image-box:hover {
    cursor: pointer;
    transform: scale(1.1);
    box-shadow:
        0 60px 140px rgba(34,197,94,.25),
        0 40px 120px rgba(0,0,0,.15);
}

.image-box img {
    width:100%;
    display:block;
    border-radius: 50px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
    .access-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .access-cards{
        margin-top:40px;
    }
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    #shield-canvas {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 992px) {
    .compliance-hero,
    .split-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .split-content {
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .compliance-hero {
        padding: 90px 6%;
    }

    .cert-section,
    .split-section,
    .risk-section {
        padding: 90px 6%;
    }

    .hero-left h1 {
        font-size: 34px;
    }
}
