/* Global Styles */
.gradient-bg {
    background: linear-gradient(135deg, #0e3553 0%, #ad781c 100%);
}

.hero-bg {
    background: linear-gradient(135deg, rgba(14, 53, 83, 0.9) 0%, rgba(173, 120, 28, 0.9) 100%),
                url('/img/sistem1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.slider-slide {
    transition: opacity 1s ease-in-out;
}

/* Global Rich Text Content Styles */
.rich-text-content {
    line-height: 1.75;
    color: #374151;
}

.rich-text-content h1,
.rich-text-content h2,
.rich-text-content h3,
.rich-text-content h4,
.rich-text-content h5,
.rich-text-content h6 {
    color: #0e3553;
    font-weight: 700;
    margin-bottom: 0.75em;
    line-height: 1.2;
}

.rich-text-content h1 {
    font-size: 2.25em;
}

.rich-text-content h2 {
    font-size: 1.875em;
}

.rich-text-content h3 {
    font-size: 1.5em;
}

.rich-text-content h4 {
    font-size: 1.25em;
}

.rich-text-content h5 {
    font-size: 1.125em;
}

.rich-text-content h6 {
    font-size: 1em;
}

.rich-text-content p {
    margin-bottom: 1.25em;
    line-height: 1.75;
    color: #374151;
}

.rich-text-content a {
    color: #ad781c;
    text-decoration: none;
    transition: all 0.2s;
}

.rich-text-content a:hover {
    text-decoration: underline;
}

.rich-text-content strong,
.rich-text-content b {
    font-weight: 700;
    color: #0e3553;
}

.rich-text-content ul,
.rich-text-content ol {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-left: 1.625em;
    color: #374151;
}

.rich-text-content ul {
    list-style-type: disc;
}

.rich-text-content ol {
    list-style-type: decimal;
}

.rich-text-content li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    line-height: 1.75;
}

.rich-text-content blockquote {
    border-left: 4px solid #ad781c;
    background-color: #f9fafb;
    padding: 1em 1.5em;
    margin: 1.5em 0;
    font-style: italic;
    color: #4b5563;
}

.rich-text-content img {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin: 1.5em 0;
    max-width: 100%;
    height: auto;
}

.rich-text-content code {
    background-color: #f3f4f6;
    padding: 0.125em 0.375em;
    border-radius: 0.25rem;
    font-size: 0.875em;
    color: #1f2937;
}

.rich-text-content pre {
    background-color: #1f2937;
    color: #f9fafb;
    padding: 1em;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5em 0;
}

.rich-text-content pre code {
    background-color: transparent;
    padding: 0;
    color: inherit;
}

.rich-text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.rich-text-content table th,
.rich-text-content table td {
    border: 1px solid #e5e7eb;
    padding: 0.75em;
    text-align: left;
}

.rich-text-content table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #0e3553;
}

.rich-text-content hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2em 0;
}

