:root {
    --primary: #0097cc;
    --primary-dark: #073042;
    --accent: #ff8c00;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --bg-light: #ffffff;
    --bg-dark: #073042;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

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

/* --- Modern 2026 Effects --- */
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 151, 204, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: move 20s infinite alternate;
}

@keyframes move {
    from { transform: translate(-5%, -5%); }
    to { transform: translate(10%, 10%); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

nav.scrolled {
    padding: 10px 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.logo {
    width: 180px;
    height: auto;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover {
    transform: scale(1.05) rotate(-1deg);
}

.hero-icon {
    width: clamp(100px, 40%, 300px);
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.2));
    animation: float 12s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(1deg); }
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.nav-links a:not(.lang-toggle)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:not(.lang-toggle):hover::after {
    width: 100%;
}

.login-btn {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a4d6b 100%);
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(7, 48, 66, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 48, 66, 0.4);
}

.lang-toggle {
    background: rgba(7, 48, 66, 0.08);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid rgba(7, 48, 66, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative; /* needed so ::after doesn't inherit from parent */
}

.lang-toggle:hover {
    background: var(--primary-dark);
    color: #ffffff;
    border-color: var(--primary-dark);
}

.lang-toggle::after { display: none !important; }

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.3) 100%);
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background: url('/assets/img/home-security.png') no-repeat center center/cover;
    z-index: -1;
    transform: translateY(var(--scroll-y, 0));
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 45px;
    color: #334155;
    font-weight: 400;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 25px;
}

.btn-primary {
    background: var(--primary-dark);
    color: white;
    padding: 20px 45px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(7, 48, 66, 0.2);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    padding: 18px 43px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: white;
}

/* --- Services Section --- */
.services {
    padding: 140px 10%;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 15px;
    color: white;
    font-weight: 800;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* --- Carousel Enhancements --- */
.services-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 60px 5%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.services-carousel .service-card {
    min-width: 45vw;
    flex: 0 0 45vw;
}

@media (max-width: 1024px) {
    .services-carousel .service-card {
        min-width: 60vw;
        flex: 0 0 60vw;
    }
}

@media (max-width: 600px) {
    .services-carousel .service-card {
        min-width: 85vw;
        flex: 0 0 85vw;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 151, 204, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.card-img {
    height: 500px;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-img {
    transform: scale(1.1);
}

.card-content {
    padding: 50px;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.85rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
}

.card-content p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 35px;
    font-size: 1.15rem;
}

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

/* --- Nav link (About Us) --- */
.nav-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 4px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

/* --- About Us Section --- */
.about-section {
    padding: 140px 10%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #052230 100%);
    position: relative;
    overflow: hidden;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 151, 204, 0.12), rgba(0, 151, 204, 0.06));
    border: 1px solid rgba(0, 151, 204, 0.25);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.about-section .section-header h2 {
    color: #ffffff;
}

.about-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 70px;
    margin-bottom: 70px;
}

.about-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 44px 40px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #0CC4E0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 3px 3px 0 0;
}

.about-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 151, 204, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.about-card:hover::before { transform: scaleX(1); }

.about-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 151, 204, 0.1), rgba(0, 151, 204, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.about-card:hover .about-icon-wrap {
    background: linear-gradient(135deg, rgba(0, 151, 204, 0.18), rgba(0, 151, 204, 0.1));
    transform: scale(1.1) rotate(-3deg);
}

.about-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}

.about-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.75;
}

/* --- Stats Bar --- */
.about-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a4d6b 100%);
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: 0 30px 80px rgba(7, 48, 66, 0.3);
    flex-wrap: wrap;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 10px 20px;
}

.stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff, #0CC4E0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(12, 196, 224, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* ===== CONTACT / SMS OPT-IN SECTION ===== */
.contact-section {
    padding: 140px 10%;
    background: linear-gradient(180deg, #052230 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto 50px auto;
}

/* Centered Form Card */
.contact-card-centered {
    max-width: 800px;
    margin: 0 auto 50px auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 36px;
    padding: 48px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card-centered:hover {
    border-color: rgba(0, 151, 204, 0.25);
    box-shadow: 0 40px 100px rgba(0, 151, 204, 0.1);
}

.contact-card-centered::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(12, 196, 224, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.contact-card-centered form {
    position: relative;
    z-index: 2;
}

/* Form Fields */
.cf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.cf-field label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cf-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.cf-icon {
    position: absolute;
    left: 18px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.cf-input-wrap input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px 16px 52px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.cf-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cf-input-wrap input:focus {
    border-color: var(--primary);
    background: rgba(0, 151, 204, 0.06);
    box-shadow: 0 0 15px rgba(0, 151, 204, 0.25);
}

.cf-input-wrap:focus-within .cf-icon {
    color: var(--primary);
    transform: scale(1.05);
}

/* SMS Consent */
.cf-consent {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.cf-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
}

.cf-consent-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 3px;
    accent-color: var(--primary);
    cursor: pointer;
}

.cf-consent-label span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.6;
}

.cf-legal-note {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.cf-consent.shake {
    animation: shake 0.55s ease;
    border-color: rgba(255, 80, 80, 0.3);
    background: rgba(255, 80, 80, 0.02);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    40%       { transform: translateX(6px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}

/* Submit Button */
.cf-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #0cc4e0 100%);
    color: #ffffff;
    border: none;
    border-radius: 18px;
    padding: 20px;
    font-size: 16px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 151, 204, 0.3);
    margin-bottom: 10px;
}

.cf-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(0, 151, 204, 0.5), 0 0 30px rgba(12, 196, 224, 0.3);
    background: linear-gradient(135deg, #05a8df 0%, #0fd8f7 100%);
}

.cf-submit-btn:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(0, 151, 204, 0.3);
}

.cf-submit-btn .material-symbols-rounded {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cf-submit-btn:hover .material-symbols-rounded {
    transform: translateX(6px);
}

/* Success status styling */
.cf-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #4ade80;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 40px 20px;
    text-align: center;
}

.cf-success .material-symbols-rounded {
    font-size: 54px;
}

/* Contact Details Grid ("Formato Tarjeta") */
.contact-details-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto;
}

.cd-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.cd-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 151, 204, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 151, 204, 0.15);
}

.cd-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 151, 204, 0.15), rgba(12, 196, 224, 0.05));
    border: 1px solid rgba(0, 151, 204, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0cc4e0;
    font-size: 26px !important;
    margin-bottom: 18px;
    transition: all 0.4s ease;
}

.cd-item:hover .cd-icon {
    transform: scale(1.1) rotate(-3deg);
    background: linear-gradient(135deg, rgba(0, 151, 204, 0.25), rgba(12, 196, 224, 0.1));
    color: #00efff;
    box-shadow: 0 0 15px rgba(0, 151, 204, 0.2);
}

.cd-label {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.cd-value {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

a.cd-value:hover {
    color: #0cc4e0;
}

.cd-divider {
    display: none;
}

/* Centered Legal Links */
.contact-legal-links-centered {
    margin-top: 40px;
    text-align: center;
}

.contact-legal-links-centered a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-weight: 600;
    font-size: 13.5px;
    transition: color 0.3s ease;
    margin: 0 10px;
}

.contact-legal-links-centered a:hover {
    color: var(--primary);
}

/* Responsive configurations */
@media (max-width: 991px) {
    .contact-details-bar {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { text-align: center; justify-content: center; }
    .cta-group { flex-direction: column; }
    .about-grid { grid-template-columns: 1fr; }
    .stat-divider { display: none; }
    .about-stats { gap: 20px; }
    .cf-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .contact-card-centered {
        padding: 32px 24px;
    }
    
    .cf-consent {
        padding: 16px;
    }
}

