.elementor-580 .elementor-element.elementor-element-2e604399{--display:flex;}.elementor-widget-text-editor{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}@media(max-width:1440px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}/* Start custom CSS for text-editor, class: .elementor-element-1171b10a *//* General Styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4; /* Light grey to add contrast */
    color: #333; /* Default text color */
}

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
    color: #4B0082; /* Purple heading color for brand identity */
    font-weight: bold;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

/* Section Styling */
.elementor-section {
    background: #ffffff; /* White background for sections */
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adding subtle depth */
}

/* Button Styles */
.elementor-button {
    background-color: #4B0082; /* Purple color for brand identity */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.elementor-button:hover {
    background-color: #6a00b0; /* Darker purple for hover effect */
}

/* Link Styling */
a {
    color: #4B0082; /* Purple link color for consistency */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Form Styling */
.elementor-widget-form input[type="text"],
.elementor-widget-form input[type="email"],
.elementor-widget-form select,
.elementor-widget-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.elementor-widget-form input[type="submit"],
.elementor-widget-form button {
    background-color: #4B0082;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.elementor-widget-form input[type="submit"]:hover,
.elementor-widget-form button:hover {
    background-color: #6a00b0;
}

/* Image Styling */
.elementor-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* List Styling */
ul, ol {
    margin: 20px;
    padding-left: 40px;
}

ul li {
    margin-bottom: 10px;
    list-style: disc;
    color: #333;
}

/* Custom Section for Highlighting Important Info */
.highlight-section {
    background-color: #ffeeba; /* Light yellow background to highlight important content */
    padding: 20px;
    border-left: 5px solid #ff9900; /* Highlight border */
    border-radius: 5px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .elementor-section {
        padding: 20px;
    }

    .elementor-button {
        padding: 10px 20px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-2e604399 *//* Universal Styles to Ensure Consistency */
body {
    font-family: 'Roboto', sans-serif; /* Change this to your desired font */
    color: #333; /* Sets a neutral font color for readability */
    background-color: #f4f4f9; /* Light background to add softness */
    line-height: 1.6; /* Improves readability */
    margin: 0;
    padding: 0;
}

/* Headings Consistency */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* Change to your intended heading font */
    color: #2c3e50; /* A rich, professional color for headings */
    margin-bottom: 20px;
}

/* Links Styles */
a {
    color: #3498db; /* A vibrant blue for links */
    text-decoration: none;
}

a:hover {
    color: #2980b9; /* Darker blue on hover */
    text-decoration: underline;
}

/* Buttons Consistency */
button, .button {
    background-color: #e67e22; /* Bright orange for calls to action */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

button:hover, .button:hover {
    background-color: #d35400; /* Darker on hover */
}

/* General Container for Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Consistent Spacing Between Sections */
section {
    padding: 40px 20px;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Adds subtle depth */
}

/* Background Colors for Sections */
section:nth-child(odd) {
    background-color: #ecf0f1; /* Alternating light gray for visual flow */
}

/* Footer Styling */
footer {
    background-color: #34495e;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

footer a {
    color: #ecf0f1;
    text-decoration: none;
}

footer a:hover {
    color: #bdc3c7;
    text-decoration: underline;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
        font-size: 90%; /* Adjust headings on smaller screens */
    }
    
    .container {
        padding: 10px;
    }

    section {
        padding: 20px 10px;
    }
}/* End custom CSS */