/* Start custom CSS for text-editor, class: .elementor-element-b5f0368 *//* Global Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #00a0e9;
    --accent-color: #ff6b00;
    --text-color: #333333;
    --light-gray: #f5f7fa;
    --medium-gray: #e0e5eb;
    --dark-gray: #6c757d;
    --white: #ffffff;
    --black: #000000;
    --section-padding: 80px 0;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

/* Sections */
section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--light-gray);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0a2540 0%, #00487c 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.hero-section h1,
.hero-section .hero-subtext {
    color: var(--white);
    max-width: 800px;
}

.hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Intro Section */
.intro-section .section-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 8/* End custom CSS */