.elementor-3 .elementor-element.elementor-element-41cba9e{--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-3 .elementor-element.elementor-element-20fd646{--display:flex;}/* Start custom CSS for container, class: .elementor-element-20fd646 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
    color: #2c2c2c;
    line-height: 1.8;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* ========== HEADER ========== */
.header {
    text-align: center;
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.header .update-date {
    font-size: 14px;
    color: #666;
    font-weight: 300;
    margin-bottom: 30px;
}

.header .intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    color: #444;
    line-height: 1.9;
}

/* ========== SECTIONS ========== */
.section {
    margin-bottom: 60px;
    position: relative;
}

.section-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.section-wrapper.reverse {
    direction: rtl;
}

.section-wrapper.reverse > * {
    direction: ltr;
}

.section-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    opacity: 0.15;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a4d7a;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: #1a4d7a;
}

.section-content {
    font-size: 16px;
    color: #444;
    line-height: 1.9;
}

.section-content p {
    margin-bottom: 15px;
}

.section-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.section-content ul li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}

.section-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #1a4d7a;
    border-radius: 50%;
}

.section-content strong {
    color: #1a4d7a;
    font-weight: 600;
}

/* ========== DIVIDER ========== */
.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, #1a4d7a, transparent);
    margin: 60px auto;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    margin-top: 80px;
    border: 1px solid #e8e8e8;
}

.contact-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a4d7a;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.8;
}

.contact-section .company-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 18px;
    margin-top: 30px;
}

.contact-section .email {
    color: #1a4d7a;
    font-weight: 600;
    text-decoration: none;
    font-size: 17px;
    transition: opacity 0.3s ease;
}

.contact-section .email:hover {
    opacity: 0.7;
}

/* ========== FOOTER MESSAGE ========== */
.footer-message {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    font-size: 15px;
    color: #666;
    font-style: italic;
}

/* ========== SMOOTH SCROLL ========== */
html {
    scroll-behavior: smooth;
}

/* ========== HOVER EFFECTS ========== */
.section {
    transition: transform 0.3s ease;
}

.section:hover {
    transform: translateX(5px);
}

.section-wrapper.reverse:hover {
    transform: translateX(-5px);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    .header h1 {
        font-size: 32px;
    }

    .header .intro {
        font-size: 15px;
    }

    .section-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-wrapper.reverse {
        direction: ltr;
    }

    .section-title {
        font-size: 22px;
    }

    .section-content {
        font-size: 15px;
    }

    .contact-section {
        padding: 30px 20px;
    }

    .contact-section h2 {
        font-size: 24px;
    }
}/* End custom CSS */