
.tabs-container {

    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.tab-buttons {
    display: flex;
    background: #f5f5f5;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    margin-bottom: 0;
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #666;
}

.tab-btn.active {
    background: #428bca;
    color: white;
}

.tab-btn:hover {
    background: grey;
}

.tab-btn.active:hover {
    background: grey;
}

.tab-content {
    display: none;
    padding: 30px;
    background: white;
    height: 530px;
    border: 1px solid #dee2e6;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tab-content.active {
    display: block;
}

.contact-section {
    margin-bottom: 20px;
}

.contact-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.address {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

.work-time {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #007bff;
}

.phones {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    text-decoration: underline;
}

.telegram-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #0088cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.telegram-link:hover {
    background: #006ba0;
}