.appointment-btn {
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 5px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
    transition: background 0.2s;
}
.appointment-btn:hover {
    background: #c2185b;
}
.modal-window-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal-window-wrap.show {
    display: flex;
}
.modal-window-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.modal-window {
    position: relative;
    background: #fff;
    padding: 40px 30px 30px;
    max-width: 480px;
    width: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 10;
}
.modal-window-close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23999" stroke-width="2"><path d="M18 6L6 18M6 6l12 12"/></svg>') no-repeat center;
    background-size: contain;
}
.modal-window-title {
    font-size: 24px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}
.input-box {
    margin-bottom: 15px;
}
.input-box input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}
.privacy-wrap {
    display: flex;
    align-items: center;
    margin: 20px 0 20px;
}
.privacy-wrap input[type="checkbox"] {
    display: none;
}
.privacy-wrap .checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
}
.privacy-wrap input:checked + .checkbox {
    background: #e91e63;
    border-color: #e91e63;
}
.privacy-wrap input:checked + .checkbox::after {
    content: "✓";
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}
.privacy-wrap .privacy {
    margin: 0;
    font-size: 14px;
    color: #555;
	margin-left: 8px;
}
.privacy-wrap .privacy a {
    color: #e91e63;
    text-decoration: underline;
}
.btn.btn-green {
    background: #4CAF50;
    color: #fff;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}
.btn.btn-green:hover {
    background: #45a049;
}
.btn.btn-green span {
    display: inline-block;
    transition: transform 0.3s;
}

.thanks-modal {
    text-align: center;
}
.thanks-modal .text {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}