:root {
    --primary-bg: #fff;
    --secondary-bg: #EAF4FD;
    --footer-bg: #063231;
    --title-color: #000;
    --accent-color: #0099ff;
    --highlight-color: #0099ff;
    --text-color: #616161;
    --divider-color: #ddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   font-family: "PT Sans", sans-serif;
    color: var(--text-color);
    background-color: var(--primary-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito Sans", sans-serif;
    text-transform: uppercase;
    color: var(--title-color);
    margin-bottom: 1rem;
    line-height: 1.1;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--title-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Nunito Sans", sans-serif;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btnAccent {
    background-color: var(--accent-color);
}

.btnHighlight {
    background-color: var(--highlight-color);
    color: #fff;
}

.sectionTitle {
    margin-bottom: 3rem;
    text-align: center;
}

.sectionSubtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.el_TopLine .el_ContactInfo {
    padding: 0;
}

.el_TopLine {
    background-color: var(--secondary-bg);
    padding: 8px 0;
    font-size: 0.85rem;
}

.el_TopLineContent {
    display: flex;
    justify-content: space-between;
}


.el_Header {
    padding: 15px 0;
    position: absolute;
    width: 100%;
    top: 60px;
    left: 50%;
    transform: translate(-50%, 0);
    background: rgba(0, 0, 0, 0.3) ;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.el_HeaderContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.el_Logo {
    font-family: "Nunito Sans", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.el_Logo span {
    color: #0099ff;
}

.el_Nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.el_NavList {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.el_NavItem {
    margin-left: 30px;
    position: relative;
}

.el_NavLink {
    font-weight: 500;
    position: relative;
    color: #fff;
}

.el_NavLink:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.el_NavLink:hover:after {
    width: 100%;
}

.el_MobileToggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--title-color);
}


.el_Banner {
    padding: 240px 0 140px 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.el_BannerContent {
    position: relative;
    max-width: 600px;
}

.el_BannerTitle {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.el_BannerTitle span {
    color: var(--highlight-color);
}

.el_BannerText {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #fff;
}


.el_Services {
    padding: 100px 0;
    background-color: var(--primary-bg);
}

.el_ServicesGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.el_ServiceCard {
    background-color: var(--secondary-bg);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.el_ServiceCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.el_ServiceIcon {
    width: 70px;
    height: 70px;
    background-color: var(--highlight-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--title-color);
}

.el_ServiceIcon img{
    width: 46px;
}

.el_ServiceTitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
}


.el_About {
    padding: 100px 0;
    background-color: var(--secondary-bg);
}

.el_AboutContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.el_AboutImage {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.el_AboutImage img {
    width: 100%;
    height: auto;
    display: block;
}

.el_AboutText {
    margin-bottom: 2rem;
}


.el_Stats {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

.el_StatsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}

.el_StatItem {
    text-align: center;
    padding: 0 30px;
    position: relative;
}

.el_StatItem:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: var(--divider-color);
}

.el_StatNumber {
    font-family: "Nunito Sans", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 5px;
}

.el_StatPlus {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5rem;
    display: inline-block;
    margin-left: 5px;
}

.el_StatTitle {
    font-size: 1.1rem;
    margin-bottom: 10px;
}


.el_Process {
    padding: 70px 0 100px 0;
    background-color: rgba(9,132,227,0.058823529411764705);

    position: relative;
    overflow: hidden;
}


.el_Process .sectionSubtitle{
    color: #000;
}
.el_Process h2 {
    color: #000;
}


.el_Process .sectionTitle,
.el_Process .sectionSubtitle {
    color: white;
}

.el_ProcessGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.el_ProcessStep {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.el_ProcessStep:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.el_ProcessNumber {
    font-family: "Nunito Sans", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.el_ProcessTitle {
    font-size: 1.3rem;
    margin-bottom: 15px;

}


.el_Testimonials {
    padding: 100px 0 70px 0;
    background-color: var(--primary-bg);
}

.el_TestimonialsContent {
    display: flex;
    align-items: center;
    gap: 60px;
    align-items: center;
}

.el_TestimonialsSlider {
    position: relative;
    width: 50%;

}

.el_TestimonialSlide {
    background-color: var(--secondary-bg);
    padding: 40px;
    border-radius: 8px;
}

.el_TestimonialStars {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.el_TestimonialText {
    font-style: italic;
    margin-bottom: 25px;
}

.el_TestimonialAuthor {
    display: flex;
    align-items: center;
}

.el_TestimonialAvatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.el_TestimonialAvatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.el_TestimonialName {
    font-weight: 600;
}

.el_TestimonialPosition {
    font-size: 0.9rem;
    color: #777;
}


.el_Cta {
    padding: 70px 0;
    background: url('../images/call-do-action-bg.jpg') center no-repeat;
    background-size: cover;
    text-align: center;
    border-radius: 15px;
    max-width: 1160px;
    width: 98%;
    margin: 20px auto 40px auto;
}

.el_Cta .sectionSubtitle{
    color: #fff;
}

.el_CtaTitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.el_CtaText {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #fff;
}


.el_Footer {
    background: url('../images/footer-bg.jpg') left center no-repeat;
    background-size: cover;
    color: white;
    padding: 80px 0 30px;
}

.el_FooterContent {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.el_FooterLogo {
    font-family: "Nunito Sans", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: white;
    display: inline-block;
}

.el_FooterLogo span {
    color: var(--highlight-color);
}

.el_FooterAbout {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

.el_FooterTitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
}

.el_FooterList {
    list-style: none;
}

.el_FooterItem {
    margin-bottom: 12px;
}

.el_FooterLink {
    transition: all 0.3s ease;
}

.el_FooterLink:hover {
    color: var(--highlight-color);
}

.el_FooterContactItem {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.el_FooterContactIcon {
    margin-right: 10px;
    color: var(--highlight-color);
    margin-top: 5px;
}

.el_FooterBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}


.el_CookiePopup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-bg);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    max-width: 430px;
    z-index: 1001;
    display: none;
}

.el_CookieTitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.el_CookieText {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.el_CookieActions {
    display: flex;
    gap: 10px;
}

.el_CookieBtn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.el_CookieAccept {
    background-color: var(--title-color);
    color: white;
}

.el_CookieDecline {
    background-color: var(--secondary-bg);
    color: var(--text-color);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.el_Animate {
    animation: fadeInUp 0.8s ease forwards;
}

.el_Breadcrumbs {
    padding: 140px 0 20px 0;
    background-color: var(--secondary-bg);
}

.el_BreadcrumbsNav {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.el_BreadcrumbsSeparator {
    margin: 0 10px;
    color: var(--accent-color);
}

.el_BreadcrumbsCurrent {
    color: var(--accent-color);
    font-weight: 600;
}

.el_AboutHero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

.el_AboutHeroContent {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.el_AboutHeroTitle {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.el_AboutHeroText {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.el_AboutHeroStats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 4rem;
}

.el_AboutHeroStat {
    text-align: center;
}

.el_AboutHeroNumber {
    font-family: "Nunito Sans", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 10px;
}

.el_AboutHeroNumber span {
    color: var(--accent-color);
}

.el_AboutHeroLabel {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.el_Approach {
    padding: 100px 0;
    background-color: var(--primary-bg);
}

.el_ApproachContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.el_ApproachText h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.el_ApproachFeatures {
    margin-top: 3rem;
}

.el_ApproachFeature {
    display: flex;
    margin-bottom: 2.5rem;
}

.el_ApproachIcon {
    width: 60px;
    height: 60px;
    background-color: var(--highlight-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--title-color);
}

.el_ApproachFeatureContent h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.el_ApproachVisual {
    position: relative;
    height: 500px;
}

.el_ApproachMainImage {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    line-height: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.el_ApproachMainImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.el_ApproachCard {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 120px;
    transition: all 0.3s ease;
}

.el_ApproachCard:hover {
    transform: translateY(-5px);
}

.el_ApproachCard i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.el_ApproachCard h5 {
    font-size: 0.9rem;
    margin: 0;
}

.el_ApproachCard1 {
    top: 10%;
    left: -20px;
}

.el_ApproachCard2 {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.el_ApproachCard3 {
    bottom: 10%;
    left: -20px;
}

@media (max-width: 768px) {
    .el_AboutHeroTitle {
        font-size: 2.5rem;
    }

    .el_AboutHeroStats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .el_ApproachContent {
        grid-template-columns: 1fr;
    }

    .el_ApproachVisual {
        height: 400px;
    }

    .el_ApproachCard {
        position: relative;
        margin-bottom: 20px;
        width: 100%;
    }

    .el_ApproachCard1,
    .el_ApproachCard2,
    .el_ApproachCard3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }
}

.el_ServicesHero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    text-align: center;
}

.el_ServicesHeroContent {
    max-width: 800px;
    margin: 0 auto;
}

.el_ServicesHeroTitle {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.el_ServicesHeroText {
    font-size: 1.2rem;
    color: #666;
}

.el_ServicesDetailed {
    padding: 100px 0;
    background-color: var(--primary-bg);
}

.el_ServicesTabNav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    justify-content: center;
}

.el_ServicesTabLink {
    padding: 15px 25px;
    background: var(--secondary-bg);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.el_ServicesTabLink.active,
.el_ServicesTabLink:hover {
    background: var(--accent-color);
    color: white;
}

.el_ServicesTabPane {
    display: none;
}

.el_ServicesTabPane.active {
    display: block;
}



.el_ServiceDetailText h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.el_ServiceFeatures {
    margin: 2rem 0;
}

.el_ServiceFeature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.el_ServiceFeature i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.el_ServiceDetailVisual {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 15px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.el_ServiceChart {
    width: 100%;
}

.el_ChartBar {
    margin-bottom: 20px;
}

.el_ChartLabel {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.el_ChartBarInner {
    height: 20px;
    background: var(--highlight-color);
    border-radius: 10px;
    width: 0;
    transition: width 1s ease;
}

.el_InvestmentGraph {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 200px;
}

.el_GraphLine {
    width: 30px;
    background: var(--highlight-color);
    border-radius: 5px 5px 0 0;
    transition: all 0.3s ease;
}

.el_GraphLine.active {
    background: var(--accent-color);
}

.el_ServiceProcess {
    padding: 100px 0;
    background-color: var(--secondary-bg);
}

.el_ProcessSteps {
    margin-top: 3rem;
}



.el_ProcessSteps .el_ProcessStep {
    padding: 0;
    margin-bottom: 40px;
    background: transparent;
    box-shadow: none;
}


.el_ProcessStepNumber {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Nunito Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.el_ProcessStepContent {
    text-align: left;
}

.el_ProcessStepContent h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    margin-top: 20px;
}

.el_ProcessCircle {
    width: 400px;
    height: 400px;
    position: relative;
    margin: 0 auto;
}

.el_ProcessSegment {
    position: absolute;
    width: 50%;
    height: 50%;
    overflow: hidden;
    transform-origin: 100% 100%;
}

.el_ProcessSegment1 {
    top: 0;
    left: 0;
    transform: rotate(0deg) skew(30deg);
}

.el_ProcessSegment2 {
    top: 0;
    right: 0;
    transform: rotate(90deg) skew(30deg);
}

.el_ProcessSegment3 {
    bottom: 0;
    right: 0;
    transform: rotate(180deg) skew(30deg);
}

.el_ProcessSegment4 {
    bottom: 0;
    left: 0;
    transform: rotate(270deg) skew(30deg);
}

.el_SegmentContent {
    position: absolute;
    width: 200%;
    height: 200%;
    text-align: center;
    transform: skew(-30deg) rotate(-45deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.el_ProcessSegment1 .el_SegmentContent {
    background: var(--accent-color);
}

.el_ProcessSegment2 .el_SegmentContent {
    background: var(--title-color);
}

.el_ProcessSegment3 .el_SegmentContent {
    background: var(--highlight-color);
    color: var(--title-color);
}

.el_ProcessSegment4 .el_SegmentContent {
    background: #666;
}

.el_SegmentContent i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.el_ProcessCenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

@media (max-width: 768px) {
    .el_ServicesHeroTitle {
        font-size: 2.5rem;
    }

    .el_ServicesTabNav {
        flex-direction: column;
    }

    .el_ServiceDetail {
        grid-template-columns: 1fr;
    }

    .el_ServiceProcessContent {
        grid-template-columns: 1fr;
    }

    .el_ProcessCircle {
        width: 300px;
        height: 300px;
    }

    .el_ProcessCenter {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }
}





.el_BreadcrumbsNav {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.el_BreadcrumbsSeparator {
    margin: 0 10px;
    color: var(--accent-color);
}

.el_BreadcrumbsCurrent {
    color: var(--accent-color);
    font-weight: 600;
}

.el_ContactInfo {
    padding: 80px 0;
    background-color: var(--secondary-bg);
}

.el_ContactInfoGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.el_ContactInfoItem {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.el_ContactInfoItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.el_ContactInfoIcon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: white;
}

.el_ContactInfoContent h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--title-color);
}

.el_ContactInfoContent p {
    margin-bottom: 0;
}

.el_ContactInfoContent a {
    color: var(--text-color);
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.el_ContactInfoContent a:hover {
    color: var(--accent-color);
}

.el_ContactFormSection {
    padding: 100px 0;
    background-color: var(--primary-bg);
}

.el_ContactFormContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.el_ContactFormIntro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--title-color);
}

.el_ContactFormIntro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.el_ContactFeatures {
    margin-top: 3rem;
}

.el_ContactFeature {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.el_ContactFeature i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 5px;
}

.el_ContactFeature h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--title-color);
}

.el_ContactFeature p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.el_ContactFormWrapper {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.el_ContactForm {
    display: block;
}

.el_FormRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.el_FormGroup {
    margin-bottom: 20px;
}

.el_FormGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--title-color);
    font-size: 0.95rem;
}

.el_FormGroup input,
.el_FormGroup select,
.el_FormGroup textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
   font-family: "PT Sans", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.el_FormGroup input:focus,
.el_FormGroup select:focus,
.el_FormGroup textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(247, 87, 9, 0.1);
}

.el_FormGroup textarea {
    resize: vertical;
    min-height: 120px;
}

.el_FormSubmit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.el_FormSubmit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 50, 49, 0.3);
}

.el_FormSubmit:active {
    transform: translateY(0);
}

.el_FormSuccess {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.el_SuccessIcon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.el_FormSuccess h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.el_FormSuccess p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}


.el_FormSubmit.loading {
    position: relative;
    color: transparent;
}

.el_FormSubmit.loading:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: el_Spin 0.8s linear infinite;
}

@keyframes el_Spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@media (max-width: 992px) {
    .el_ContactInfoGrid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .el_ContactFormContent {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .el_ContactFormContent {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .el_ContactFormIntro h2 {
        font-size: 2rem;
    }

    .el_FormRow {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .el_ContactFormWrapper {
        padding: 30px 25px;
    }

    .el_ContactInfoItem {
        padding: 25px;
    }

    .el_ContactInfoIcon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .el_ContactInfo {
        padding: 60px 0;
    }

    .el_ContactFormSection {
        padding: 60px 0;
    }

    .el_ContactFormWrapper {
        padding: 25px 20px;
    }

    .el_ContactFeature {
        flex-direction: column;

    }

    .el_ContactFeature i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.el_PolicyHeader {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

.el_PolicyHeaderContent {
    text-align: center;
}

.el_PolicyHeader h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.el_PolicyMeta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
    color: #666;
}

.el_PolicyContent {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

.el_PolicyMain {
    max-width: 900px;
    margin: 0 auto;
}

.el_PolicySection {
    margin-bottom: 50px;
}

.el_PolicySection h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--title-color);
    border-bottom: 2px solid var(--highlight-color);
    padding-bottom: 10px;
}

.el_PolicySection h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--title-color);
}

.el_PolicySection p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.el_PolicySection ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.el_PolicySection li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

.el_PolicyContact {
    background: var(--secondary-bg);
    padding: 25px;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.el_PolicyContact p {
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .el_PolicyHeader h1 {
        font-size: 2.2rem;
    }

    .el_PolicyMeta {
        flex-direction: column;
        gap: 10px;
    }

    .el_PolicySection h2 {
        font-size: 1.5rem;
    }
}

.el_PolicyNotice {
    background: #fff8e6;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
}

.el_NoticeIcon {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.el_PolicyNotice p {
    margin: 0;
    line-height: 1.6;
}

.el_CookiesOverview {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.el_CookiesIntro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.el_CookiesDefinition {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--divider-color);
}

.el_CookieType {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid var(--highlight-color);
}

.el_CookieType h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.el_CookieExamples {
    background: var(--secondary-bg);
    padding: 15px;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.el_CookiesUsage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 2rem;
}

.el_UsageItem {
    display: flex;
    align-items: flex-start;
}

.el_UsageIcon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
}

.el_UsageContent h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--title-color);
}

.el_UsageContent p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.el_ThirdPartyCookies {
    display: grid;
    gap: 20px;
    margin-top: 1.5rem;
}

.el_ThirdPartyItem {
    background: var(--secondary-bg);
    padding: 20px;
    border-radius: 8px;
}

.el_ThirdPartyItem h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--title-color);
}

@media (max-width: 768px) {
    .el_CookiesUsage {
        grid-template-columns: 1fr;
    }

    .el_CookiesOverview {
        padding: 25px;
    }
}


































@media (max-width: 992px) {

    .el_ServicesGrid,
    .el_StatsGrid,
    .el_ProcessGrid,
    .el_FooterContent {
        grid-template-columns: repeat(2, 1fr);
    }

    .el_AboutContent,
    .el_TestimonialsContent {
        grid-template-columns: 1fr;
    }

    .el_AboutImage {
        order: 2;
    }

    .el_AboutText {
        order: 1;
    }

    .el_BannerTitle {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .el_MobileToggle {
        display: block;
    }

    .el_Nav {
        position: fixed;
        top: 82px;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        display: none;
    }

    .el_Nav.active {
        right: 0;
        display: flex;
    }

    .el_NavList {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .el_NavItem {
        margin: 0 0 10px 0;
        width: 100%;
    }

    .el_NavLink {
        display: block;
        padding: 10px 0;
        color: #111;
    }

    .el_Overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        display: none;
    }

    .el_Overlay.active {
        display: block;
    }

    .el_ServicesGrid,
    .el_StatsGrid,
    .el_ProcessGrid,
    .el_FooterContent {
        grid-template-columns: 1fr;
    }

    .el_StatItem:not(:last-child):after {
        display: none;
    }

    .el_BannerTitle {
        font-size: 2rem;
    }

    .el_CtaTitle {
        font-size: 2rem;
    }
}

@media(max-width: 767px) {
    .el_TopLine {
        display: none;
    }

    .el_ApproachVisual {
        height: auto;
    }

    .el_ApproachContent {
        gap: 40px;
    }

    .el_Header {
        top: 15px;
    }

    .el_Banner {
        padding: 160px 0 70px 0;
    }

    .el_TestimonialsContent {
        flex-direction: column;
        gap: 15px;
    }

    .el_TestimonialsSlider {
        width: 100%;
    }

    .el_FooterContent {
        gap: 24px;
    }

    .el_Logo {
        font-size: 22px;
    }

    .el_CookiePopup {
        left: 50%;
        transform: translate(-50%, 0);
        width: 98%;
    }
}