* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, h1, p, ul, li, button {
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.6;
}

.hero-section {
    background-image: url('images/hero-image1.png'); 
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 180px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: white;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.logo img {
    height: 50px;
    font-size: 16px;
}

.logo span {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 400;
}

.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #333;
    font-weight: 600;
    background-color: rgba(248, 100, 36, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(248, 100, 36, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
}

.language-selector:hover {
    background-color: rgba(248, 100, 36, 0.15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.language-selector img {
    height: 18px;
    width: auto;
    margin-right: 8px;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.language-selector span {
    margin-right: 5px;
    font-size: 16px;
    font-weight: 700;
    color: #444;
}

.arrow-down-icon {
    height: 12px !important;
    width: 12px !important;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.language-selector:hover .arrow-down-icon,
.language-selector.active .arrow-down-icon {
    transform: rotate(180deg);
}

.hero-content {
    text-align: left;
    margin-top: 160px;
    margin-left: 100px;
    max-width: 810px;
    opacity: 0;
}

.hero-content h1 {
    font-size: 51px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.5px;
    opacity: 0;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0;
}

.cta-button,.cta-button-anchor {
    background-color: #f86424;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 6px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-family: 'Nunito Sans', sans-serif;
    opacity: 0;
}

.cta-button .cta-arrow-icon,
.submit-button .cta-arrow-icon, .cta-button-anchor .cta-arrow-icon{
    height: 1em;
    width: auto;
    margin-left: 8px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    transform: rotate(180deg) !important;
    display: inline-block;
}

.hamburger-menu {
    display: none;
    height: 24px;
    width: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover,.cta-button-anchor:hover {
    background-color: #e55a1d;
}

.hero-h1-mobile, .hero-p-mobile {
    display: none;
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        margin-left: 0;
    }

    .logo img {
        height: 40px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 80%;
        max-width: 300px;
        background-color: #fff;
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        padding: 10px 0;
        z-index: 10;
        border-top: 2px solid #f86424;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 10px 10px;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li {
        text-align: center;
        padding: 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        color: #333;
        font-size: 15px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.2s ease;
    }

    .nav-links a::after {
        content: '›';
        font-size: 18px;
        color: #ccc;
        transition: all 0.2s ease;
    }

    .nav-links a:hover {
        background-color: rgba(248, 100, 36, 0.05);
        color: #f86424;
    }

    .nav-links a:hover::after {
        color: #f86424;
        transform: translateX(3px);
    }

    .navbar-right-mobile {
        display: flex;
        align-items: center;
        gap: 15px;
        position: relative;
        z-index: 11;
    }

    .language-selector {
        display: flex;
        align-items: center;
        font-size: 14px;
        padding: 6px 10px;
        background-color: rgba(248, 100, 36, 0.1);
        border-radius: 16px;
        border: 1px solid rgba(248, 100, 36, 0.2);
    }

    .language-selector img {
        height: 16px;
        margin-right: 5px;
    }

    .language-selector span {
        margin-right: 3px;
        font-weight: 700;
    }

    .arrow-down-icon {
        height: 10px !important;
        width: 10px !important;
    }

    .hamburger-menu {
        display: block;
        position: relative;
        padding: 5px;
        height: 32px;
        width: 32px;
    }

    .hamburger-menu.active {
        transform: rotate(90deg);
    }

    .hero-h1-desktop, .hero-p-desktop {
        display: none;
    }

    .hero-h1-mobile, .hero-p-mobile {
        display: block;
    }

    .hero-content {
        margin: 100px 20px 0 20px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content h1, .hero-h1-mobile {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
        text-align: left;
    }

    .hero-content p, .hero-p-mobile {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.4;
        text-align: left;
    }

    .cta-button,.cta-button-anchor {
        padding: 14px 20px;
        font-size: 16px;
        width: 100%;
        max-width: none;
        margin: 0 auto;
        border-radius: 15px;
        display: flex;
        justify-content: center;
        align-self: stretch;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .cta-button .cta-arrow-icon,
    .submit-button .cta-arrow-icon,.cta-button-anchor .cta-arrow-icon {
        height: 1.2em;
        margin-left: 10px;
    }

    .hero-section {
        padding-bottom: 50px;
    }

    .risks-description {
        font-size: 30px;
        margin-bottom: 25px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-weight: 700;
    }
    
    .check-circle {
        min-width: 24px;
        min-height: 24px;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .risk-text {
        font-size: 15px;
    }

    .device-benefits li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .safety-description {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .services-section {
        padding: 50px 0;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
        padding: 0 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 36px;
        height: 36px;
    }

    .service-title {
        font-size: 16px;
    }

    .workflow-section {
        padding: 50px 20px;
    }

    .workflow-title {
        font-size: 32px;
    }

    .workflow-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .workflow-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 20px;
        scroll-behavior: smooth;
    }

    .workflow-container::-webkit-scrollbar {
        display: none;
    }

    .workflow-step {
        flex: 0 0 100%;
        scroll-snap-align: center;
        padding: 30px 20px;
        background-color: white;
        border-radius: 10px;
        color: #333;
    }
    
    .workflow-pagination {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .dot {
        height: 8px;
        width: 8px;
        margin: 0 4px;
        background-color: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    .dot.active {
        background-color: #FFFFFF;
    }

    .step-number {
        font-size: 36px;
    }

    .step-title {
        font-size: 16px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 20px;
        padding: 0 20px;
        text-align: center;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .advantage-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        margin-right: 12px;
        object-fit: contain;
        display: block;
    }
    
    .advantage-icon svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .cta-button .cta-arrow-icon, .submit-button .cta-arrow-icon,.cta-button-anchor .cta-arrow-icon {
        height: 1.2em;
        margin-left: 10px;
    }
} 


.risks-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a3980;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.risks-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    padding: 0 20px;
    align-items: flex-start;
}

.risks-left {
    flex: 1;
}

.risks-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
    max-width: 550px;
    font-weight: 700;
}

.risk-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.risk-item:nth-child(1) { animation-delay: 0.3s; }
.risk-item:nth-child(2) { animation-delay: 0.4s; }
.risk-item:nth-child(3) { animation-delay: 0.5s; }
.risk-item:nth-child(4) { animation-delay: 0.6s; }
.risk-item:nth-child(5) { animation-delay: 0.7s; }

.risk-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.risk-text {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.risks-right {
    flex: 1;
    margin-top: -20px;
}

.safety-devices {
    background-color: #f86424;
    color: white;
    border-radius: 20px;
    padding: 30px 30px 20px 30px;
}

.safety-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.safety-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.device-item {
    margin-bottom: 20px;
}

.device-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.check-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: white;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.check-circle::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url('images/accept.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.check-circle::after {
    content: none;
}

.device-title {
    font-size: 17px;
    font-weight: 700;
}

.device-benefits {
    padding-left: 36px;
    list-style-type: disc;
    margin-top: 3px;
}

.device-benefits li {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.4;
}

.device-item:last-child {
    margin-bottom: 10px;
}

.device-benefits li:last-child {
    margin-bottom: 0;
}


@media (max-width: 768px) {
    .risks-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .risks-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .risks-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .risk-item {
        margin-bottom: 20px;
    }
    
    .risk-icon {
        width: 32px;
        height: 32px;
        margin-right: 12px;
    }
    
    .risk-text {
        font-size: 17px;
    }
    
    .safety-devices {
        padding: 30px 20px;
    }
    
    .safety-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .safety-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .device-title {
        font-size: 16px;
    }
    
    .device-benefits {
        padding-left: 30px;
    }
    
    .device-benefits li {
        font-size: 13px;
        margin-bottom: 6px;
    }
} 


.services-section {
    padding: 80px 100px;
    background-color: white;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-section .section-title {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:nth-child(1) { animation-delay: 0.3s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.5s; }
.service-card:nth-child(4) { animation-delay: 0.6s; }

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    margin: 0;
}


.workflow-section {
    padding: 80px 100px;
    background-color: #1d3380;
    color: white;
}

.workflow-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-align: left;
}

.workflow-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    margin-bottom: 60px;
    text-align: left;
}

.workflow-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
}

.workflow-step {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-step:nth-child(1) { animation-delay: 0.3s; }
.workflow-step:nth-child(2) { animation-delay: 0.4s; }
.workflow-step:nth-child(3) { animation-delay: 0.5s; }
.workflow-step:nth-child(4) { animation-delay: 0.6s; }
.workflow-step:nth-child(5) { animation-delay: 0.7s; }

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #1d3380;
    margin-bottom: 20px;
    line-height: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 20px;
        padding: 0 20px;
        text-align: center;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
        padding: 0 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 36px;
        height: 36px;
    }

    .service-title {
        font-size: 16px;
    }

    .workflow-section {
        padding: 50px 20px;
    }

    .workflow-title {
        font-size: 32px;
    }

    .workflow-subtitle {
        font-size: 16px;
    }

    .workflow-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 20px;
        scroll-behavior: smooth;
    }

    .workflow-container::-webkit-scrollbar {
        display: none;
    }

    .workflow-step {
        flex: 0 0 100%;
        scroll-snap-align: center;
        padding: 30px 20px;
        background-color: white;
        border-radius: 10px;
        color: #333;
    }
    
    .workflow-pagination {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .dot {
        height: 8px;
        width: 8px;
        margin: 0 4px;
        background-color: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    .dot.active {
        background-color: #FFFFFF;
    }

    .step-number {
        font-size: 36px;
    }

    .step-title {
        font-size: 16px;
    }
} 


.advantages-section {
    padding: 80px 0;
    background-color: #fff;
}

.advantages-section .section-title {
    text-align: center;
    color: #1d3380;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
}

.advantages-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    padding: 0 100px;
}

.advantages-left {
    flex: 2.9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantages-image-placeholder {
    width: 100%;
    height: 600px;
    background-color: #f0f0f0;
    border-radius: 12px;
    background-image: url('images/photo123.jpeg');
    background-size: cover;
    background-position: center;
}

.advantages-right {
    flex: 2.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 40px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    border: 0.5px solid #1d3380;
    width: 100%;
    min-width: 400px;
    transition: transform 0.3s ease;
}

.advantage-item:nth-child(1) { animation-delay: 0.3s; }
.advantage-item:nth-child(2) { animation-delay: 0.4s; }
.advantage-item:nth-child(3) { animation-delay: 0.5s; }
.advantage-item:nth-child(4) { animation-delay: 0.6s; }
.advantage-item:nth-child(5) { animation-delay: 0.7s; }

.advantage-item:hover {
    transform: translateX(5px);
}

.advantage-icon {
    width: 35px;
    height: 35px;
    margin-right: 12px;
    flex-shrink: 0;
    min-width: 35px;
    object-fit: contain;
    display: block;
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.advantage-text {
    color: #333;
    font-size: 17px;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
}


.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-section .section-title {
    text-align: center;
    color: #1d3380;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    border: 0.5px solid #1d3380;
    transition: transform 0.3s ease;
}

.faq-item:nth-child(1) { animation-delay: 0.3s; }
.faq-item:nth-child(2) { animation-delay: 0.4s; }
.faq-item:nth-child(3) { animation-delay: 0.5s; }

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    color: #1d3380;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.faq-arrow {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
    display: none;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 20px;
    background-color: #fff;
    overflow: hidden;
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}


@media (max-width: 768px) {
    .advantages-section {
        padding: 50px 20px;
    }

    .advantages-section .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .advantages-container {
        flex-direction: column;
        padding: 0;
    }

    .advantages-left {
        order: 2;
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        width: 100%;
        height: auto;
    }

    .advantages-image-placeholder {
        display: block !important;
        width: 100% !important;
        height: 300px !important;
        border-radius: 12px;
        background: url('images/photo123.jpeg') center center / cover no-repeat #f0f0f0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .advantages-right {
        order: 1;
        width: 100%;
        padding-left: 0;
        gap: 15px;
    }

    .advantage-item {
        padding: 15px;
        border: 0.5px solid #1d3380;
        min-width: auto;
        width: 100%;
    }

    .advantage-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        margin-right: 10px;
        object-fit: contain;
        display: block;
    }
    
    .advantage-icon svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .advantage-text {
        font-size: 14px;
    }

    .faq-section {
        padding: 50px 20px;
    }

    .faq-section .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .faq-container {
        gap: 15px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-arrow {
        display: block;
    }

    .faq-answer {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0 20px 0;
        margin-bottom: 0;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
        opacity: 1;
        padding: 0 20px 15px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.5;
        color: #333;
        padding-right: 20px;
    }
}


.contact-section {
    padding: 60px 20px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header-desktop {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #2F4395;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.3;
}

.contact-header-mobile {
    display: none;
}

.contact-info-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-box {
	margin: 30px auto;
    max-width: 500px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    border: 0.5px solid #1d3380;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
}

.contact-info-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.contact-item p {
    font-size: 16px;
    color: #333;
    font-weight: 400;
}

.department-info {
    margin-top: 30px;
}

.department-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.department-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    border: 0.5px solid #1d3380;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
}

.department-header {
    display: flex;
    background-color: #F9F9F9;
    font-weight: 700;
}

.department-row {
    display: flex;
    border-bottom: 1px solid #E0E0E0;
}

.department-row:last-child {
    border-bottom: none;
}

.department-cell {
    padding: 15px 20px;
    font-size: 16px;
    color: #333;
    flex: 1;
}

.department-cell:first-child {
    font-weight: 600;
}

.department-row:nth-child(odd) {
    animation-delay: 0.3s;
}

.department-row:nth-child(even) {
    animation-delay: 0.5s;
}


@media (max-width: 768px) {
    .contact-section {
        padding: 40px 15px;
    }

    .contact-header-desktop {
        display: none;
    }

    .contact-header-mobile {
        display: block;
        font-size: 24px;
        margin-bottom: 30px;
        font-weight: 800;
        color: #2F4395;
        text-align: center;
        line-height: 1.3;
    }

    .contact-info-container {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .contact-info-box {
        padding: 20px;
    }

    .contact-info-box h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .contact-item {
        margin-bottom: 12px;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    .contact-item p {
        font-size: 14px;
    }

    .department-info h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .department-table {
        display: block;
    }

    .department-header, .department-row {
        display: flex;
    }

    .department-cell {
        padding: 12px 10px;
        font-size: 14px;
    }
} 


.site-footer {
    background-color: #00387a;
    color: #fff;
    padding: 60px 0 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.5fr 2fr 1fr 0.0fr;
    gap: 40px;
    padding: 0 20px 40px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    animation: pulse 2s infinite;
}

.footer-company-info p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-nav h3, .footer-contact h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-links a:hover {
    transform: translateX(5px);
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.footer-contact-item p {
    margin: 0;
    font-size: 16px;
    color: #ccc;
    background-color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
}

.footer-contact-item p a {
    color: #1c1cf4;
    text-decoration: none;
}

.footer-contact-item p a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}


@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 0 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px 30px;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-logo img {
        height: 70px;
        margin-bottom: 15px;
    }
    
    .footer-company-info p {
        font-size: 15px;
        text-align: center;
    }
    
    .footer-nav h3, .footer-contact h3 {
        font-size: 18px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-links a {
        font-size: 15px;
        padding: 5px 10px;
    }
    
    .footer-contact {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .footer-contact-item {
        margin-bottom: 12px;
    }
    
    .footer-contact-item p {
        font-size: 15px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
} 


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}


.animate-on-scroll {
    opacity: 0;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}


.fade-in.animate {
    animation-name: fadeIn;
}

.slide-up.animate {
    animation-name: slideInUp;
}

.slide-left.animate {
    animation-name: slideInLeft;
}

.slide-right.animate {
    animation-name: slideInRight;
}

.scale-in.animate {
    animation-name: scaleIn;
}


.animated {
    opacity: 1;
}


.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.advantage-item {
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(5px);
}

.faq-item {
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.contact-info-box {
    transition: transform 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
}

.footer-links a {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-links a:hover {
    transform: translateX(5px);
    opacity: 1;
}


@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        animation: none !important;
        opacity: 1 !important;
    }
    
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
} 

/* Language Dropdown Menu */
.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 160px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(248, 100, 36, 0.2);
}

.language-selector:hover .language-dropdown,
.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.language-option:hover {
    background-color: rgba(248, 100, 36, 0.05);
}

.language-option.active {
    background-color: rgba(248, 100, 36, 0.1);
    font-weight: bold;
}

.language-option img {
    height: 16px;
    width: auto;
    margin-right: 10px;
    border-radius: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.language-option span {
    color: #444;
    font-size: 14px;
}

/* Mobile styles for language dropdown */
@media (max-width: 768px) {
    .language-dropdown {
        right: 0;
        top: calc(100% + 8px);
        min-width: 140px;
        border-radius: 10px;
    }
    
    .language-option {
        padding: 8px 12px;
    }
    
    .language-option img {
        height: 14px;
    }
    
    .language-option span {
        font-size: 13px;
    }
} 

/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: white;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    background-color: #1d3380;
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.modal-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin: 0;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.modal-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 30px 25px;
}

.modal-description {
    color: #555;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(29, 51, 128, 0.2);
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1d3380;
}

.submit-button {
    background-color: #f86424;
    color: white;
    border: none;
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #e55a1d;
}

.modal-success {
    padding: 40px 25px;
    text-align: center;
    display: none;
}

.modal-success.active {
    display: block;
}

.success-icon {
    width: 70px;
    height: 70px;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 20px;
}

.modal-success h3 {
    color: #333;
    font-size: 22px;
    margin-bottom: 15px;
}

.modal-success p {
    color: #555;
    margin-bottom: 25px;
}

.close-success-button {
    background-color: #1d3380;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-success-button:hover {
    background-color: #152760;
}

@media (max-width: 576px) {
    .modal-container {
        width: 90%;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h3 {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .submit-button {
        padding: 12px 16px;
        font-size: 15px;
    }
} 