.popup-overlay, .popup-overlay1{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    overflow: hidden;
}

.popup-box {
    position: relative;
    background: #fff;
    max-width: 600px;
    width: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    max-height: 90%;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.popup-close, .popup-close1 {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6fb198;
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
}

.popup-title {
    background: #fff;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    flex-shrink: 0;
    text-align: center;
}
.popup-title img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.popup-content {
    overflow-y: auto;
    flex: 1;
    padding: 2px;
    text-align: left;
}
.section-title {
    background: #4caf93;
    color: white;
    padding: 6px 10px;
    font-weight: bold;
    border-radius: 4px;
    margin: 15px 0 5px;
    font-size: 15px;
    text-align: left;
}
.section-content {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: left;
}
.contact-box {
    background: #f5f5f5;
    padding: 15px;
    margin-top: 15px;
    text-align: center;
    border-radius: 6px;
}
.contact-box .phone {
    color: #e74c3c;
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}
.popup-footer {
    background: #fff;
    padding: 10px;
    border-top: 1px solid #ddd;
    text-align: center;
    flex-shrink: 0;
}
.popup-footer button {
    background-color: #6fb198;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}
.popup-footer button:hover {
    background-color: #5a9a7d;
}
.desktop-banner {
    display: block;
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.contractLine {
    text-align: center;
}
button.btnLine {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #006837;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    margin: 0 auto;
    width: 100%; 
}
.phone, .contractLine {
    flex: 1 1 45%;
}
@media screen and (min-width: 769px) {
    .phone, .contractLine {
        flex: 1 1 45%;
    }
    .section-content {
        font-size: 15px;
    }
    .section-title {
        font-size: 17px;
    }
    .campaign-label {
        font-size: 15px;
    }
    .popup-wrapper {
        margin-top: 40px;
    }
    .popup-trigger, .popup-trigger1 {
        max-width: 960px;
    }
}
@media screen and (max-width: 768px) {
    .phone, .contractLine {
      flex: 1 1 100%;
    }
    .section-content {
        font-size: 11px;
    }
    .section-title {
        font-size: 14px;
    }
    .campaign-label {
        font-size: 12px;
    }
    .popup-trigger, .popup-trigger1 {
        max-width: 100%;
    }
}
