.contact-container {
    width: 100%;
    height: auto;
    background-color: #ffffff;
}

.contact-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 50px 0;
    /*border: 1px solid #f1132d;*/
}

.contact-header-container {
    width: 100%;
    padding: 20px 0;
    /*border-bottom: 1px solid #e9ecef;*/
    /*margin-bottom: 30px;*/
}

.contact-body-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}



.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.page-title {
    font-size: 24px;
    color: #4a78f4;
    font-weight: bold;
    /*margin: 0;*/
    /*margin-left: 30px;*/
}

.breadcrumb {
    color: #6c757d;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;

}

.breadcrumb a:hover {
    text-decoration: underline;
}
/**/

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px 15px;
}

.contact-item {
    flex: 1;
    min-width: 200px;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-item .icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 10px;
}

.contact-item .label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.contact-item .value {
    font-size: 16px;
    color: #666;
}

.map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
