.elementor-103054 .elementor-element.elementor-element-0d32c2e{--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;}.elementor-103054 .elementor-element.elementor-element-ae97040 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS *//* Background:
   - Set to transparent to allow the underlying content to show through. */
body {
    background-color: transparent; /* Transparent background */
    color: #2C3E50; /* Dark Slate Gray for text */
    font-family: 'Poppins', sans-serif; /* Modern, geometric sans-serif font */
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-attachment: fixed;

    /* Enhancing text clarity and sharpness */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

/* Headings:
   - Increased font-weight and letter-spacing for emphasis.
   - Smooth radial gradient text effect for all headings.
   - Text-shadow on H2-H6 for depth. */
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 at center, #8A2BE2, #9370DB, #BA55D3); /* Blue Violet to Medium Orchid gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

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:
   - Default browser colors for normal and visited states.
   - Gradient effect on hover for a subtle highlight. */
a {
    text-decoration: underline;
    color: #0000EE;
}

a:visited {
    color: #551A8B;
}

a:hover {
    background: radial-gradient(circle at center, #8A2BE2, #9370DB, #BA55D3); /* Blue Violet to Medium Orchid gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-decoration: underline;
}

a:focus {
    outline: 2px solid #4DB6AC;
    outline-offset: 2px;
}

/* Buttons:
   - Muted purple tone against the transparent background.
   - Smooth hover transition to a lighter shade. */
button {
    background-color: #9370DB; /* Medium Purple */
    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: #BA55D3; /* Medium Orchid */
}

/* Header & Footer:
   - Muted purple background for grounding elements.
   - White text with subtle shadow for legibility. */
header, footer {
    background-color: #8A2BE2; /* Blue Violet */
    color: #FFFFFF;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Container:
   - Balanced padding ensures comfortable reading and maintains layout integrity. */
.container {
    padding: 20px;
}

/* Normal Text:
   - Subtle text-shadow for a 3D effect.
   - Optimized for readability against the transparent background. */
p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
}/* End custom CSS */