/* ===================================
   SK MALER APS - Color Scheme
   Navy: #2B3E50
   Beige: #E8D5C4
   Orange: #E67E50
   Red: #D85454
   Teal: #7FA99B
   =================================== */

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

:root {
    --navy: #2B3E50;
    --beige: #E8D5C4;
    --orange: #E67E50;
    --red: #D85454;
    --teal: #7FA99B;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --text-dark: #333333;
    --text-light: #666666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* ===================================
   Header & Navigation
   =================================== */

.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s ease;
}

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

.nav-link.cta-btn {
    background: var(--teal);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
}

.nav-link.cta-btn::after {
    display: none;
}

.nav-link.cta-btn:hover {
    background: var(--navy);
    color: var(--white);
}

.header-contact .phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.header-contact .phone-link:hover {
    color: var(--teal);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="paint-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M20,50 Q30,30 40,50 T60,50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/><circle cx="50" cy="30" r="5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23paint-pattern)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 84, 84, 0.3);
}

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

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

.btn-full {
    width: 100%;
}

/* ===================================
   Value Propositions
   =================================== */

.values {
    padding: 5rem 0;
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.value-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.value-card:nth-child(2) .value-number {
    background: linear-gradient(135deg, var(--orange), var(--red));
}

.value-card:nth-child(3) .value-number {
    background: linear-gradient(135deg, var(--beige), var(--orange));
}

.value-card:nth-child(4) .value-number {
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.value-card:nth-child(5) .value-number {
    background: linear-gradient(135deg, var(--navy), var(--teal));
}

.value-card h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   Services Section
   =================================== */

.services {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--teal);
    box-shadow: 0 10px 30px rgba(127, 169, 155, 0.15);
    transform: translateY(-5px);
}

.service-card:nth-child(2):hover {
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(230, 126, 80, 0.15);
}

.service-card:nth-child(3):hover {
    border-color: var(--red);
    box-shadow: 0 10px 30px rgba(216, 84, 84, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--orange), var(--red));
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

.service-card:nth-child(2) .service-features li::before {
    color: var(--orange);
}

.service-card:nth-child(3) .service-features li::before {
    color: var(--red);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1.5rem;
    background: #E8D5C4;
    padding: 12px;
    box-shadow:
        inset 0 2px 8px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(127, 169, 155, 0.3);
}

/* ===================================
   About Us Section
   =================================== */

.about-us {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-feature {
    background: linear-gradient(135deg, rgba(127, 169, 155, 0.05), rgba(43, 62, 80, 0.02));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.about-feature:hover {
    border-color: var(--teal);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(127, 169, 155, 0.15);
}

.about-feature h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.about-feature p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   Testimonials
   =================================== */

.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(43, 62, 80, 0.03), rgba(127, 169, 155, 0.03));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stars {
    color: var(--orange);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===================================
   Contact Section
   =================================== */

.contact {
    padding: 5rem 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-container {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(127, 169, 155, 0.1);
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-detail svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-detail a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-detail a:hover {
    opacity: 0.8;
}

.contact-detail p {
    margin: 0;
    opacity: 0.95;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--beige);
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.7;
}

.footer-cvr {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.7rem;
}

.footer-links a,
.footer-contact a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
    color: var(--teal);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.8;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1rem;
        align-items: flex-start;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .header-contact {
        display: none;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

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

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

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0 4rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .logo-text {
        font-size: 1.2rem;
    }
}

/* ===================================
   Animations
   =================================== */

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

.value-card,
.service-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

.value-card:nth-child(2) {
    animation-delay: 0.1s;
}

.value-card:nth-child(3) {
    animation-delay: 0.2s;
}

.value-card:nth-child(4) {
    animation-delay: 0.3s;
}

.value-card:nth-child(5) {
    animation-delay: 0.4s;
}

/* ===================================
   Price Calculator Modal
   =================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(43, 62, 80, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--white);
    margin: 3% auto;
    border-radius: 20px;
    max-width: 700px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease;
    overflow: hidden;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 2rem;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 2.5rem;
}

.modal-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 1rem;
    color: var(--navy);
    font-weight: 600;
    font-size: 1.1rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.radio-label:hover {
    border-color: var(--teal);
    background: rgba(127, 169, 155, 0.05);
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    width: 24px;
    height: 24px;
    border: 2px solid var(--medium-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.radio-custom::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--teal);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.radio-label input[type="radio"]:checked ~ .radio-custom {
    border-color: var(--teal);
}

.radio-label input[type="radio"]:checked ~ .radio-custom::after {
    transform: scale(1);
}

.radio-label input[type="radio"]:checked ~ .radio-text {
    color: var(--navy);
}

.radio-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.radio-text strong {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.radio-text small {
    color: var(--text-light);
    font-size: 0.9rem;
}

.input-with-unit {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-unit input {
    flex: 1;
    padding: 1rem;
    padding-right: 4rem;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.input-with-unit input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(127, 169, 155, 0.1);
}

.input-unit {
    position: absolute;
    right: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    pointer-events: none;
}

.input-hint {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   Price Result Display
   =================================== */

.price-result {
    margin-top: 2.5rem;
    animation: fadeInUp 0.5s ease;
}

.result-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.result-header h3 {
    color: var(--navy);
    font-size: 1.8rem;
}

.result-body {
    background: linear-gradient(135deg, rgba(127, 169, 155, 0.1), rgba(43, 62, 80, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--teal);
}

.price-display {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--medium-gray);
}

.price-range {
    font-size: 3rem;
    font-weight: 700;
    color: var(--teal);
    display: block;
    margin-bottom: 0.5rem;
}

.price-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

.price-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background: var(--white);
    border-radius: 8px;
}

.breakdown-item span:first-child {
    color: var(--text-light);
    font-weight: 500;
}

.breakdown-item span:last-child {
    color: var(--navy);
    font-weight: 600;
}

.result-disclaimer {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--orange);
}

.result-disclaimer p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.result-disclaimer strong {
    color: var(--orange);
}

.result-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.result-actions .btn {
    flex: 1;
    min-width: 200px;
}

/* ===================================
   Modal Responsive Design
   =================================== */

@media (max-width: 768px) {
    .modal-content {
        margin: 0;
        max-width: 100%;
        border-radius: 0;
        height: 100vh;
        overflow-y: auto;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .price-breakdown {
        grid-template-columns: 1fr;
    }

    .result-actions {
        flex-direction: column;
    }

    .result-actions .btn {
        width: 100%;
        min-width: auto;
    }

    .price-range {
        font-size: 2.5rem;
    }

    .radio-label {
        padding: 1rem;
    }
}
