.tourist-rights-page {
    background: #f4f4f4;
    min-height: 100vh;
    direction: rtl;
}

.rights-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.rights-table-container {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(26, 21, 16, 0.08);
    overflow: hidden;
    border: 1px solid rgba(201, 169, 98, 0.15);
}

.rights-table-header {
    background: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.rights-table-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 0.5rem;
}

.rights-table-header p {
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    margin: 0 0 1.5rem;
}

.features-section__lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.line-big {
    width: 60px;
    height: 3px;
    background: var(--main-color);
    border-radius: 2px;
}

.line-medium {
    width: 40px;
    height: 3px;
    background: var(--main-color-dim);
    border-radius: 2px;
}

.line-small {
    width: 20px;
    height: 3px;
    background: var(--main-color-light);
    border-radius: 2px;
}

.rights-table {
    width: 100%;
    border-collapse: collapse;
}

.rights-table tbody tr {
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    transition: background 0.3s ease;
}

.rights-table tbody tr:hover {
    background: rgba(201, 169, 98, 0.03);
}

.rights-table tbody tr:last-child {
    border-bottom: none;
}

.right-number {
    width: 80px;
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
    border-left: 2px solid rgba(201, 169, 98, 0.2);
}

.right-number span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--main-color);
    color: var(--secondary-color);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

.right-content {
    padding: 1.5rem 2rem;
}

.right-title {
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.right-example {
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    padding-right: 1rem;
    border-right: 3px solid var(--main-color-light);
    background: rgba(201, 169, 98, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 0 8px 8px 0;
    margin-top: 0.5rem;
}

.right-example strong {
    color: var(--main-color);
    font-weight: 700;
}

.rights-footer {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
    padding: 2rem;
    text-align: center;
    border-top: 2px solid rgba(201, 169, 98, 0.2);
}

.rights-footer p {
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    margin: 0;
}

.rights-footer i {
    color: var(--main-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

@media (max-width: 768px) {
    .rights-section {
        padding: 2rem 1rem;
    }

    .right-number {
        width: 60px;
        padding: 1rem 0.5rem;
    }

    .right-number span {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .right-content {
        padding: 1rem;
    }

    .right-title {
        font-size: 1rem;
    }

    .right-example {
        font-size: 0.85rem;
    }
}
