:root {
    --primary-color: #1B3B8C;
    --text-color: #333;
    --white: #fff;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    margin: 0 10px;
    padding: 0 15px;
}


/* Header styles */
.header {
    padding-top: 20px;
    padding-bottom: 10px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.logo-partners a{
    display: flex;
}

.nav{
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.slider__more {
    display: inline-block;
    padding: 14px 30px;
    background-color: #1b3b8c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3scubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    border: none;
    position: relative;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.slider__more:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
}

.slider__more:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    margin-top: 4px;
}

.line {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger_menu{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger_menu.show{
    position: fixed;
    display: flex;
    top: 110px;
    right: 0px;
    padding: 10px 100px 10px 100px;
    flex-direction: row;
    gap: 30px;
    background-color: white;
    width: 100%;
    height: 100px;
    align-items: center;
}

.hamburger_menu.show span{
    color: #1b3b8c;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    display: block;
    text-align: left;
    cursor: pointer;
    transition: all 0.3sease;

}

.hamburger_menu.show span:hover {
    color: #0056b3;
    transform: translateY(-2px);
}

.hamburger_menu.show span i {
    width: 20px;
    text-align: center;
    margin-right: 20px;
}

.nav-menu {
    position: absolute;
    top: -100%;
    right: 0;
    background-color: white;
    width: 250px;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.nav-menu.active {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.nav-menu li {
    width: 100%;
}

.nav-menu li a {
    display: block;
    padding: 12px 20px;
    color: #1b3b8c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
    text-align: left;
}

.nav-menu li a:hover {
    background-color: rgba(27, 59, 140, 0.08);
}

.nav-menu li a.active {
    background-color: rgba(27, 59, 140, 0.1);
    font-weight: 600;
}


.nav {
    position: relative;
}

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

.logo-partners {
    display: flex;
    align-items: center;
    gap: 15px;
}

.divider {
    color: #ddd;
    font-size: 24px;
    font-weight: 300;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 0.8;
}

.partner-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.partner-logo span {
    max-width: 150px;
    line-height: 1.2;
}

.complaintForm{
    margin-top: 70px;
}


@media screen and (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .logo__text {
        font-size: 16px;
    }

    .nav-menu {
        padding: 20px 0;
    }

    .nav-menu li a {
        padding: 15px 20px;
        display: block;
        width: 100%;
        text-align: center;
    }
}

.lang-switcher {
    position: relative;
    margin-left: 20px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid #1b3b8c;
    border-radius: 6px;
    color: #1b3b8c;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(27, 59, 140, 0.08);
}

.lang-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.lang-btn.active i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: white;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: #1b3b8c;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.lang-dropdown a:hover {
    background-color: rgba(27, 59, 140, 0.08);
}

.lang-dropdown a.active {
    background-color: rgba(27, 59, 140, 0.1);
    font-weight: 500;
}

.mobile-logo_partners{
    display: none;
    align-items: center;
    gap: 15px;
}

@media screen and (max-width: 768px) {
    .lang-switcher {
        margin-left: auto;
        margin-right: 15px;
    }
}

@media screen and (max-width: 768px) {
    .hamburger_menu.show {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        background-color: white;
        width: 100%;
        height: auto;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .hamburger_menu.show span {
        font-size: 20px;
        text-align: center;
        border-bottom: 1px solid rgba(27, 59, 140, 0.1);
    }

    .hamburger_menu.show span:last-child {
        border-bottom: none;
    }

    .hamburger_menu.show span i {
        font-size: 18px;
        margin-right: 20px;
    }
    
    .mobile-logo_partners{
        display: flex;
    }
    
    .partner-logo{
        display: flex;
        flex-direction: column;
        gap: 0;
        text-align: center;
    }
}


.nav-right{
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    text-decoration: none;
}

.logo__text {
    display: inline-block;
    color: #1b3b8c;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid #0066cc;
    transition: all 0.3sease;

}

.logo__text:hover {
    color: #0066cc;
}

.logo__text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15px;
    width: 0;
    height: 2px;
    background-color: #0066cc;
    transition: width 0.3s ease;
}

.logo__text:hover::after {
    width: calc(100% - 15px);
}

@media (max-width: 768px) {
    .logo__text {
        font-size: 16px;
        padding-left: 12px;
        border-left-width: 3px;
    }
}

@media (max-width: 480px) {
    .logo__text {
        font-size: 14px;
        padding-left: 10px;
        border-left-width: 2px;
    }
}

/* Header Stats */
.header-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
}

/* Complaint Button */
.complaint-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.complaint-btn:hover {
    background: #162c69;
    transform: translateY(-2px);
}

.complaint-btn i {
    font-size: 18px;
}

/* News Section */
.news-section {
    padding: 10px 0;
    background: #fff;
    margin-top: 170px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 0;
}
.resource-card a{
    text-align: center;
    text-decoration: none;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #162c69;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    height: 200px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(27, 59, 140, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.news-content {
    padding: 24px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 12px;
    color: #666;
}

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

.news-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #162c69;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.investigation .news-tag {
    background: rgb(44 73 146);
}

@media (max-width: 1200px) {
    .header-stats {
        display: none;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header__inner {
        text-align: center;
        gap: 20px;
    }

    .logo {
        display: flex;
        justify-content: center;
    }

    .complaint-btn {
        width: 100%;
        justify-content: center;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-image {
        height: 160px;
    }
}

/* Hero Slider styles */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.slider__container {
    height: 100%;
}

.slider__item {
    position: relative;
    height: 100%;
    display: none;
}

.slider__item.active {
    display: block;
}

.slider__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    background-size: cover;
    background-position: center;
}

.slider__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.slider__content {
    position: relative;
    padding-top: 150px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slider__title {
    font-size: 40px;
    max-width: 800px;
    padding-bottom: 10px;
}



.slider__subtitle{
    padding-bottom: 10px;
    font-size: 20px;
}

.slider__controls {
    position: absolute;
    bottom: 40px;
    width: 100%;
}

.slider__arrows {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider__arrow {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.slider__counter {
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main{
   margin-top: 120px;

}

/* Complaint Section Styles */
.complaint-section {
    padding: 10px 0;
    background-color: #f8f9fa;
}

.complaint-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-direction: column;
    justify-content: center;
}

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

.complaint-form {
    position: relative;
}

.complaint-form .section-title {
    color: #1b3b8c;
    font-size: 24px;
    margin-bottom: 20px;
}

.complaint-form .section-subtitle {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #495057;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    color: #495057;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1b3b8c;
    outline: none;
    box-shadow: 0 0 0 4px rgba(27, 59, 140, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
    min-height: 120px;
    max-height: 300px;
}

.submit-btn {
    background-color: #1b3b8c;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #152d6a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 59, 140, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

.guarantee-block {
    display: flex;
    background: linear-gradient(135deg, #1b3b8c 0%, #2850b8 100%);
    color: #fff;
    height: 1000px;
}

.guarantee-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.guarantee-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.guarantee-block h3 {
    font-size: 20px;
    margin: 0;
}

.guarantee-block p {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.guarantee-block textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-bottom: 20px;
    height: 200px;
    resize: none;
    margin-top: 50px;
    font-size: 17px;
}

.guarantee-block textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.info-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.info-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .complaint-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 20px;
    }
}

/* Statistics Section Styles */
.statistics-section {
    padding: 60px 0;
    background-color: #fff;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.stat-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    min-height: 200px;
    position: relative;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    position: relative;
}

.stat-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(0, 156, 234, 0.1) 0%, rgba(0, 156, 234, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.stat-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-top: auto;
}

.stat-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
}

.stat-arrow {
    color: var(--primary-color);
    font-size: 24px;
    opacity: 0.5;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.stat-card:hover .stat-arrow {
    opacity: 1;
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        padding: 30px;
        min-height: 180px;
    }
}

@media (max-width: 576px) {
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 25px;
        min-height: 160px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

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

@media (max-width: 1024px) {
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .stat-title {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .logo__text {
        font-size: 12px;
    }

    .slider__title {
        font-size: 32px;
    }

    .online-appeal-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .header__right {
        gap: 10px;
    }

    .slider__title {
        font-size: 24px;
    }

    .slider__more {
        padding-top: 10px;
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
        border-radius: 0;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .complaint-grid {
        grid-template-columns: 1fr;
    }

    .complaint-form,
    .guarantee-block {
        grid-column: auto;
        height: 100%;
    }

    .news-grid {
        display: flex;
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    .logo-partners{
        display: none;
    }
    .container{
        margin: 10px;
        padding: 0;
    }
}

/* Monitoring Section */
.monitoring-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Tracking Block */
.tracking-block {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.tracking-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.tracking-input-group {
    display: flex;
    gap: 20px;
}

.tracking-input-group input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tracking-input-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 59, 140, 0.1);
}

.track-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track-btn:hover {
    background: #162c69;
    transform: translateY(-2px);
}

/* Filters Block */
.filters-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-group select:focus,
.filter-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 59, 140, 0.1);
}

.date-range {
    display: flex;
    gap: 10px;
}

.apply-filters {
    padding: 12px 24px;
    background: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.apply-filters:hover {
    background: rgba(27, 59, 140, 0.05);
}

/* Complaints List */
.complaints-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.complaint-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.complaint-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.complaint-id {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.complaint-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.complaint-status.resolved {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.complaint-status.in-progress {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.complaint-status.pending {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.complaint-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.info-item i {
    color: var(--primary-color);
}

.complaint-text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.complaint-resolution {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.complaint-resolution h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.complaint-resolution p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.page-dots {
    color: #666;
}

@media (max-width: 768px) {
    .tracking-input-group {
        flex-direction: column;
    }

    .filter-group {
        min-width: 100%;
    }

    .date-range {
        flex-direction: column;
    }

    .complaint-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .complaint-info {
        flex-direction: column;
        gap: 10px;
    }
}

/* Footer styles */
.footer {
    background: #091123;
    padding: 60px 0 30px;
    margin-top: 80px;
    color: #fff;
}

.footer__inner {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: space-around;
}

.footer__col {
    display: flex;
    flex-direction: column;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__logo-text {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.footer__description {
    color: #a9b3c7;
    font-size: 14px;
    line-height: 1.6;
}

.footer__title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer__list {
    display: grid;
    list-style: none;
    padding: 0;
}

.footer__list li {
    margin-bottom: 12px;
    color: #a9b3c7;
}

.footer__list li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 16px;
}

.footer__list a {
    color: #a9b3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__list a:hover {
    color: #fff;
}

.footer__social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__copyright {
    color: #a9b3c7;
    font-size: 14px;
}

/* Responsive footer */
@media (max-width: 900px) {
    .footer__inner {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .footer__col {
        width: 100%;
        text-align: center;
    }

    .footer__logo {
        justify-content: center;
    }

    .footer__list {
        align-items: center;
    }

    .footer__description {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 406px) {
    .footer__inner {
        grid-template-columns: 1fr;
    }
    
    .footer__col {
        text-align: center;
    }
    
    .footer__social {
        justify-content: center;
    }
}

/* Legal Support Section */
.legal-support {
    padding: 80px 0;
    background: #f8f9fa;
}

.legal-support__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.legal-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-5px);
}

.legal-card__icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.legal-card__icon i {
    font-size: 24px;
    color: #fff;
}

.legal-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.legal-card__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.legal-card__list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #666;
}

.legal-card__list li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
}

.legal-card__more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.legal-card__more:hover {
    color: #162c69;
}

.legal-contacts {
    margin-bottom: 20px;
}

.legal-contact__item {
    margin-bottom: 20px;
}

.legal-contact__item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.legal-contact__item p {
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-contact__item i {
    color: var(--primary-color);
    width: 16px;
}

/* Responsive styles for legal support */
@media (max-width: 992px) {
    .legal-support__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .legal-support__grid {
        grid-template-columns: 1fr;
    }
    
    .legal-card {
        padding: 20px;
    }
}

/* Additional Information */
.additional-info {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.info-card-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-row i {
    color: #6c757d;
    font-size: 16px;
}

.views, .interactions {
    font-size: 16px;
    color: #495057;
    font-weight: 500;
}

.date {
    display: block;
    color: #6c757d;
    font-size: 14px;
    margin-top: 15px;
}

.view-all-link {
    text-align: right;
    margin-top: 30px;
}

.btn-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #004999;
}

.btn-link i {
    font-size: 14px;
}

/* Useful Resources Section */
.useful-resources {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.useful-resources .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.useful-resources .section-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.useful-resources .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.resources-grid {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    justify-content: center;
    align-items: stretch;
}

.resource-card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(27, 59, 140, 0.1);
    transition: all 0.4s ease;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    width: 45%;
    position: relative;
    border: 1px solid rgba(27, 59, 140, 0.1);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 59, 140, 0.15);
    border-color: rgba(27, 59, 140, 0.2);
}

.resource-card img {
    width: 180px;
    height: auto;
    object-fit: contain;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.resource-card:hover img {
    transform: scale(1.05);
}

.resource-card h3 {
    padding: 0 15px;
    color: var(--primary-color);
    font-size: 20px;
    margin: 0;
    text-align: center;
    font-weight: 600;
    line-height: 1.4;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #4169E1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resource-card:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .resources-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .resource-card {
        width: 100%;
        padding: 25px;
    }
    
    .resource-card img {
        width: 150px;
        margin-bottom: 20px;
    }
    
    .resource-card h3 {
        font-size: 18px;
    }
    
    .useful-resources {
        padding: 60px 0;
    }
    
    .useful-resources .section-title {
        font-size: 28px;
    }
}

/* Hotline Contacts */
.hotline-contacts {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hotline-grid {
    display: grid;
    align-items: center;
}

.section-description {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    width: 48px;
    height: 48px;
    background: #e7f5ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 24px;
    color: #0066cc;
}

.card-content h3 {
    font-size: 18px;
    color: #343a40;
    margin-bottom: 8px;
}

.phone-number,
.email {
    font-size: 20px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.phone-number:hover,
.email:hover {
    color: #004999;
}

.work-time,
.response-time {
    font-size: 14px;
    color: #6c757d;
    display: block;
}

.hotline-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
}

.stat-box {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    display: block;
    margin-bottom: 12px;
}

.stat-number small {
    font-size: 16px;
    margin-left: 4px;
}

.stat-label {
    font-size: 14px;
    color: #495057;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .hotline-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hotline-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .hotline-stats {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 20px;
    }
}

.news-container {
    display: flex;
    margin-top: 150px;
    flex-direction: column;
    gap: 20px;
}

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

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}


.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question i {
    font-size: 16px;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: #f8f9fa;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
}

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

.faq-answer p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 16px;
}

.faq-answer ul {
    list-style-type: none;
    padding-left: 0;
}

.faq-answer li {
    color: #495057;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.5;
}

.faq-answer li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #0066cc;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
        padding: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    margin-left: 20px;
}

.lang-link {
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.lang-link:hover {
    background: #e9ecef;
}

.lang-link.active {
    background: #0066cc;
    color: #fff;
}

.lang-link.active:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-left: 12px;
    }

    .lang-link {
        padding: 6px 10px;
        font-size: 14px;
    }
}

.insurance-section {
    padding-top: 200px;
    background: #f8f9fa;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.insurance-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.insurance-card:hover {
    transform: translateY(-5px);
}

.insurance-icon {
    width: 60px;
    height: 60px;
    background: #1b3b8c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.insurance-icon i {
    color: #fff;
    font-size: 24px;
}

.insurance-title {
    color: #1b3b8c;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.insurance-text {
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.insurance-link {
    color: #1b3b8c;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.insurance-link:hover {
    color: #0056b3;
}

.insurance-link i {
    margin-left: 8px;
}

.info-block {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-block h3 {
    color: #1b3b8c;
    font-size: 24px;
    margin-bottom: 20px;
}

.info-block p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-number {
    background: #1b3b8c;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: #1b3b8c;
    margin-bottom: 10px;
}

.contact-info {
    background: #1b3b8c;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.contact-info h3 {
    color: #fff;
    margin-bottom: 20px;
}

.contact-info p {
    color: #fff;
    margin-bottom: 10px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.contact-info i {
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .insurance-section {
        padding-top: 170px;
    }

    .insurance-grid {
        grid-template-columns: 1fr;
    }

    .info-block {
        padding: 20px;
    }
}

/* Стили для блока документов */
.documents-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.documents-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.document-item {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.document-item a {
    display: flex;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.document-icon {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.document-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.document-content {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}

.document-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.document-title {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.document-date {
    font-size: 14px;
    color: #888;
    display: block;
    margin-top: 5px;
}

.view-all-documents {
    display: inline-block;
    padding: 10px 25px;
    background-color: #1b3b8c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    border: none;
    margin-top: 20px;
}

.view-all-documents:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .document-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .document-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
