.elementor-1746 .elementor-element.elementor-element-6b53f0a1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1746 .elementor-element.elementor-element-2354d268{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1746 .elementor-element.elementor-element-1e5e8752{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1746 .elementor-element.elementor-element-58edabed{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1746 .elementor-element.elementor-element-35d1dfc5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1746 .elementor-element.elementor-element-5c95b7e9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:767px){.elementor-1746 .elementor-element.elementor-element-6fb4166f{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-6fb4166f *//* General styles for the section */
.title-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px; /* Add spacing around the section */
    background-color: #f5f5f5; /* Light background color */
    width: 100%; /* Full width */
    margin: 0 auto; /* Center the section */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

/* Title styles */
.title {
    color: #0073e6; /* Blue color for the title */
    font-size: 28px; /* Font size for desktop */
    font-weight: bold;
    margin: 10px 0; /* Spacing above and below */
}

/* Subtitle styles */
.subtitle {
    color: #555; /* Subtle gray color for the subtitle */
    font-size: 16px; /* Font size for desktop */
    margin: 5px 0; /* Spacing above and below */
}

/* Responsive styles */
@media (max-width: 768px) { /* Tablet and smaller devices */
    .title {
        font-size: 24px; /* Slightly smaller title font */
    }

    .subtitle {
        font-size: 14px; /* Slightly smaller subtitle font */
    }

    .title-section {
        padding: 30px 15px; /* Adjust padding for smaller devices */
    }
}

@media (max-width: 480px) { /* Mobile devices */
    .title {
        font-size: 20px; /* Smaller title font for mobile */
    }

    .subtitle {
        font-size: 12px; /* Smaller subtitle font for mobile */
    }

    .title-section {
        padding: 20px 10px; /* Adjust padding for mobile devices */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-567a29dc */.translation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;
}

.section-block {
    margin-bottom: 40px;
}

.section-title {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.translation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Ensures consistent width regardless of the number of items */
    gap: 20px;
}

.translation-link {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #2b6cb0;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.translation-link:hover {
    background: #2b6cb0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 20px;
    }
    
    .translation-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .translation-link {
        font-size: 14px;
    }
}/* End custom CSS */