/* Base Styles */
:root {
    --primary-color: #4e7a8a;
    --secondary-color: #6a9fb5;
    --accent-color: #e97d4e;
    --text-color: #333;
    --light-text: #777;
    --bg-color: #f9f7f2;
    --card-bg: #fff;
    --border-color: #e0e0e0;
    --footer-bg: #2a4a5c;
    --footer-text: #f9f7f2;
    --success-color: #4CAF50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --header-height: 80px;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 20px;
}

ul, ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

/* Header */
header {
    background-color: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: auto;
    margin-right: 15px;
}

.typewriter {
    display: flex;
    align-items: center;
}

.typewriter h1 {
    font-size: 1.8rem;
    overflow: hidden;
    border-right: 3px solid var(--primary-color);
    white-space: nowrap;
    margin: 0;
    letter-spacing: 2px;
    animation: typing 3.5s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color) }
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin-left: 30px;
}

nav a {
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    padding-bottom: 5px;
}

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

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Featured Posts Section */
.featured-posts {
    padding: 40px 0;
}

.post {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.post a {
    display: flex;
    color: var(--text-color);
}

.post-image {
    flex: 0 0 35%;
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    flex: 0 0 65%;
    padding: 20px;
}

.post-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.post-meta {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.post-meta .category {
    background-color: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 5px;
}

.post-excerpt {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.post:hover .read-more i {
    transform: translateX(5px);
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 50px 0 20px;
    margin-top: 50px;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--footer-text);
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--footer-text);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    font-size: 1.1rem;
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--footer-text);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
}

.page-number {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.cookie-content p {
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-buttons button {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

.btn-customize {
    background-color: var(--warning-color);
    color: white;
}

.btn-reject {
    background-color: var(--error-color);
    color: white;
}

.cookie-buttons button:hover {
    opacity: 0.9;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* About Page */
.about-page {
    padding: 40px 0;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.about-image {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    margin-top: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    margin-bottom: 15px;
}

.about-content ul {
    margin-bottom: 20px;
}

.about-content a {
    font-weight: 600;
}

/* Legal Page */
.legal-page {
    padding: 40px 0;
}

.legal-content {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.last-updated {
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 30px;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-section h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 15px;
    margin-bottom: 10px;
}

.legal-section p,
.legal-section ul,
.legal-section ol {
    margin-bottom: 15px;
}

/* Contact Page */
.contact-page {
    padding: 40px 0;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info,
.contact-form {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.social-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: normal;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.map-section h2 {
    margin-bottom: 20px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.5s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-color);
}

.modal-content i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 15px;
}

.modal-content h2 {
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 20px;
}

#modal-close-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#modal-close-btn:hover {
    background-color: var(--secondary-color);
}

/* Corporate Page */
.corporate-page {
    padding: 40px 0;
}

.corporate-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.corporate-image {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.corporate-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.corporate-content {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.corporate-info-box {
    background-color: rgba(78, 122, 138, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

.corporate-info-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.corporate-info-box ul {
    margin-bottom: 0;
}

.corporate-content h2 {
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.corporate-content h2:first-child {
    margin-top: 0;
}

/* Single Post Page */
.single-post {
    padding: 40px 0;
}

.post-content {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.post-header {
    padding: 30px 30px 0;
}

.post-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.post-header .post-meta {
    font-size: 1rem;
    display: flex;
    gap: 15px;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.post-featured-image {
    margin-bottom: 30px;
}

.post-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.post-body {
    padding: 0 30px 30px;
}

.post-body h3 {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.post-body h4 {
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.post-body p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.post-body ul,
.post-body ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.post-body li {
    margin-bottom: 5px;
}

.info-box {
    background-color: rgba(78, 122, 138, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

.info-box h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.info-box p {
    margin-bottom: 0;
}

.image-content {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.image-content img {
    width: 100%;
}

.caption {
    padding: 10px 15px;
    background-color: #f5f5f5;
    font-size: 0.9rem;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 0;
}

.post-footer {
    border-top: 1px solid var(--border-color);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.post-tags span {
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.post-tags span i {
    margin-right: 5px;
    color: var(--primary-color);
}

.post-tags a {
    background-color: rgba(78, 122, 138, 0.1);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.post-tags a:hover {
    background-color: rgba(78, 122, 138, 0.2);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-share span {
    font-weight: 600;
    color: var(--text-color);
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.post-share a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.post-navigation {
    margin-bottom: 40px;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

.nav-previous,
.nav-next {
    flex: 0 0 48%;
}

.nav-previous a,
.nav-next a {
    display: block;
    background-color: var(--card-bg);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.nav-previous a {
    padding-left: 40px;
}

.nav-next a {
    padding-right: 40px;
    text-align: right;
}

.nav-previous a:hover,
.nav-next a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.nav-previous a::before {
    content: '\f104';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.nav-next a::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.nav-title {
    display: block;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 5px;
}

.nav-post-title {
    font-weight: 600;
    color: var(--primary-color);
}

.related-posts {
    margin-bottom: 40px;
}

.related-posts h3 {
    margin-bottom: 20px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.related-post {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-color);
}

.related-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

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

.related-post h4 {
    padding: 15px;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-section,
    .corporate-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image,
    .corporate-image {
        position: static;
    }
    
    .about-image img,
    .corporate-image img {
        max-height: 400px;
        object-fit: cover;
        width: 100%;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .post-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .typewriter {
        margin-bottom: 15px;
    }
    
    .typewriter h1 {
        font-size: 1.5rem;
    }
    
    .nav-toggle-label {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
    }
    
    nav {
        width: 100%;
    }
    
    nav ul {
        position: absolute;
        left: 0;
        right: 0;
        top: var(--header-height);
        background-color: var(--card-bg);
        flex-direction: column;
        align-items: center;
        padding: 0;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        z-index: 1000;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-toggle:checked ~ ul {
        height: auto;
        padding: 20px 0;
    }
    
    nav li {
        margin: 15px 0;
    }
    
    .post a {
        flex-direction: column;
    }
    
    .post-image,
    .post-content {
        flex: 1;
    }
    
    .post-image img {
        height: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo,
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .page-number {
        position: static;
        margin-top: 10px;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-previous,
    .nav-next {
        flex: 1;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .typewriter h1 {
        font-size: 1.2rem;
    }
    
    .post-content h2 {
        font-size: 1.3rem;
    }
    
    .post-excerpt {
        -webkit-line-clamp: 2;
    }
    
    .legal-content,
    .about-content,
    .corporate-content,
    .contact-info,
    .contact-form {
        padding: 20px;
    }
    
    .post-header,
    .post-body,
    .post-footer {
        padding: 20px;
    }
    
    .post-header h2 {
        font-size: 1.5rem;
    }
}
