/* Extracted from index.html - Original Styles */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    -webkit-text-size-adjust: none
}

mark {
    background-color: transparent;
    color: inherit
}

input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input[type="text"],
input[type="email"],
select,
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    line-height: 1.0;
    min-height: var(--viewport-height);
    min-width: 320px;
    overflow-x: hidden;
    word-wrap: break-word;
    background-color: #FFFFFF;
}

body::before {
    content: '';
    display: block;
    background-attachment: scroll;
    height: var(--background-height);
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: scale(1);
    width: 100vw;
    z-index: 0;
    background-image: linear-gradient(45deg, #FF0000 0%, #0000FF 100%), url('../images/bg.jpg?v=e16f9a9b');
    background-position: 0% 0%, center;
    background-repeat: repeat, repeat;
    background-size: cover, cover;
}

body::after {
    background-color: #045359;
    content: '';
    display: block;
    pointer-events: none;
    position: fixed;
    transform: scale(1);
    z-index: 1;
    height: 100%;
    left: 0;
    opacity: 0;
    top: 0;
    transition: opacity 5s ease-in-out 5s, visibility 5s 5s;
    visibility: hidden;
    width: 100%;
}

body.is-loading::after {
    opacity: 1;
    visibility: visible;
}

:root {
    --background-height: 100vh;
    --site-language-alignment: left;
    --site-language-direction: ltr;
    --site-language-flex-alignment: flex-start;
    --site-language-indent-left: 1;
    --site-language-indent-right: 0;
    --site-language-margin-left: 0;
    --site-language-margin-right: auto;
    --viewport-height: 100vh;
}

html {
    font-size: 18pt;
}

u {
    text-decoration: underline;
}

strong {
    color: inherit;
    font-weight: bolder;
}

em {
    font-style: italic;
}

code {
    background-color: rgba(144, 144, 144, 0.25);
    border-radius: 0.25em;
    font-family: 'Lucida Console', 'Courier New', monospace;
    font-size: 0.9em;
    font-weight: normal;
    letter-spacing: 0;
    margin: 0 0.25em;
    padding: 0.25em 0.5em;
    text-indent: 0;
}

mark {
    background-color: rgba(144, 144, 144, 0.25);
}

spoiler-text {
    -webkit-text-stroke: 0;
    background-color: rgba(32, 32, 32, 0.75);
    text-shadow: none;
    text-stroke: 0;
    color: transparent;
    cursor: pointer;
    transition: color 0.1s ease-in-out;
}

spoiler-text.active {
    color: #FFFFFF;
    cursor: text;
}

s {
    text-decoration: line-through;
}

sub {
    font-size: smaller;
    vertical-align: sub;
}

sup {
    font-size: smaller;
    vertical-align: super;
}

a {
    color: inherit;
    text-decoration: underline;
    transition: color 0.25s ease;
}

a[onclick]:not([href]) {
    cursor: pointer;
}

unloaded-script {
    display: none;
}

.site-wrapper {
    -webkit-overflow-scrolling: touch;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: var(--viewport-height);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.site-main {
    --alignment: center;
    --flex-alignment: center;
    --indent-left: 1;
    --indent-right: 1;
    --margin-left: auto;
    --margin-right: auto;
    --border-radius-tl: 0;
    --border-radius-tr: 0;
    --border-radius-br: 0;
    --border-radius-bl: 0;
    align-items: center;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: center;
    max-width: 100%;
    position: relative;
    text-align: var(--alignment);
    z-index: 1;
    transition: opacity 2s ease 0s, transform 2s ease 0s;
}

.site-main>.inner {
    --padding-horizontal: 1rem;
    --padding-vertical: 1.25rem;
    --spacing: 1.375rem;
    --width: 40rem;
    border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
    max-width: 100%;
    position: relative;
    width: var(--width);
    z-index: 1;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

.site-main>.inner>header {
    margin-bottom: var(--spacing);
}

.site-main>.inner>footer {
    margin-top: var(--spacing);
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.site-main>.inner>*>* {
    margin-top: var(--spacing);
    margin-bottom: var(--spacing);
}

.site-main>.inner>*> :first-child {
    margin-top: 0 !important;
}

.site-main>.inner>*> :last-child {
    margin-bottom: 0 !important;
}

.site-main>.inner>.full {
    margin-left: calc(var(--padding-horizontal) * -1);
    max-width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
    width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
}

.site-main>.inner>.full:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    margin-top: calc(var(--padding-vertical) * -1) !important;
}

.site-main>.inner>.full:last-child {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.site-main>.inner>.full.screen {
    border-radius: 0 !important;
    max-width: 100vw;
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    right: auto;
}

.site-main>.inner>*>.full {
    margin-left: calc(-1rem);
    max-width: calc(100% + 2rem + 0.4725px);
    width: calc(100% + 2rem + 0.4725px);
}

.site-main>.inner>*>.full.screen {
    border-radius: 0 !important;
    max-width: 100vw;
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    right: auto;
}

.site-main>.inner>footer>.full:last-child {
    margin-bottom: -1.25rem !important;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.site-main>.inner>.active>.full:first-child {
    margin-top: -1.25rem !important;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.site-main>.inner>.active {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

body.is-loading .site-main {
    opacity: 0;
    transform: scale(0.94375);
}

.site-main>.inner>header,
.site-main>.inner>footer {
    transition: opacity 0.25s ease-in-out 0.375s, visibility 0.25s linear 0.375s;
}

.site-main>.inner>header.hidden,
.site-main>.inner>footer.hidden {
    opacity: 0;
    transition: opacity 0.25s ease-in-out, visibility 0.25s;
    visibility: hidden;
}

.site-main>.inner>section {
    transition: opacity 0.5s ease-in-out 0.25s, transform 0.5s ease-in-out 0.25s, min-height 0.25s ease-in-out, max-height 0.25s ease-in-out;
}

.site-main>.inner>section.inactive {
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
    opacity: 0;
    transform: scale(1.05625);
}

body.is-instant .site-main,
body.is-instant .site-main>.inner>*,
body.is-instant .site-main>.inner>section>* {
    transition: none !important;
}

body.is-instant::after {
    display: none !important;
    transition: none !important;
}

.text-component {
    direction: var(--site-language-direction);
    position: relative;
}

.text-component span.p {
    display: block;
    position: relative;
}

.text-component span[style],
.text-component strong,
.text-component a,
.text-component code,
.text-component mark,
.text-component spoiler-text {
    -webkit-text-fill-color: currentcolor;
}

.text-component.instance-7 {
    text-transform: uppercase;
    color: #18E3F3;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 0.45rem;
    width: calc(100% + 0.45rem);
    font-size: 2.375em;
    line-height: 1.25;
    font-weight: 200;
}

.text-component.instance-7 a {
    text-decoration: underline;
}

.text-component.instance-7 a:hover {
    text-decoration: none;
}

.text-component.instance-7 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.text-component.instance-9 {
    color: #FFFFFF;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.5em;
    line-height: 1.625;
    font-weight: 200;
}

.text-component.instance-9 a {
    text-decoration: underline;
}

.text-component.instance-9 a:hover {
    text-decoration: none;
}

.text-component.instance-9 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.text-component.instance-8 {
    color: #FFFFFF;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.5em;
    line-height: 1.625;
    font-weight: 200;
}

.text-component.instance-8 a {
    text-decoration: underline;
}

.text-component.instance-8 a:hover {
    text-decoration: none;
}

.text-component.instance-8 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.text-component.instance-23 {
    font-variant: small-caps;
    color: #18E3F3;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 0.45rem;
    width: calc(100% + 0.45rem);
    font-size: 2em;
    line-height: 1.25;
    font-weight: 200;
}

.text-component.instance-23 a {
    text-decoration: underline;
}

.text-component.instance-23 a:hover {
    text-decoration: none;
}

.text-component.instance-23 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.text-component.instance-4 {
    color: #FFFFFF;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.5em;
    line-height: 1.625;
    font-weight: 200;
}

.text-component.instance-4 a {
    text-decoration: underline;
}

.text-component.instance-4 a:hover {
    text-decoration: none;
}

.text-component.instance-4 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.text-component.instance-1 {
    font-variant: small-caps;
    color: #18E3F3;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 0.45rem;
    width: calc(100% + 0.45rem);
    font-size: 2em;
    line-height: 1.25;
    font-weight: 200;
}

.text-component.instance-1 a {
    text-decoration: underline;
}

.text-component.instance-1 a:hover {
    text-decoration: none;
}

.text-component.instance-1 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.text-component.instance-3 {
    color: #FFFFFF;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.5em;
    line-height: 1.625;
    font-weight: 200;
}

.text-component.instance-3 a {
    text-decoration: underline;
}

.text-component.instance-3 a:hover {
    text-decoration: none;
}

.text-component.instance-3 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.text-component.instance-2 {
    font-variant: small-caps;
    color: #18E3F3;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 0.45rem;
    width: calc(100% + 0.45rem);
    font-size: 2em;
    line-height: 1.25;
    font-weight: 200;
}

.text-component.instance-2 a {
    text-decoration: underline;
}

.text-component.instance-2 a:hover {
    text-decoration: none;
}

.text-component.instance-2 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.text-component.instance-25 {
    color: #FFFFFF;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.5em;
    line-height: 1.625;
    font-weight: 200;
}

.text-component.instance-25 a {
    text-decoration: underline;
}

.text-component.instance-25 a:hover {
    text-decoration: none;
}

.text-component.instance-25 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.text-component.instance-26 {
    font-variant: small-caps;
    color: #18E3F3;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 0.45rem;
    width: calc(100% + 0.45rem);
    font-size: 2em;
    line-height: 1.25;
    font-weight: 200;
}

.text-component.instance-26 a {
    text-decoration: underline;
}

.text-component.instance-26 a:hover {
    text-decoration: none;
}

.text-component.instance-26 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.text-component.instance-6 {
    color: #FFFFFF;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.5em;
    line-height: 1.625;
    font-weight: 200;
}

.text-component.instance-6 a {
    text-decoration: underline;
}

.text-component.instance-6 a:hover {
    text-decoration: none;
}

.text-component.instance-6 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.text-component.instance-27 {
    color: #FFFFFF;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.5em;
    line-height: 1.625;
    font-weight: 200;
}

.text-component.instance-27 a {
    text-decoration: underline;
}

.text-component.instance-27 a:hover {
    text-decoration: none;
}

.text-component.instance-27 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.text-component.instance-5 {
    color: #FFFFFF;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1em;
    line-height: 1.625;
    font-weight: 200;
}

.text-component.instance-5 a {
    text-decoration: underline;
}

.text-component.instance-5 a:hover {
    text-decoration: none;
}

.text-component.instance-5 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.image-component {
    display: block;
    line-height: 0;
    max-width: 100%;
    position: relative;
}

.image-component>.frame {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    vertical-align: top;
    width: 100%;
}

.image-component>.frame>img {
    border-radius: 0 !important;
    max-width: 100%;
    vertical-align: top;
    width: inherit;
}

.image-component.full>.frame {
    display: block;
}

.image-component.full:first-child>.frame {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.image-component.full:last-child>.frame {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.image-component.instance-11>.frame {
    width: 9rem;
    border-radius: 100%;
    transition: none;
}

.image-component.instance-11>.frame>img {
    transition: none;
}

.divider-component {
    align-items: center;
    border: 0;
    display: flex;
    justify-content: var(--flex-alignment);
    min-height: 1rem;
    padding: 0;
    position: relative;
    width: 100%;
}

.divider-component::before {
    content: '';
}


/* ---------------------------------------------------- */
/* NEW "MYSTIC & MODERN" DESIGN OVERRIDES              */
/* ---------------------------------------------------- */

:root {
    --color-primary: #18E3F3;
    --color-accent: #F5FA00;
    --color-bg-dark: rgba(0, 5, 10, 0.7);
    --color-glass: rgba(4, 50, 55, 0.4);
    --glass-border: rgba(255, 255, 255, 0.15);
    --font-heading: 'Source Sans Pro', sans-serif;
    --font-body: 'Source Sans Pro', sans-serif;
}

/* Background Enhancement */
body::before {
    filter: brightness(0.8) contrast(1.1);
}

/* Base Typography Improvements */
html {
    font-family: var(--font-body);
    font-weight: 300;
}

.site-main>.inner {
    --width: 50rem;
    max-width: 95%;
}

/* GLASSMORPHISM CARDS for Sections */
.site-main>.inner>section.active {
    display: block !important;
    background: var(--color-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    transform: none !important;
}

/* Headings Upgrade */
h1.text-component,
h2.text-component,
.text-component.instance-7,
.text-component.instance-23,
.text-component.instance-1,
.text-component.instance-2,
.text-component.instance-26 {
    text-shadow: 0 0 20px rgba(24, 227, 243, 0.4);
    letter-spacing: 0.3rem !important;
}

/* Body Text Readability */
p.text-component,
.text-component.instance-9,
.text-component.instance-8,
.text-component.instance-4,
.text-component.instance-3,
.text-component.instance-25,
.text-component.instance-6,
.text-component.instance-27 {
    line-height: 1.8 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Buttons Upgrade (Pill shape, Glow) */
.buttons-component.instance-10>li>a {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease !important;
}

.buttons-component.instance-10>li>a:hover {
    transform: translateY(-2px) scale(1.05);
    background: var(--color-primary) !important;
    color: #000 !important;
    box-shadow: 0 0 20px var(--color-primary);
    border-color: var(--color-primary);
}

/* Special CTA Button (Gold/Yellow) override */
.buttons-component.instance-10>li>a.n01,
.buttons-component.instance-10>li>a[href*="Livre"] {
    background: var(--color-accent) !important;
    color: #000 !important;
    font-weight: 800;
}

.buttons-component.instance-10>li>a.n01:hover {
    box-shadow: 0 0 25px var(--color-accent);
    background: #fff !important;
}

/* List Items */
.list-component ul>li::before {
    background-color: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
    border-radius: 50%;
}

/* Video Containers */
.video-component {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.video-component>.frame {
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    width: 100%;
}

/* Footer improvements */
footer#footer {
    margin-top: 3rem !important;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.divider-component::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent) !important;
    height: 1px !important;
}

/* Footer Navigation */
.footer-navigation {
    text-align: center;
    padding: 2rem 0;
    margin: 4rem 0 2rem 0;
    font-size: 1.05rem;
    line-height: 2.2;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 200;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
}

.footer-navigation .nav-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 200;
    padding: 0.3rem 0;
    display: inline-block;
}

.footer-navigation .nav-link:hover {
    color: var(--color-primary);
    text-shadow: 0 0 12px rgba(24, 227, 243, 0.6);
    transform: translateY(-1px);
}

.footer-navigation .nav-bold {
    font-weight: 400;
    color: #FFFFFF;
}

.footer-navigation .nav-orange {
    color: #FF8C00 !important;
    font-weight: 400 !important;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.footer-navigation .nav-orange:hover {
    color: #FFA500 !important;
    text-shadow: 0 0 18px rgba(255, 140, 0, 0.9);
    transform: translateY(-2px) scale(1.03);
}

/* Responsive footer navigation */
@media (max-width: 768px) {
    .footer-navigation {
        font-size: 0.95rem;
        line-height: 2;
        margin-top: 3rem;
        padding-top: 2rem;
    }
}


/* CARDS LAYOUT */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    width: 100%;
}

.card {
    background: linear-gradient(135deg, rgba(24, 227, 243, 0.15) 0%, rgba(4, 50, 55, 0.5) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 2px solid rgba(24, 227, 243, 0.3);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    flex: 1 1 300px;
    max-width: 420px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 20px rgba(24, 227, 243, 0.1);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(24, 227, 243, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(24, 227, 243, 0.3);
    border-color: rgba(24, 227, 243, 0.6);
}

/* Individual card styling */
.card-1 {
    border-color: rgba(245, 250, 0, 0.4);
    background: linear-gradient(135deg, rgba(245, 250, 0, 0.12) 0%, rgba(4, 50, 55, 0.5) 100%);
}

.card-1:hover {
    border-color: rgba(245, 250, 0, 0.7);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 250, 0, 0.25);
}

.card-2 {
    border-color: rgba(24, 227, 243, 0.4);
}

.card-3 {
    border-color: rgba(138, 43, 226, 0.4);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.12) 0%, rgba(4, 50, 55, 0.5) 100%);
}

.card-3:hover {
    border-color: rgba(138, 43, 226, 0.7);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(138, 43, 226, 0.25);
}

/* Card content positioning */
.card > * {
    position: relative;
    z-index: 1;
}

/* Card titles */
.card .card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(24, 227, 243, 0.5);
}

.card-1 .card-title {
    color: var(--color-accent);
    text-shadow: 0 0 15px rgba(245, 250, 0, 0.5);
}

.card-3 .card-title {
    color: #D8BFD8;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

.card h1,
.card h2,
.card h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.card p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.card li {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.card li:hover {
    padding-left: 0.5rem;
    border-bottom-color: var(--color-primary);
}

.card li:last-child {
    border-bottom: none;
}

.card li p,
.card li p a {
    color: #FFFFFF !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    font-weight: 200 !important;
}

.card li p a:hover {
    color: var(--color-primary) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cards-container {
        gap: 1.5rem;
    }

    .card {
        min-height: 250px;
        padding: 2rem 1.5rem;
    }

    .card .card-title {
        font-size: 1.3rem;
    }
}