/* Royal Value - Custom Styles */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Card hover effects */
.group:hover {
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

/* Details marker styling */
details summary::-webkit-details-marker {
    display: none;
}

details summary {
    list-style: none;
}

/* Form focus styles */
input:focus, textarea:focus {
    outline: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem !important;
    }
    h2 {
        font-size: 2rem !important;
    }
}

/* Content pages */
.userClauseNet {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.userClauseNet h1 {
    font-size: 2.2em;
    line-height: 1.2;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
    color: #1e293b;
}

.userClauseNet h2 {
    font-size: 1.8em;
    line-height: 1.3;
    margin-top: 1.4em;
    margin-bottom: 0.5em;
    font-weight: 700;
    color: #1e293b;
}

.userClauseNet h3 {
    font-size: 1.5em;
    line-height: 1.4;
    margin-top: 1.3em;
    margin-bottom: 0.5em;
    font-weight: 700;
    color: #1e293b;
}

.userClauseNet p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1em;
    color: #475569;
}

.userClauseNet ul {
    list-style-type: disc;
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 1.5em;
    color: #475569;
}

.userClauseNet li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5em;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}
