/* =========================================================
   Techies2U — Main Stylesheet
   ========================================================= */

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

:root {
    --primary: #111cf1;
    --primary-dark: #0711dc;
    --text-dark: #212529;
    --text-muted: #494c4e;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border: #dee2e6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

/* -------------------------
   Container
   ------------------------- */
.container {
    width: 100%;
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: 1.25rem;
}

/* -------------------------
   Navbar
   ------------------------- */
nav {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

#logo-tech {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

.nav-links a {
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.2s;
}

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

/* -------------------------
   Hamburger
   ------------------------- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* -------------------------
   Buttons
   ------------------------- */
.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    text-align: center;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-lg {
    padding: 0.65rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* -------------------------
   Sections
   ------------------------- */
.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    font-weight: 600;
}

/* -------------------------
   Hero
   ------------------------- */
#hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease-out;
}

#hero.in-view .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 16, 35, 0.88) 0%,
        rgba(8, 16, 35, 0.70) 45%,
        rgba(8, 16, 35, 0.35) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
    padding-bottom: 5rem;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
}

#hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

#hero .hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2.25rem;
    line-height: 1.7;
    max-width: 560px;
    margin-inline: auto;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.btn-hero-outline {
    display: inline-block;
    padding: 0.65rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.75);
    background: transparent;
    color: var(--white);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    text-align: center;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.hero-trust-divider {
    color: rgba(255,255,255,0.35);
    font-weight: 300;
}

/* Tablet: keep photo but adjust framing */
@media (min-width: 768px) and (max-width: 1023px) {
    #hero {
        min-height: 85vh;
    }
    .hero-bg {
        background-position: center 20%;
    }
}

/* Mobile: hide photo, use solid dark background */
@media (max-width: 767px) {
    #hero {
        min-height: auto;
        padding: 5rem 0;
        background: #081023;
    }
    .hero-bg {
        display: none;
    }
    .hero-overlay {
        background: none;
    }
    #hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }
    .hero-trust {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
}

/* -------------------------
   Icon Circle
   ------------------------- */
/* Duotone pill icon badge */
.icon-circle {
    width: auto;
    height: auto;
    border-radius: 999px;
    background: linear-gradient(135deg, #030dce 0%, #38bdf8 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.15rem 2.5rem;
    flex-shrink: 0;
    margin: 0 auto 1.1rem;
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.30);
    transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover .icon-circle {
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.45);
    transform: translateY(-2px);
}

.icon-circle svg {
    width: 3.4rem;
    height: 3.4rem;
    fill: currentColor;
}

/* Compact pill for contact section */
.icon-circle-sm {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    box-shadow: none;
}

.icon-circle-sm svg {
    width: 1.2rem;
    height: 1.2rem;
}

/* -------------------------
   Services
   ------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5rem;
    row-gap: 5.5rem;
}

.service-card {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* -------------------------
   Connected Steps — see below
   ------------------------- */

/* -------------------------
   Connected Steps
   ------------------------- */
.steps-connected {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 3rem;
    position: relative;
}

.step-item {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.step-number-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 1.25rem;
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.12);
}

.step-line {
    position: absolute;
    top: 50%;
    left: calc(50% + 26px);
    right: calc(-50% + 26px);
    height: 2px;
    border-top: 2px dashed rgba(13, 110, 253, 0.35);
    transform: translateY(-50%);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid rgba(13, 110, 253, 0.15);
}

.step-icon svg {
    width: 1.6rem;
    height: 1.6rem;
    fill: currentColor;
}

.step-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps-connected {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-line {
        display: none;
    }
}

/* -------------------------
   Testimonials
   ------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.25s, transform 0.25s;
}

.testimonial-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.7;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------
   Sticky Mobile Call Button
   ------------------------- */
.sticky-call {
    display: none;
}

@media (max-width: 768px) {
    .sticky-call {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 200;
        background: var(--primary);
        color: var(--white);
        font-size: 1.05rem;
        font-weight: 700;
        padding: 1rem;
        text-align: center;
        box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.18);
        /* keep space above the device home bar */
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    }

    .sticky-call svg {
        width: 1.2rem;
        height: 1.2rem;
        fill: currentColor;
        flex-shrink: 0;
    }

    .sticky-call:hover {
        background: var(--primary-dark);
    }

    /* Push footer content up so sticky bar doesn't overlap */
    body {
        padding-bottom: 64px;
    }
}

/* -------------------------
   Contact Section
   ------------------------- */
#contact-footer {
    background: var(--bg-light);
    padding: 4rem 0;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
}

.contact-item .icon-circle-sm {
    flex-shrink: 0;
    margin: 0;
}

.contact-item h6 {
    font-weight: 600;
    margin-bottom: 0.1rem;
    font-size: 1.2rem;
}

.contact-item p {
    margin: 0;
    font-size: 1.2rem;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.25rem;
    flex-wrap: wrap;
}

.contact-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    transition: opacity 0.2s;
}

.contact-social a:hover {
    opacity: 0.85;
    color: inherit;
}

.contact-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.contact-social-fb {
    background: #1877F2;
    color: #fff;
}

.contact-social-wa {
    background: #25D366;
    color: #fff;
}

/* -------------------------
   Contact Form
   ------------------------- */
.contact-form {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    font-size: 1.2rem;
}

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

.form-control {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1.2rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

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

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236c757d' d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 0.85rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

select.form-control:invalid,
select.form-control option[value=""] {
    color: var(--text-muted);
}

/* Form feedback messages */
.form-msg {
    display: none;
    margin-top: 0.75rem;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 1.2rem;
    text-align: center;
}

.form-msg.success {
    background: #d1e7dd;
    color: #0a3622;
    display: block;
}

.form-msg.error {
    background: #f8d7da;
    color: #58151c;
    display: block;
}

/* -------------------------
   Navbar phone number
   ------------------------- */
.nav-phone {
    display: flex;
    align-items: center;
}

.nav-phone a {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    transition: color 0.2s;
}

.nav-phone a:hover {
    color: var(--primary-dark);
}

.nav-phone svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .nav-phone {
        display: none;
    }
}

/* -------------------------
   FAQ
   ------------------------- */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 1.1rem 1.4rem;
    text-align: left;
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s, color 0.2s;
}

.faq-question:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.faq-item.open .faq-question {
    color: var(--primary);
    background: var(--bg-light);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.25s;
}

.faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
}

.faq-item.open .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.4rem;
    background: var(--white);
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0.85rem 1.4rem 1.2rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0;
}

.faq-answer strong {
    color: var(--text-dark);
}

/* -------------------------
   Service Areas — Split Layout
   ------------------------- */
.areas-split {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 2rem;
    align-items: stretch;
    min-height: 420px;
}

.areas-map-col {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    line-height: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    min-height: 380px;
}

.areas-map-col iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
    border: 0;
}

.areas-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 2rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.areas-card h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.areas-card-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex: 1;
    align-content: flex-start;
}

.area-tag {
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    cursor: default;
}

.area-tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.areas-note {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.areas-note a {
    color: var(--primary);
    font-weight: 600;
}

.areas-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .areas-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .areas-map-col,
    .areas-map-col iframe {
        min-height: 280px;
    }
}

/* -------------------------
   Footer
   ------------------------- */
footer {
    background: #212529;
    color: #adb5bd;
    padding: 2rem 0;
}

.footer-simple {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #adb5bd;
    transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.footer-social svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.footer-simple p {
    margin: 0;
}

.footer-simple a {
    color: #adb5bd;
    transition: color 0.2s;
}

.footer-simple a:hover {
    color: #fff;
}

.footer-simple-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-simple-links a {
    color: #adb5bd;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-simple-links a:hover {
    color: #fff;
}

@media (max-width: 600px) {
    .footer-simple {
        flex-direction: column;
        text-align: center;
    }
    .footer-simple-links {
        justify-content: center;
    }
    .footer-right {
        align-items: center;
    }
}

/* -------------------------
   Responsive
   ------------------------- */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: 1rem 1.25rem;
        z-index: 99;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 2.5rem;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
    }
}
