Загрузка данных


body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

:root {
    --gold: #c59d3f;
    --dark: #222;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-weight: bold;
    font-size: 24px;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    border-top: 1px solid #eee;
    padding: 15px 0;
}

.nav li a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-size: 13px;
    font-weight: 600;
}

.nav li a.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://addrecovery.ru/gorno-obogatitelnoe-oborudovanie/');
    background-size: cover;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 50px;
}

.services-cards {
    display: flex;
    gap: 20px;
    margin-top: -50px;
}

.card {
    background: white;
    color: #333;
    padding: 20px;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-title {
    background: var(--gold);
    color: white;
    padding: 10px;
    font-size: 12px;
    font-weight: bold;
    margin: -20px -20px 20px -20px;
}

.btn-gold {
    background: var(--gold);
    color: white;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-weight: bold;
    margin: 30px 0;
}

.btn-gold-sm {
    background: var(--gold);
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 11px;
}

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

.obj-item {
    display: flex;
    background: #f9f9f9;
}

.obj-info {
    padding: 20px;
    flex: 1;
}

.obj-img {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.consultation {
    background: #222;
    color: white;
    padding: 40px 0;
    margin-top: 50px;
}

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

.objects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background-color: #eee;
    margin-bottom: 50px;
}

.obj-item {
    display: flex;
    background: #f4f4f4;
    min-height: 200px;
}

.obj-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.obj-info h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: bold;
}

.obj-info p {
    font-size: 11px;
    line-height: 1.4;
    color: #666;
}

.obj-img {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.btn-gold-sm {
    background: #c59d3f;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 10px;
    width: fit-content;
    cursor: pointer;
}

.news-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.news-item {
    display: flex;
    gap: 15px;
    flex: 1;
}

.news-content a {
    display: block;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    margin-bottom: 5px;
}

.news-content span {
    font-size: 10px;
    color: #999;
}


.consult-banner {
    background: url('https://via.placeholder.com/1920x200?text=Industrial+Blur') center/cover;
    padding: 40px 0;
    color: white;
    position: relative;
}

.consult-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
}

.consult-flex {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.consult-text h3 { margin: 0 0 10px 0; font-size: 20px; }
.consult-text p { font-size: 13px; max-width: 600px; opacity: 0.8; }

.btn-ask {
    background: #c59d3f;
    border: none;
    padding: 15px 40px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.footer-main {
    padding: 40px 0;
    text-align: center;
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo { font-weight: bold; font-size: 18px; }

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 20px;
}

.footer-nav a {
    text-decoration: none;
    color: #666;
    font-size: 11px;
    font-weight: 600;
}

.copyright {
    font-size: 12px;
    color: #aaa;
}