/* ================================================================
   Twilight Banking Solutions – Geometric Structured CSS Framework
   Brand: Modern, trustworthy, innovative, geometric_structured style
   Full mobile-first, flex-only layouts, cookie and mobile nav included
==================================================================== */
/* ---------------------------
   CSS RESET & NORMALIZE
---------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}
body {
    line-height: 1.5;
    background: #F7F7F9;
    color: #1F3241;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    min-height: 100vh;
    letter-spacing: 0.005em;
    -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
    box-sizing: inherit;
}
a {
    color: #1F3241;
    text-decoration: none;
    transition: color .2s cubic-bezier(.33,.64,.67,1.54);
}
a:hover, a:focus {
    color: #5CA4A9;
}
img {
    max-width: 100%;
    display: block;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}
ul, ol {
    list-style: none;
}

/* -----------------------------
   TYPOGRAPHY GEOMETRIC STRUCTURE
------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 700;
    color: #1F3241;
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-transform: none;
}
h1 {
    font-size: 2.375rem; /* 38px */
    margin-bottom: 24px;
}
h2 {
    font-size: 1.75rem; /* 28px */
    margin-bottom: 20px;
}
h3 {
    font-size: 1.25rem; /* 20px */
    margin-bottom: 16px;
}
h4 {
    font-size: 1.125rem;
}
p, li {
    font-size: 1rem;
    margin-bottom: 12px;
    font-family: 'Roboto', Arial, sans-serif;
    color: #1F3241;
}
strong {
    font-weight: 700;
}

/* Display font for numbers/hero */
.hero h1, .services h1, .confirmation h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.5rem;
}

/* -----------------------------
   COLOR PALETTE AND SHADOWS
------------------------------- */
:root {
    --primary: #1F3241;
    --secondary: #5CA4A9;
    --accent: #F7F7F9;
    --gray-mid: #D9E2EA;
    --dark: #14202D;
    --white: #fff;
    --black: #131820;
    --card-shadow: 0 2px 16px 0 rgba(31,50,65,0.08);
    --shadow-strong: 0 4px 24px 0 rgba(31,50,65,0.14);
    --trans-fast: .18s cubic-bezier(.33,.64,.67,1.54);
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
}

/* Geometric decoration accents (corners, angled lines) */

/* ----------------------
   GENERIC LAYOUT SYSTEM
------------------------ */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}
.content-wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: var(--accent);
    border-radius: var(--radius-lg);
}

.card-container,
.feature-grid,
.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}

.card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    margin-bottom: 20px;
    padding: 24px;
    position: relative;
    min-width: 260px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 2.5px solid var(--gray-mid);
    transition: box-shadow var(--trans-fast), border-color var(--trans-fast);
}
.card:hover, .feature:hover, .service-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-strong);
    z-index: 2;
}

.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    margin-bottom: 20px;
    border-left: 6px solid var(--secondary);
    font-style: italic;
    transition: box-shadow var(--trans-fast), border-color var(--trans-fast);
}
.testimonial-card strong {
    font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-strong);
    border-color: var(--primary);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.feature, .service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    padding: 24px 20px 20px 20px;
    margin-bottom: 20px;
    min-width: 220px;
    flex: 1 1 260px;
    gap: 12px;
    border: 2.5px solid var(--gray-mid);
    transition: box-shadow var(--trans-fast), border-color var(--trans-fast);
    position: relative;
}
.feature img, .service-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.benefit-list, .values-list, .step-list, .methodologies, .analysis-tools, .use-cases {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-list li, .values-list li, .step-list li, .methodologies li, .analysis-tools li, .use-cases li {
    padding-left: 24px;
    position: relative;
    font-size: 1rem;
}
.benefit-list li::before, .values-list li::before, .step-list li::before, .methodologies li::before, .analysis-tools li::before, .use-cases li::before {
    content: '';
    display: block;
    position: absolute;
    left: 0; top: 7px;
    width: 12px;
    height: 12px;
    background: var(--secondary);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    border-radius: 2px;
}

/* Cards uniform size on large screens */
@media (min-width: 900px) {
    .feature, .service-card {
        min-width: 260px;
        max-width: 340px;
    }
}

/* -----------------------------------
   HEADER & NAVIGATION (DESKTOP/MOBILE)
-------------------------------------- */
header {
    background: var(--white);
    box-shadow: 0 1px 6px rgba(31,50,65,0.05);
    border-bottom: 2.5px solid var(--gray-mid);
    position: sticky;
    top: 0; left: 0; right: 0;
    z-index: 102;
}
header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: 80px;
}
.main-nav {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}
.main-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: var(--primary);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: background .18s, color .18s;
    position: relative;
}
.main-nav a.active, .main-nav a:hover, .main-nav a:focus {
    background: var(--secondary);
    color: var(--white);
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    background: var(--secondary);
    color: var(--white) !important;
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 28px;
    box-shadow: 0 2px 8px 0 rgba(92,164,169,0.09);
    font-size: 1rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-transform: uppercase;
    margin-left: 12px;
    transition: background var(--trans-fast), color var(--trans-fast), transform var(--trans-fast);
}
.cta-btn:hover, .cta-btn:focus {
    background: var(--primary);
    color: var(--secondary) !important;
    transform: translateY(-2px) scale(1.04);
    box-shadow: var(--shadow-strong);
}

/* Hamburger menu styles */
.mobile-menu-toggle {
    display: none;
    background: var(--secondary);
    color: var(--white);
    font-size: 2.2rem;
    border-radius: 50%;
    border: none;
    padding: 6px 18px 8px 18px;
    margin-left: 16px;
    cursor: pointer;
    transition: background .18s, color .18s;
    z-index: 120;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: var(--primary);
    color: var(--secondary);
}

@media (max-width: 992px) {
    header .container {
        height: 68px;
        gap: 18px;
    }
    .cta-btn {
        margin-left: 0;
        padding: 14px 20px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: block;
    }
}

/* ------------
   MOBILE MENU
-------------- */
.mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--primary);
    z-index: 2200;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transform: translateX(-100vw);
    transition: transform 0.32s cubic-bezier(.66,0,.34,1);
    box-shadow: 4px 0 32px 0 rgba(31,50,65,0.13);
    overflow-y: auto;
}
.mobile-menu.active {
    transform: translateX(0);
}
.mobile-menu-close {
    background: none;
    color: var(--white);
    font-size: 2.2rem;
    border: none;
    padding: 8px 22px 8px 8px;
    align-self: flex-end;
    margin: 20px 14px 8px 0;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    transition: color .16s, background .16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
    color: var(--secondary);
    background: rgba(255,255,255,.1);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 14px;
}
.mobile-nav a {
    display: block;
    font-family: 'Montserrat', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 20px 32px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: color .14s, background .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--secondary);
    color: var(--primary);
}

/* ------------------------------------
   HERO SECTIONS & STRUCTURED CALL TO ACTION
--------------------------------------- */
.hero {
    background: var(--primary);
    color: var(--white);
    padding: 72px 0 64px 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 8px 24px rgba(31,50,65,0.095);
}
.hero h1, .hero p {
    color: var(--white);
}
.hero .cta-btn {
    background: var(--secondary);
    color: var(--white);
}
.hero .cta-btn:hover {
    background: var(--white);
    color: var(--primary) !important;
}

.cta {
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 60px;
    padding: 44px 20px;
}
.cta h2 {
    margin-bottom: 10px;
}
.cta .cta-btn {
    margin-top: 10px;
    background: var(--white);
    color: var(--secondary)!important;
    border: 1.8px solid var(--secondary);
    transition: background .18s, color .18s;
}
.cta .cta-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary) !important;
}

/* ------------------------------------
   ABOUT & STORY SECTIONS
--------------------------------------- */
.about-preview {
    background: var(--accent);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    padding: 36px 24px;
    margin-bottom: 60px;
}
.about-preview a {
    display: inline-block;
    margin-top: 8px;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
}
.about-preview a:hover {
    color: var(--primary);
}
.team, .about-story {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    padding: 32px 22px;
    margin-bottom: 60px;
}

/* -----------------------------------
   CONTACT & MAP
-------------------------------------- */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 16px 0 12px 0;
    line-height: 1.6;
    color: var(--primary);
    background: var(--accent);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    border-left: 6px solid var(--secondary);
}
.contact-details a {
    color: var(--secondary);
    word-break: break-word;
}
.contact-details a:hover { color: var(--primary); }
.map img {
    width: 44px;
    height: 44px;
    vertical-align: middle;
    margin-right: 12px;
}

/* -------------------------------
   CONFIRMATION THANK YOU PAGES
-------------------------------- */
.confirmation {
    text-align: center;
    padding: 48px 0;
}
.confirmation .cta-btn {
    margin-top: 18px;
}

/* -------------------------------
   FOOTER
--------------------------------- */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 48px 0 28px 0;
    margin-top: 84px;
}
footer .container {
    flex-direction: row;
    gap: 38px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer-logo {
    margin-bottom: 16px;
}
.footer-logo img {
    width: 62px;
    height: auto;
}
.footer-nav {
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer-nav a {
    color: var(--secondary);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: .01em;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: background .16s, color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
    color: var(--white);
    background: var(--secondary);
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
    font-size: 1rem;
    color: var(--accent);
}
.footer-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contact img {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 6px;
}

/* -----------------------------------
   LEGAL / INFORMATION PAGES
------------------------------------- */
.legal {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    padding: 40px 24px;
    margin-bottom: 60px;
}
.legal h1, .legal h2, .legal h3 {
    color: var(--primary);
}
.legal a {
    color: var(--secondary);
}

/* -----------------------------------
   COOKIE BANNER & MODAL
-------------------------------------- */
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100vw;
    background: var(--primary);
    color: var(--white);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 26px 24px;
    z-index: 2500;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.03rem;
    box-shadow: 0 -4px 18px 0 rgba(31,50,65,0.11);
    gap: 24px;
    transition: transform .28s cubic-bezier(.33,.74,.67,1.54);
}
.cookie-banner.hide {
    transform: translateY(130%);
}
.cookie-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.cookie-btn {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-md);
    padding: 10px 22px;
    cursor: pointer;
    transition: background .16s, color .16s, border .16s;
    outline: none;
}
.cookie-btn.accept {
    background: var(--secondary);
    color: var(--white);
}
.cookie-btn.accept:focus, .cookie-btn.accept:hover {
    background: var(--white);
    color: var(--secondary);
}
.cookie-btn.reject {
    background: var(--accent);
    color: var(--primary);
    border: 2px solid var(--secondary);
}
.cookie-btn.reject:focus, .cookie-btn.reject:hover {
    background: var(--secondary);
    color: var(--white);
}
.cookie-btn.settings {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--gray-mid);
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

/* Cookie modal */
.cookie-modal {
    position: fixed;
    left: 0; right: 0; top: 0; bottom: 0;
    z-index: 3000;
    background: rgba(31,50,65,0.66);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .32s cubic-bezier(.48,.42,.51,.76);
}
.cookie-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.cookie-modal-inner {
    background: var(--accent);
    color: var(--primary);
    max-width: 420px;
    width: 90vw;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    padding: 38px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    font-size: 1.08rem;
    position: relative;
}
.cookie-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background .14s, color .14s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
    background: var(--secondary);
    color: var(--white);
}
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 16px 0 10px 0;
}
.cookie-category {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    border: 1.5px solid var(--gray-mid);
    font-size: 1rem;
}
.cookie-category input[type=checkbox] {
    width: 24px; height: 24px;
    accent-color: var(--secondary);
    margin-right: 8px;
}
.cookie-category.essential input[type=checkbox] {
    accent-color: var(--primary);
}
.cookie-category .label { font-weight: bold; margin-right: 6px; }
.cookie-category.essential {
    background: var(--accent);
    border: 1.5px solid var(--secondary);
    color: var(--primary);
}
.cookie-category.essential input[type=checkbox] {
    cursor: not-allowed;
}
/* Modal footer buttons */
.cookie-modal-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    justify-content: flex-end;
}
.cookie-modal .cookie-btn {
    min-width: 120px;
}

/* -----------------------------------
   RESPONSIVE ADJUSTMENTS
------------------------------------- */
@media (max-width: 1024px) {
    .container {
        max-width: 98vw;
    }
    .footer-nav { gap: 14px; }
}
@media (max-width: 900px) {
    .container { padding: 0 10px; }
    .footer-nav { flex-wrap: wrap; gap: 8px; }
}
@media (max-width: 768px) {
    html { font-size: 15px; }
    
    .section, .about-preview, .team, .about-story, .legal {
        padding: 28px 8px;
        margin-bottom: 36px;
        border-radius: var(--radius-md);
    }
    .hero {
        padding: 38px 0 38px 0;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }
    .cta {
      padding: 26px 8px;
      margin-bottom: 38px;
      border-radius: var(--radius-md);
    }
    .testimonial-card,
    .feature, .service-card, .card {
        margin-bottom: 16px;
        padding: 16px 8px 14px 8px;
        border-radius: var(--radius-sm);
    }
    .feature img, .service-card img {
        width: 40px; height: 40px;
    }
    .feature-grid, .card-container, .service-cards {
        gap: 16px;
    }
    .footer-contact span {
        font-size: .97rem;
    }
    .footer-logo img {
        width: 48px;
    }
    .footer-contact, .footer-nav {
        font-size: .97rem;
        gap: 8px;
    }
    footer {
        flex-direction: column;
        padding: 28px 0 14px 0;
    }
    .container {
        flex-direction: column;
    }
    .content-wrapper {
        gap: 14px;
    }
}
@media (max-width: 600px) {
    html { font-size: 14px; }
    .feature, .service-card, .card {
        min-width: 150px;
        padding: 10px 4px;
    }
    .feature img, .service-card img {
        width: 28px; height: 28px;
    }
    .container {
        padding: 0 3vw;
    }
    .footer-logo img {
        width: 32px;
    }
}
@media (max-width: 480px) {
    html { font-size: 13px; }
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 18px 6px;
        gap: 12px;
    }
    .cookie-buttons {
        justify-content: center;
        width: 100%;
        gap: 8px;
    }
    .cookie-modal-inner {
        padding: 22px 4px 14px 4px;
    }
}

/* FLEXBOX DIRECTION OVERRIDES FOR RESPONSIVENESS */
@media (max-width: 992px) {
    .footer-nav, .footer-contact, .container {
        flex-direction: column;
        gap: 18px;
    }
}
@media (max-width: 800px) {
    .feature-grid, .card-container, .service-cards {
        flex-direction: column;
        align-items: stretch;
    }
    .content-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 800px) {
    .text-image-section {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
}

/* -----------------------------------
   MICRO-INTERACTIONS & ANIMATIONS
------------------------------------ */
.cta-btn, .cookie-btn {
    will-change: background, color, transform;
    transition: background .18s, color .18s, transform .16s cubic-bezier(.38,.8,.07,1.04);
}
.card, .feature, .service-card, .testimonial-card {
    transition: box-shadow .18s, border-color .18s, transform .13s;
}
.card:hover, .feature:hover, .service-card:hover, .testimonial-card:hover {
    transform: translateY(-4px) scale(1.01);
}
.mobile-menu {
    will-change: transform;
}
.cookie-banner, .cookie-modal-inner {
    will-change: transform, opacity;
}

/* Custom scrollbar for modals/menu */
.mobile-menu,
.cookie-modal-inner {
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) var(--primary);
}
.mobile-menu::-webkit-scrollbar,
.cookie-modal-inner::-webkit-scrollbar {
    width: 7px;
    background: var(--primary);
}
.mobile-menu::-webkit-scrollbar-thumb,
.cookie-modal-inner::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 6px;
}

/* ----------------------------
   END – Geometric Structured CSS
----------------------------- */
