.director-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.director-modal.is-open {
    display: block;
}

.director-modal-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

.director-modal-window {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 600px;
    margin: 60px auto;
    padding: 35px;
    background: #fff;
    box-sizing: border-box;
    border-radius: 4px;
}

.director-modal-title {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 1.2;
}

.director-modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    border: 0;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.director-form-help {
    margin-bottom: 20px;
    font-size: 14px;
}

.director-form-row {
    margin-bottom: 18px;
}

.director-form-row label {
    display: block;
    margin-bottom: 6px;
}

.director-form-row input[type="text"],
.director-form-row input[type="email"],
.director-form-row textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 16px;
}

.director-form-row textarea {
    min-height: 120px;
    resize: vertical;
}

.director-form-agreement {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.4;
}

.director-form-actions {
    margin-top: 20px;
}

.director-form-message {
    margin-top: 15px;
}

.director-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}