/* ============================================================
   D2S - Pro-Serrurier.fr - CSS Principal
   Refonte SEO 2025 - Compatible Dreamweaver
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #222;
    background: #f5f5f5;
}

a {
    color: #1a6e8a;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #e63000;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    padding-left: 1.5em;
}

li {
    margin-bottom: 0.4em;
    font-size: 1rem;
}

/* === ACCESSIBILITÉ === */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #1a6e8a;
    color: #fff;
    padding: 8px 16px;
    z-index: 9999;
    font-size: 0.9rem;
}

.skip-link:focus {
    top: 0;
}

/* === HEADER === */
#header {
    background: #1a1a2e;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

/* --- Barre supérieure : infos pratiques --- */
.header-topbar {
    background: #0d1120;
    border-bottom: 1px solid #2a3a5c;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #aab4c8;
    max-width: 100%;
}

.header-topbar .topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-topbar .topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #aab4c8;
}

.header-topbar .topbar-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.header-topbar .topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-topbar .topbar-badge {
    background: #e63000;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

.header-topbar .topbar-phone {
    color: #f0a500;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-topbar .topbar-phone:hover {
    color: #fff;
    text-decoration: none;
}

/* --- Zone principale du header : logo + slogan + CTA --- */
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.logo-area img {
    height: 70px;
    width: auto;
    display: block;
}

.logo-text { display: none; }

/* --- Bloc central : services rapides --- */
.header-services {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
    padding: 0 20px;
}

.header-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #c8d4e8;
    font-size: 0.78rem;
    text-align: center;
    text-decoration: none;
    transition: color 0.2s;
    min-width: 70px;
}

.header-service-item:hover {
    color: #4ab8d4;
    text-decoration: none;
}

.header-service-icon {
    width: 36px;
    height: 36px;
    background: rgba(74,184,212,0.12);
    border: 1px solid rgba(74,184,212,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s, border-color 0.2s;
}

.header-service-item:hover .header-service-icon {
    background: rgba(74,184,212,0.25);
    border-color: #4ab8d4;
}

.header-service-label {
    line-height: 1.2;
    font-weight: 500;
}

/* --- Bloc droit : téléphone + CTA --- */
.header-cta-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.header-phone-big {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f0a500;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
}

.header-phone-big:hover {
    color: #fff;
    text-decoration: none;
}

.header-phone-big .phone-icon {
    width: 32px;
    height: 32px;
    background: #f0a500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #1a1a2e;
    flex-shrink: 0;
    animation: ring 3s infinite;
}

@keyframes ring {
    0%, 90%, 100% { transform: rotate(0deg); }
    92% { transform: rotate(-15deg); }
    94% { transform: rotate(15deg); }
    96% { transform: rotate(-10deg); }
    98% { transform: rotate(10deg); }
}

.header-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e63000 0%, #c02800 100%);
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 3px 10px rgba(230,48,0,0.4);
    white-space: nowrap;
}

.header-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(230,48,0,0.5);
    text-decoration: none !important;
}

/* === NAVIGATION === */
nav#main-nav {
    background: #16213e;
    border-top: 2px solid #4ab8d4;
}

nav#main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
}

nav#main-nav ul li {
    margin: 0;
    position: relative;
}

nav#main-nav ul li a {
    display: block;
    padding: 13px 22px;
    color: #e0e0e0;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

nav#main-nav ul li a:hover,
nav#main-nav ul li.active a {
    background: #4ab8d4;
    color: #fff;
    text-decoration: none;
}

nav#main-nav ul li a.cta-nav {
    background: #e63000;
    color: #fff;
    border-radius: 3px;
    margin: 5px 10px;
    padding: 8px 18px;
}

nav#main-nav ul li a.cta-nav:hover {
    background: #c02800;
}

/* === HAMBURGER MOBILE === */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

/* === HERO BANNER === */
.hero-banner {
    position: relative;
    background: #0d1b2e;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.hero-banner img.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: 0.55;
    z-index: 0;
}

/* Dégradé sombre sur la gauche pour lisibilité du texte */
.hero-banner::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(to right, rgba(13,27,46,0.97) 40%, rgba(13,27,46,0.0) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 30px;
    color: #fff;
    /* Limiter le texte à la zone sombre gauche */
    max-width: 580px;
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #f0a500;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
    margin-bottom: 14px;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.25;
}

.hero-content .hero-subtitle {
    font-size: 1.05rem;
    color: #e0e0e0;
    margin-bottom: 24px;
    max-width: 480px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: #e63000;
    color: #fff !important;
    padding: 13px 30px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none !important;
    transition: background 0.2s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.hero-cta:hover {
    background: #c02800;
}

/* === PHONE BAR === */
.phone-bar {
    background: #4ab8d4;
    text-align: center;
    padding: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
}

.phone-bar a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.phone-bar a:hover {
    color: #1a1a2e;
}

/* === LAYOUT PRINCIPAL === */
#wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
    align-items: start;
}

/* === CONTENU PRINCIPAL === */
#main-content {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

#main-content h1 {
    font-size: 1.9rem;
    color: #f0a500;
    font-family: Georgia, "Times New Roman", serif;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #4ab8d4;
    line-height: 1.3;
}

#main-content h2 {
    font-size: 1.35rem;
    color: #1a6e8a;
    margin: 25px 0 12px;
    padding-left: 12px;
    border-left: 4px solid #4ab8d4;
    line-height: 1.4;
}

#main-content h3 {
    font-size: 1.1rem;
    color: #0f3460;
    margin: 18px 0 8px;
    font-weight: bold;
}

#main-content p {
    margin-bottom: 14px;
    text-align: justify;
    font-size: 1rem;
    line-height: 1.8;
}

#main-content ul, #main-content ol {
    margin-bottom: 14px;
}

#main-content ul li::marker {
    color: #4ab8d4;
}

#main-content strong {
    color: #0f3460;
}

/* === ARTICLE IMAGE === */
.article-img-left {
    float: left;
    margin: 0 20px 15px 0;
    border-radius: 4px;
    max-width: 200px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.article-img-right {
    float: right;
    margin: 0 0 15px 20px;
    border-radius: 4px;
    max-width: 200px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* === SIDEBAR === */
#sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
    font-size: 1rem;
    color: #fff;
    background: #1a6e8a;
    margin: -20px -20px 15px;
    padding: 12px 20px;
    border-radius: 6px 6px 0 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Widget Devis */
.widget-devis {
    background: #0f3460;
    color: #fff;
    text-align: center;
}

.widget-devis h3 {
    background: #e63000;
    color: #fff;
    margin: -20px -20px 15px;
    padding: 12px 20px;
    border-radius: 6px 6px 0 0;
    font-size: 1rem;
    text-transform: uppercase;
}

.widget-devis .phone-big {
    font-size: 1.6rem;
    font-weight: bold;
    color: #f0a500;
    display: block;
    margin: 10px 0;
    letter-spacing: 1px;
}

.widget-devis .phone-big a {
    color: #f0a500;
    text-decoration: none;
}

.widget-devis .phone-big a:hover {
    color: #fff;
}

.widget-devis p {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 12px;
}

.btn-devis {
    display: block;
    background: #e63000;
    color: #fff !important;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none !important;
    margin-top: 10px;
    transition: background 0.2s;
}

.btn-devis:hover {
    background: #c02800;
}

/* Widget Villes */
.widget-cities ul {
    list-style: none;
    padding: 0;
}

.widget-cities ul li {
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
}

.widget-cities ul li a {
    display: block;
    padding: 7px 5px;
    color: #1a6e8a;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.widget-cities ul li a:hover {
    color: #e63000;
    padding-left: 10px;
}

/* Widget Info */
.widget-info {
    background: #f8f9fa;
    border-left: 4px solid #4ab8d4;
}

.widget-info h3 {
    background: #4ab8d4;
    color: #fff;
    margin: -20px -20px 15px;
    padding: 12px 20px;
    border-radius: 6px 6px 0 0;
    font-size: 0.95rem;
}

.widget-info p {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
}

.widget-info a {
    color: #1a6e8a;
    font-size: 0.88rem;
}

/* === GRILLE D'ARTICLES (Blog) === */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.article-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.article-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.article-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-body h2 {
    font-size: 1.05rem;
    color: #0f3460;
    margin: 0 0 10px;
    padding: 0;
    border: none;
    line-height: 1.4;
}

.article-card-body p {
    font-size: 0.9rem;
    color: #555;
    flex: 1;
    margin-bottom: 12px;
    line-height: 1.6;
}

.article-card-body .read-more {
    display: inline-block;
    color: #1a6e8a;
    font-size: 0.88rem;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid #4ab8d4;
    padding-bottom: 2px;
}

.article-card-body .read-more:hover {
    color: #e63000;
    border-color: #e63000;
}

/* === SECTION SERVICES ACCUEIL === */
.services-section {
    background: #fff;
    padding: 40px 20px;
    margin-top: 0;
}

.services-section h2 {
    text-align: center;
    font-size: 1.6rem;
    color: #0f3460;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    padding: 20px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    transition: border-color 0.2s, transform 0.2s;
}

.service-item:hover {
    border-color: #4ab8d4;
    transform: translateY(-3px);
}

.service-item .icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.service-item h3 {
    font-size: 0.95rem;
    color: #0f3460;
    font-weight: bold;
}

/* === CONTACT BOX === */
.contact-box {
    background: linear-gradient(135deg, #0f3460, #1a6e8a);
    color: #fff;
    padding: 25px;
    border-radius: 6px;
    margin: 25px 0;
    text-align: center;
}

.contact-box h3 {
    color: #f0a500;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-box p {
    color: #ddd;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-box .phone-link {
    color: #f0a500;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
}

.contact-box .phone-link:hover {
    color: #fff;
}

/* === BREADCRUMB === */
.breadcrumb {
    background: #f0f4f8;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.breadcrumb a {
    color: #1a6e8a;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #e63000;
}

.breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* === FOOTER === */
#footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 40px 20px 20px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-col h4 {
    color: #4ab8d4;
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 7px;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #4ab8d4;
}

.footer-col p {
    font-size: 0.88rem;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-col .phone-footer {
    color: #f0a500;
    font-size: 1.1rem;
    font-weight: bold;
}

.footer-col .phone-footer a {
    color: #f0a500;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #4ab8d4;
}

/* === PAGES VILLES === */
.city-header {
    background: linear-gradient(135deg, #0f3460, #1a6e8a);
    color: #fff;
    padding: 20px 25px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.city-header h1 {
    color: #f0a500 !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 5px !important;
}

.city-header .city-meta {
    font-size: 0.9rem;
    color: #ccc;
}

.city-content h2 {
    font-size: 1.25rem;
    color: #1a6e8a;
    margin: 22px 0 10px;
    padding-left: 12px;
    border-left: 4px solid #4ab8d4;
}

.city-content h3 {
    font-size: 1.05rem;
    color: #0f3460;
    margin: 16px 0 8px;
}

.city-content ul {
    margin-bottom: 14px;
}

.city-content ul li {
    color: #333;
    font-size: 0.95rem;
}

/* === FORMULAIRE DEVIS === */
.form-devis {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.form-devis h2 {
    color: #0f3460;
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #4ab8d4;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ab8d4;
    box-shadow: 0 0 0 2px rgba(74, 184, 212, 0.2);
}

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

.btn-submit {
    background: #e63000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

.btn-submit:hover {
    background: #c02800;
}

/* === SCHEMA.ORG / RICH SNIPPETS === */
.rating-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    font-size: 0.9rem;
    color: #555;
}

.stars {
    color: #f0a500;
    font-size: 1.1rem;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    #wrapper {
        grid-template-columns: 1fr;
    }

    #sidebar {
        order: -1;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-banner::after {
        width: 100%;
        background: linear-gradient(to right, rgba(13,27,46,0.95) 0%, rgba(13,27,46,0.7) 100%);
    }

    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav#main-nav ul {
        display: none;
        flex-direction: column;
    }

    nav#main-nav ul.open {
        display: flex;
    }

    nav#main-nav ul li a {
        padding: 12px 20px;
        border-bottom: 1px solid #2a3a5e;
    }

    .header-main {
        flex-wrap: wrap;
        padding: 10px 15px;
    }

    .header-services {
        display: none;
    }

    .header-cta-block {
        align-items: flex-start;
    }

    .header-phone-big {
        font-size: 1.1rem;
    }

    .topbar-left .topbar-item:not(:first-child) {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }

    #main-content {
        padding: 20px 15px;
    }

    .article-img-left,
    .article-img-right {
        float: none;
        margin: 0 0 15px 0;
        max-width: 100%;
    }

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

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

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

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

/* === UTILITAIRES === */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.highlight { background: #fff3cd; padding: 2px 6px; border-radius: 3px; }
.badge-urgence {
    display: inline-block;
    background: #e63000;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === PRINT === */
@media print {
    #header, #sidebar, #footer, nav {
        display: none;
    }
    #wrapper {
        grid-template-columns: 1fr;
    }
    body {
        font-size: 12pt;
        color: #000;
    }
}
