/* Select2 стилизация под тему сайта */
.select2-container--default {
    width: 100% !important;
    max-width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 38px !important;
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem !important;
    background-color: #fff !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #495057 !important;
    line-height: 36px !important;
    padding-left: 12px !important;
    padding-right: 20px !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6c757d !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important;
    right: 8px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #6c757d transparent transparent transparent !important;
    border-width: 5px 4px 0 4px !important;
}

/* Dropdown стили */
.select2-container--default .select2-dropdown {
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    box-sizing: border-box !important;
    z-index: 10000 !important;
}

.select2-container--default .select2-results__option {
    padding: 8px 12px !important;
    color: #495057 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #28a745 !important;
    color: #fff !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e9ecef !important;
    color: #495057 !important;
}

/* Focus стили */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

/* Clear button */
.select2-container--default .select2-selection--single .select2-selection__clear {
    color: #6c757d !important;
    font-size: 18px !important;
    line-height: 36px !important;
    margin-right: 20px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear:hover {
    color: #dc3545 !important;
}

/* Search input в dropdown */
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem !important;
    padding: 6px 12px !important;
    margin: 4px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

/* Modal Styles */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    padding: 24px 24px 0 24px;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.btn-close {
    background: none;
    border: none;
    font-size: 18px;
    opacity: 0.6;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 0 24px 24px 24px;
}

.modal-body p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.modal-body .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.modal-body .form-control {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
}

.modal-body .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.modal-body .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    padding: 10px 24px;
    font-weight: 500;
}

.modal-body .btn-success:hover {
    background-color: #218838;
    border-color: #218838;
}

.modal-body small {
    font-size: 12px;
    line-height: 1.4;
}

.modal-body .text-decoration-underline {
    text-decoration: underline !important;
    color: #28a745;
}

.modal-body .text-decoration-underline:hover {
    color: #218838;
}

/* Адаптивность модальных окон */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 5% auto;
        max-width: 90%;
        width: 90%;
    }
    
    .modal-content {
        margin: 0;
        border-radius: 8px;
    }
    
    .modal-header {
        padding: 20px 20px 0 20px;
    }
    
    .modal-body {
        padding: 0 20px 20px 20px;
    }
    
    .modal-body .d-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    .modal-body small {
        text-align: center !important;
    }
    
    .modal-body .row .col-md-6 {
        margin-bottom: 15px;
    }
    
    .modal-body .form-control,
    .modal-body .form-select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .modal-dialog {
        margin: 5% auto;
        max-width: 90%;
        width: 90%;
    }
    
    .modal-header {
        padding: 15px 15px 0 15px;
    }
    
    .modal-body {
        padding: 0 15px 15px 15px;
    }
    
    .modal-title {
        font-size: 18px;
    }
}

@media (max-width: 320px) {
    .modal-dialog {
        margin: 5% auto;
        max-width: 90%;
        width: 90%;
    }
    
    .modal-header {
        padding: 10px 10px 0 10px;
    }
    
    .modal-body {
        padding: 0 10px 10px 10px;
    }
    
    .modal-title {
        font-size: 16px;
    }
    
    .modal-body .form-control {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .modal-body .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .modal-body .form-control,
    .modal-body .form-select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 6px 8px;
        font-size: 14px;
    }
    
    .modal-body .d-flex {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-body .d-flex .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .modal-body .d-flex small {
        text-align: center;
        margin-top: 10px;
    }
}

/* Адаптивность select полей */
@media (max-width: 576px) {
    .form-select {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .hero-form-card .form-select {
        padding: 10px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .form-select {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .hero-form-card .form-select {
        padding: 8px 10px;
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .form-select {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .hero-form-card .form-select {
        padding: 6px 8px;
        font-size: 13px;
    }
}

/* Адаптивность Select2 */
@media (max-width: 576px) {
    .select2-container--default .select2-selection--single {
        height: 36px !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 34px !important;
        padding-left: 10px !important;
        padding-right: 18px !important;
        font-size: 16px !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 34px !important;
        right: 6px !important;
    }
    
    .select2-container--default .select2-results__option {
        padding: 6px 10px !important;
        font-size: 14px !important;
    }
    
    .select2-container--default .select2-search--dropdown .select2-search__field {
        padding: 4px 8px !important;
        margin: 2px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .select2-container--default .select2-selection--single {
        height: 34px !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 32px !important;
        padding-left: 8px !important;
        padding-right: 16px !important;
        font-size: 15px !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 32px !important;
        right: 5px !important;
    }
    
    .select2-container--default .select2-results__option {
        padding: 5px 8px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 320px) {
    .select2-container--default .select2-selection--single {
        height: 32px !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 30px !important;
        padding-left: 6px !important;
        padding-right: 14px !important;
        font-size: 14px !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 30px !important;
        right: 4px !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border-width: 4px 3px 0 3px !important;
    }
    
    .select2-container--default .select2-results__option {
        padding: 4px 6px !important;
        font-size: 13px !important;
    }
    
    .select2-container--default .select2-search--dropdown .select2-search__field {
        padding: 3px 6px !important;
        margin: 2px !important;
        font-size: 13px !important;
    }
}

/* Дополнительные стили для обеспечения корректной работы на всех экранах */
.modal-body .row {
    margin-left: 0;
    margin-right: 0;
}

.modal-body .row [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 576px) {
    .modal-body .row [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 15px;
    }
}

/* Обеспечиваем правильную работу Select2 в модальных окнах */
.modal .select2-container {
    width: 100% !important;
    max-width: 100% !important;
}

.modal .select2-dropdown {
    z-index: 10050 !important;
}

/* Custom Order Button Styles */
.btn-outline-success {
    border: 2px solid #28a745;
    color: #28a745;
    background-color: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.btn-outline-success:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.btn-outline-success:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}


/* Accordion list-group-item styles */
.accordion-body .list-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.accordion-body .list-group-item {
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

.accordion-body .list-group-item:hover {
    background: none !important;
}

/* Breadcrumb styles */
.breadcrumb-section {
    background-color: #e9ecef;
    padding: 20px 0 15px 0;
    margin-bottom: 40px;
}

.breadcrumb {
    margin-bottom: 0;
    background: none;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #28a745;
}

.breadcrumb-item.active {
    color: #495057;
}

/* Services and Sidebar Title Styles */
.services-title {
    margin-bottom: 16px;
}

.sidebar-title {
    margin-bottom: 16px;
}

.additional-services-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.additional-services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.additional-service-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.additional-service-item p {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

/* Additional Services Table Block Styles */
.additional-services-table-block {
    margin-top: 40px;
}

.additional-services-table-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.additional-services-table-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.services-table {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.service-table-item {
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
}


.service-table-item:not(:last-child) {
    margin-bottom: 16px;
}

.service-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 400;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.service-description {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

/* Services table right column centering */
.services-table .service-table-item .col-md-6:last-child {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Order button styles */
.btn-order-service {
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-block;
    width: auto;
}

.btn-order-service:hover {
    background-color: #218838;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.btn-view-all {
    background-color: #28a745;
    border: 1px solid #28a745;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: #218838;
    border-color: #218838;
    color: white;
    text-decoration: none;
}

/* Responsive styles for services table */
@media (max-width: 768px) {
    .service-table-item .row {
        flex-direction: column;
    }
    
    .service-table-item .col-md-6 {
        margin-bottom: 15px;
    }
    
    .service-table-item .col-md-6:last-child {
        margin-bottom: 0;
        text-align: center;
    }
    
    .btn-order-service {
        width: 100%;
        max-width: 200px;
    }
}

/* Important Notice and Consultation Block Styles */
.notice-consultation-block {
    margin-top: 40px;
}

/* Important Notice Block */
.important-notice-block {
    background-color: #f8f9fa;
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-bottom: 0;
}

.notice-icon {
    width: 60px;
    height: 60px;
    background-color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.notice-icon {
    color: white;
    font-size: 40px;
    font-weight: bold;
}

.notice-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.notice-text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.notice-text:last-child {
    margin-bottom: 0;
}

/* Consultation Form Block */
.consultation-form-block {
    background-color: #28a745;
    padding: 40px 30px;
    color: white;
}

.consultation-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-align: center;
}

.consultation-subtitle {
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    opacity: 0.9;
}

.consultation-input {
    background-color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 16px;
    color: #333;
}

.consultation-input:focus {
    background-color: white;
    border: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
    color: #333;
}

.consultation-input::placeholder {
    color: #6c757d;
}

.btn-consultation-submit {
    background-color: white;
    color: #28a745;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-consultation-submit:hover {
    background-color: #f8f9fa;
    color: #28a745;
}

.form-check-input {
    margin-right: 8px;
}

.form-check-label {
    color: white;
    font-size: 14px;
    line-height: 1.4;
}

/* Responsive styles for notice and consultation block */
@media (max-width: 768px) {
    .consultation-form-block {
        padding: 30px 20px;
    }
    
    .consultation-title {
        font-size: 24px;
    }
    
    .consultation-subtitle {
        font-size: 16px;
    }
    
    .consultation-form .row .col-md-4 {
        margin-bottom: 15px;
    }
    
    .important-notice-block {
        padding: 20px;
    }
    
    .notice-title {
        font-size: 20px;
    }
    
    .notice-text {
        font-size: 14px;
    }
}

/* Guarantees Block Styles */
.guarantees-block {
    margin-top: 40px;
}

.guarantees-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.guarantee-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.guarantee-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.guarantee-card h3 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.guarantee-card p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive styles for guarantees block */
@media (max-width: 768px) {
    .guarantees-title {
        font-size: 24px;
    }
    
    .guarantee-card {
        padding: 20px 15px;
    }
    
    .guarantee-card h3 {
        font-size: 15px;
    }
    
    .guarantee-card p {
        font-size: 13px;
    }
}

/* How to Get License Block Styles */
.how-to-get-license-section {
    background-color: #2D3740;
    padding: 60px 0;
    margin-top: 40px;
}

.how-to-get-license-title {
    font-size: 32px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.step-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px 20px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #28a745;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.step-content {
    margin-top: 20px;
}

.step-content p {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
}

.btn-step-call {
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-step-call:hover {
    background-color: #218838;
    color: white;
    text-decoration: none;
}

.step-checkmark {
    width: 50px;
    height: 50px;
    background-color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.step-checkmark i {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive styles for how to get license block */
@media (max-width: 768px) {
    .how-to-get-license-section {
        padding: 40px 0;
    }
    
    .how-to-get-license-title {
        font-size: 24px;
    }
    
    .step-card {
        padding: 25px 15px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-checkmark {
        width: 40px;
        height: 40px;
    }
    
    .step-checkmark i {
        font-size: 16px;
    }
}

/* Useful Materials Block Styles */
.useful-materials-block {
    margin-top: 40px;
    padding: 40px 0;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.useful-materials-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.useful-materials-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.useful-material-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.material-icon {
    width: 24px;
    height: 24px;
    background-color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.material-icon i {
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.material-link {
    color: #28a745;
    text-decoration: underline;
    font-size: 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.material-link:hover {
    color: #218838;
    text-decoration: underline;
}

/* Responsive styles for useful materials block */
@media (max-width: 768px) {
    .useful-materials-block {
        padding: 30px 20px;
    }
    
    .useful-materials-title {
        font-size: 24px;
    }
    
    .material-link {
        font-size: 14px;
    }
    
    .useful-materials-list {
        gap: 15px;
    }
}

/* Help with Licenses Block Styles */
.help-licenses-block {
    margin-top: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.help-licenses-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.help-licenses-description {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.help-licenses-actions {
    margin-bottom: 0;
}

.btn-expand {
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-expand:hover {
    background-color: #218838;
    color: white;
}

.btn-expand:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.expanded-content {
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.expanded-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.expanded-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.expanded-content li {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Responsive styles for help licenses block */
@media (max-width: 768px) {
    .help-licenses-block {
        padding: 30px 20px;
    }
    
    .help-licenses-title {
        font-size: 24px;
    }
    
    .help-licenses-description {
        font-size: 14px;
    }
    
    .expanded-content p,
    .expanded-content li {
        font-size: 14px;
    }
}



/* Help with Licenses Block Styles - Additional Subtitle */
.help-licenses-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Responsive styles for help licenses subtitle */
@media (max-width: 768px) {
    .help-licenses-subtitle {
        font-size: 18px;
    }
}

/* License Block Styles */
.license-block {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.license-block .license-info-section {
    height: 100%;
}

.license-info-section {
    background-image: url('../img/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 30px;
    color: white;
    position: relative;
}

.license-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.license-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.4;
}

.license-price-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.license-price {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.btn-calculate-cost {
    background-color: white;
    color: #28a745;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-calculate-cost:hover {
    background-color: #f8f9fa;
    color: #28a745;
    transform: translateY(-2px);
}

.license-description {
    position: relative;
    border-left: 2px solid #FFF;
    padding-left: 20px;
}

.license-description p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.license-details-section {
    padding: 40px 30px;
    background-color: white;
}

.details-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.details-list {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.detail-label {
    font-weight: 600;
    color: #333;
    width: 200px;
    min-width: 200px;
    margin-right: 20px;
    font-size: 14px;
    flex-shrink: 0;
}

.detail-value {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
}

.service-categories {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.categories-label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.category-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.category-tag {
    background-color: #e9ecef;
    color: #666;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.additional-services-link {
    color: #28a745;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.additional-services-link:hover {
    color: #218838;
    text-decoration: underline;
}

.free-services-block {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.free-services-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.free-services-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.promotion-block {
    height: 100%;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.promotion-badge {
    background-color: #28a745;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: -10px;
    left: 20px;
}

.promotion-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    margin-top: 10px;
}

/* Responsive styles for license block */
@media (max-width: 768px) {
    .license-block {
        margin-bottom: 20px;
    }
    
    .license-info-section {
        padding: 30px 20px;
    }
    
    .license-title {
        font-size: 24px;
    }
    
    .license-subtitle {
        font-size: 16px;
    }
    
    .license-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .license-price {
        font-size: 24px;
    }
    
    .license-details-section {
        padding: 30px 20px;
    }
    
    .details-title {
        font-size: 18px;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .detail-label {
        width: auto;
        min-width: auto;
        margin-right: 0;
    }
    
    .category-tags {
        flex-wrap: wrap;
    }
    
    .free-services-block,
    .promotion-block {
        padding: 20px;
        margin-bottom: 20px;
    }
}

/* Services Tabs Styles */
.services-tabs {
    border-bottom: none;
    margin-bottom: 30px;
    padding: 0;
}

.services-tabs .nav-item {
    margin-bottom: 0;
}

.services-tabs .nav-link {
    border: 1px solid #e9ecef;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    background-color: white;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.services-tabs .nav-link:hover {
    background-color: #f8f9fa;
    color: #333;
    border-color: #e9ecef;
}

.services-tabs .nav-link.active {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

.services-tabs .nav-link.active:hover {
    background-color: #28a745;
    color: white;
}

.services-content .tab-content {
    padding: 0;
    background-color: transparent;
}

.services-content .tab-content-wrapper {
    min-height: 400px;
}

.services-content .tab-content-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.services-content .tab-content-wrapper p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.services-content .tab-content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.services-content .tab-content-wrapper li {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Responsive styles for services tabs */
@media (max-width: 768px) {
    .services-tabs .nav-link {
        font-size: 12px;
        padding: 10px 15px;
        margin-right: 3px;
    }
    
    .services-content .tab-content-title {
        font-size: 20px;
    }
    
    .services-content .tab-content-wrapper p,
    .services-content .tab-content-wrapper li {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .services-tabs {
        flex-wrap: wrap;
    }
    
    .services-tabs .nav-link {
        font-size: 11px;
        padding: 8px 12px;
        margin-bottom: 5px;
    }
}

/* State Duties Block Styles */
.state-duties-block {
    margin-top: 40px;
}

.state-duties-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.state-duty-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background-color: white;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.duty-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.duty-amount {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

/* Responsive styles for state duties block */
@media (max-width: 768px) {
    .state-duties-title {
        font-size: 24px;
    }
    
    .state-duty-item {
        padding: 20px 15px;
    }
    
    .duty-description {
        font-size: 13px;
    }
    
    .duty-amount {
        font-size: 20px;
    }
}

/* Legal Basis Block Styles */
.legal-basis-block {
    margin-top: 40px;
}

.legal-basis-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.legal-basis-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-basis-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-basis-content li {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Regulatory Documents Block Styles */
.regulatory-documents-block {
    margin-top: 40px;
}

.regulatory-documents-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.document-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.document-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.document-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-download {
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-download:hover {
    background-color: #218838;
    color: white;
    text-decoration: none;
}

/* Responsive styles for legal basis and regulatory documents */
@media (max-width: 768px) {
    .legal-basis-title,
    .regulatory-documents-title {
        font-size: 24px;
    }
    
    .legal-basis-content p,
    .legal-basis-content li {
        font-size: 14px;
    }
    
    .document-card {
        padding: 20px 15px;
    }
    
    .document-title {
        font-size: 16px;
    }
    
    .document-description {
        font-size: 13px;
    }
}

/* Download link styles */
.download-link {
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.download-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.file-info {
    color: #6c757d;
    font-size: 14px;
    margin-left: 10px;
}


/* Contacts Hero Section Styles */
.contacts-hero-section {
    background-image: url('../img/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.contacts-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contacts-hero-content {
    position: relative;
    z-index: 2;
}

.contacts-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contacts-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.5;
}

.contacts-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: #25d366;
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-telegram {
    background-color: #0088cc;
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-telegram:hover {
    background-color: #006699;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

.contacts-hero-form {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.contacts-form-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
    text-align: center;
}

.contacts-form .form-control {
    background-color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    margin-bottom: 15px;
}

.contacts-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    border-color: transparent;
}

.contacts-form .form-check-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.contacts-form .form-check-input {
    margin-top: 0.25rem;
}

.contacts-form .text-decoration-underline {
    color: white;
    text-decoration: underline !important;
}

.contacts-form .text-decoration-underline:hover {
    color: rgba(255, 255, 255, 0.8);
}

.btn-contacts-submit {
    background-color: white;
    border: 2px solid #28a745;
    color: #28a745;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-contacts-submit:hover {
    background-color: #28a745;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

/* Responsive styles for contacts hero */
@media (max-width: 768px) {
    .contacts-hero-section {
        padding: 40px 0;
    }
    
    .contacts-hero-title {
        font-size: 36px;
    }
    
    .contacts-hero-description {
        font-size: 16px;
    }
    
    .contacts-hero-buttons {
        flex-direction: column;
    }
    
    .contacts-hero-form {
        padding: 20px;
    }
    
    .contacts-form-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .contacts-hero-title {
        font-size: 28px;
    }
    
    .contacts-hero-description {
        font-size: 14px;
    }
}

/* Contact Information Section Styles */
.contact-info-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-info-card {
    background-color: #ffffff;
    border: 1px solid #28a745;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-map {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-content {
    flex: 1;
}

.contact-info-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

/* Responsive styles for contact info */
@media (max-width: 768px) {
    .contact-info-section {
        padding: 40px 0;
    }
    
    .contact-info-card {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .contact-info-item {
        gap: 12px;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-info-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .contact-info-text {
        font-size: 14px;
    }
    
    .contact-map {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .contact-info-section {
        padding: 30px 0;
    }
    
    .contact-info-card {
        padding: 12px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-info-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-info-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .contact-info-text {
        font-size: 13px;
    }
    
    .contact-map {
        height: 200px;
    }
}

/* License Info Section Styles */
.license-info-section {
    background-image: url('../img/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 40px;
    color: white;
    margin-bottom: 40px;
    position: relative;
}

.license-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    z-index: 1;
}

.license-info-section > * {
    position: relative;
    z-index: 2;
}

.license-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    line-height: 1.3;
}

.license-definition {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.definition-bullet {
    width: 4px;
    height: 60px;
    background-color: white;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 5px;
}

.license-definition p {
    font-size: 18px;
    font-weight: 500;
    color: white;
    line-height: 1.5;
    margin: 0;
}

.license-benefits {
    margin-top: 20px;
}

.license-benefits p {
    font-size: 16px;
    color: white;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive styles for license info section */
@media (max-width: 768px) {
    .license-info-section {
        padding: 30px 20px;
    }
    
    .license-title {
        font-size: 24px;
    }
    
    .license-definition {
        flex-direction: column;
        gap: 10px;
    }
    
    .definition-bullet {
        width: 100%;
        height: 4px;
        margin-top: 0;
    }
    
    .license-definition p {
        font-size: 16px;
    }
    
    .license-benefits p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .license-info-section {
        padding: 20px 15px;
    }
    
    .license-title {
        font-size: 20px;
    }
    
    .license-definition p {
        font-size: 14px;
    }
    
    .license-benefits p {
        font-size: 13px;
    }
}

/* License Info Section Styles */
.license-info-section {
    background-image: url('../img/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 40px;
    color: white;
    margin-bottom: 40px;
    position: relative;
}

.license-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    z-index: 1;
}

.license-info-section > * {
    position: relative;
    z-index: 2;
}

.license-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    line-height: 1.3;
}

.license-definition {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.definition-bullet {
    width: 4px;
    height: 60px;
    background-color: white;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 5px;
}

.license-definition p {
    font-size: 18px;
    font-weight: 500;
    color: white;
    line-height: 1.5;
    margin: 0;
}

.license-benefits {
    margin-top: 20px;
}

.license-benefits p {
    font-size: 16px;
    color: white;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive styles for license info section */
@media (max-width: 768px) {
    .license-info-section {
        padding: 30px 20px;
    }
    
    .license-title {
        font-size: 24px;
    }
    
    .license-definition {
        flex-direction: column;
        gap: 10px;
    }
    
    .definition-bullet {
        width: 100%;
        height: 4px;
        margin-top: 0;
    }
    
    .license-definition p {
        font-size: 16px;
    }
    
    .license-benefits p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .license-info-section {
        padding: 20px 15px;
    }
    
    .license-title {
        font-size: 20px;
    }
    
    .license-definition p {
        font-size: 14px;
    }
    
    .license-benefits p {
        font-size: 13px;
    }
}
