:root {
    --primary-color: #2c3e50;
    --accent-color: #b8977e;
    --bg-color: #faf8f5;
    --card-bg: #ffffff;
    --text-color: #333333;
    --muted-text: #666666;
    --border-color: #eae5df;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Assistant', sans-serif;
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
    line-height: 1.6;
    display: block !important;
}

/* מיקום ומירכוז הקופסה במסך */
.wrapper-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 0 20px;
}

/* קופסת התנאים המרכזית */
.terms-container {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    text-align: center;
}

.terms-container h2 {
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

/* קו זהב תחתון לכותרת */
.terms-container h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.instructions {
    font-size: 1.1rem;
    color: var(--text-color) !important;
    margin-bottom: 20px;
    font-weight: 600;
}

/* רשימת הכללים */
.rules-list {
    list-style: none;
    text-align: right;
    margin: 25px 0;
    padding: 20px;
    background-color: #fdfaf4 !important;
    border-right: 4px solid var(--accent-color);
    border-radius: 0 8px 8px 0;
}

.rules-list li {
    font-size: 1.05rem;
    color: #444444 !important;
    margin-bottom: 12px;
    position: relative;
    padding-right: 20px;
}

/* הנקודה העדינה לפני כל כלל */
.rules-list li::before {
    content: "•";
    color: var(--accent-color);
    font-size: 1.4rem;
    font-weight: bold;
    position: absolute;
    right: 0;
    top: -2px;
}

.rules-list li:last-child {
    margin-bottom: 0;
}

/* אזור ה-Checkbox */
.checkbox-container {
    display: block;
    margin: 30px 0;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color) !important;
    text-align: center;
}

.checkbox-container input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
    cursor: pointer;
    vertical-align: middle;
    margin-left: 8px;
}

.checkbox-container span {
    vertical-align: middle;
}

/* כפתור אישור והמשך */
.submit-btn {
    width: 100%;
    background-color: #d2dae2 !important;
    color: #ffffff !important;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

/* מצב פעיל של הכפתור */
.submit-btn.active {
    background-color: var(--primary-color) !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.submit-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(44, 62, 80, 0.25);
}