/* Pacific Wave - Custom Styles */

html {
    scroll-behavior: smooth;
}

/* Wave animation */
@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

details summary {
    list-style: none;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card hover */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}

/* Responsive */
@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: #1e1b4b;
}

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

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

.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;
}
