body {
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.text-wrapper {
    width: 80%;
    margin-left: 10%;
    margin-top: 8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dotted-title {
    color: #FC0101;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #FC0101;
    border-radius: 50%;
}

.title {
    color: #141414;
    font-weight: 900;
    font-size: clamp(2.25rem, 6vw, 3.25rem);
    letter-spacing: -0.5px;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    line-height: 1.1;
}

.line {
    width: 80px;
    height: 4px;
    background-color: #FC0101;
    border-radius: 2px;
}

.container {
    max-width: 1300px !important;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
    width: 100%;
}

.text-wrapper {
    text-align: center;
    margin-top: 110px;
    padding: 1rem;
}

.text-wrapper .title {
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-top: 0.5rem;
}

.info-grid {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
    align-items: start;
}

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

.info-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 5px solid #FC0101;
    border-radius: 12px;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    text-align: left;
}

.info-card .card-title {
    font-size: 1.3rem !important;
    font-weight: 800;
    letter-spacing: 1px;
    color: #141414 !important;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 0.5rem;
}

.info-card p {
    margin-bottom: 0.75rem;
    color: #4a4a4a;
    font-size: 0.95rem;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.cfs-insert {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    box-sizing: border-box;
}

.cfs-insert iframe {
    width: 100% !important;
    height: 653px;
    border: none;
    border-radius: 6px;
    background-color: #f1f3f5;
}

.disclaimer {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
    text-align: left;
}

.map-container {
    margin: 4rem 0;
    text-align: center;
}

.map-container h2 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.map-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.map-wrapper iframe {
    width: 100% !important;
    height: 450px;
    display: block;
}

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

    .cfs-insert {
        position: relative;
        overflow: hidden !important;
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 1rem;
    }

    .cfs-insert {
        padding: 1rem;
        position: relative;
        overflow: hidden !important;
    }

    .cfs-insert iframe {
        height: 480px;
        width: 100% !important;
        overflow: scroll !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .map-wrapper iframe {
        height: 320px;
    }
}