* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: auto;
}

.modal.active {
    display: block;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 24px;
    border-radius: 10px;
    width: 90%;
    max-width: 1080px;
    position: relative;
    border: 1px solid #E0E0E0;
    transform: translateY(-50px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 36px;
    font-weight: 450;
    cursor: pointer;
    color: #333;
    border: none;
    background: none;
}

.modal-close:hover {
    color: #000;
}

.modal-body {
    font-size: 20px;
    line-height: 150%;
}

.terms-title {
    text-align: left;
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
    vertical-align: middle;
    margin-bottom: 1rem;
}

.terms-date {
    font-weight: 450;
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 40px;
    color: #666;
}

.terms-section:not(:last-child) {
    margin-bottom: 32px;
}

.terms-section h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 150%;
    vertical-align: middle;
    margin-bottom: 16px;
}

.terms-section p {
    font-weight: 450;
    font-size: 20px;
    line-height: 150%;
    vertical-align: middle;
}

.terms-section a {
    color: #F6887B;
}

.terms-section a:hover {
    color: #d94d3f;
    text-decoration: underline;
}

/* Адаптивність */
@media (max-width: 600px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 15px;
    }

    .modal-body {
        font-size: 16px;
    }

    .terms-title {
        font-size: 32px;
    }

    .terms-section h2 {
        font-size: 24px;
    }

    .terms-section p {
        font-size: 16px;
    }
}