.elementor-102926 .elementor-element.elementor-element-a2c9710{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS *//* Background: No changes, still the same dark radial gradient. */
body {
    background: radial-gradient(circle at center, #283747, #17202A);
    color: #F5F5F5;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-attachment: fixed;

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

/* Keyframes for subtle aurora-like movement */
@keyframes auroraFlow {
    0%   { background-position: 50% 50%; }
    100% { background-position: 60% 40%; }
}

/* Headings:
   A radial gradient with multiple soft pastel stops, creating a calming,
   healing aurora effect. The animation remains subtle and slow. */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    background: radial-gradient(circle,
                                #9EF7A5 0%,
                                #8CE9D0 25%,
                                #8DD3FA 50%,
                                #D6C7F4 75%,
                                #FFC9D9 100%);
    background-size: 200% 200%; 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: auroraFlow 30s infinite alternate ease-in-out;
}

h1 {
    font-size: 2.5em;
    text-shadow: none;
}

h2 {
    font-size: 2em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

h3 {
    font-size: 1.75em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

h4, h5, h6 {
    font-size: 1.5em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Links:
   Apply the same aurora gradient and subtle animation on hover. */
a {
    text-decoration: underline;
    color: #0000EE;
}

a:visited {
    color: #551A8B;
}

a:hover {
    background: radial-gradient(circle,
                                #9EF7A5 0%,
                                #8CE9D0 25%,
                                #8DD3FA 50%,
                                #D6C7F4 75%,
                                #FFC9D9 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-decoration: underline;
    animation: auroraFlow 30s infinite alternate ease-in-out;
}

a:focus {
    outline: 2px solid #4DB6AC;
    outline-offset: 2px;
}

/* Buttons, Header, Footer, Container:
   No changes from previous version. */
button {
    background-color: #2980B9;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1em;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #3498DB;
}

header, footer {
    background-color: #154360;
    color: #FFFFFF;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.container {
    padding: 20px;
}

video {
    display: block;
    max-width: 100%;
    z-index: 0;
}/* End custom CSS */