body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f7f7f7;
    margin: 0;
}
.cta-btn {
    background: #ff7f2a;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 16px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
    display: block;
}
.cta-btn:hover {
    background: #e86c1a;
}
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px 0;
}
.modal-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 0;
    width: 80vw;
    max-width: 1200px;
    height: auto;
    max-height: 99vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.modal-content iframe {
    width: 100%;
    height: 85vh;
    min-height: 300px;
    border: none;
    flex: 1 1 auto;
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #ff7f2a;
    cursor: pointer;
    z-index: 10;
    font-weight: bold;
    line-height: 1;
}
@media (max-width: 700px) {
    .modal-content {
        width: 98vw;
        max-width: 98vw;
        height: auto;
        max-height: 99vh;
    }
    .modal-content iframe {
        height: 65vh;
        min-height: 180px;
    }
} 