/* Основные стили */
.nh-wrapper {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.nh-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Секция героя */
.nh-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1920x600?text=Новостройки+Тулы');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
}

.nh-hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.nh-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Заголовки секций */
.nh-section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
    position: relative;
}

.nh-section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ff6b00;
    margin: 15px auto;
}

/* Секция преимуществ */
.nh-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.nh-advantage-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.nh-advantage-card:hover {
    transform: translateY(-10px);
}

.nh-advantage-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.nh-advantage-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.nh-advantage-text {
    color: #666;
}

/* Секция условий */
.nh-conditions-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.nh-conditions-list {
    flex: 1;
    min-width: 300px;
}

.nh-conditions-image {
    flex: 1;
    min-width: 300px;
}

.nh-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nh-condition-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nh-condition-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.nh-condition-icon {
    font-size: 28px;
    margin-right: 20px;
    min-width: 40px;
    text-align: center;
    color: #ff6b00;
}

.nh-condition-title {
    font-size: 1.2rem;
    margin: 0 0 8px 0;
    color: #2c3e50;
}

.nh-condition-desc {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Секция банков */
.nh-banks-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.nh-bank-logo {
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nh-bank-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.nh-banks-note {
    text-align: center;
    font-style: italic;
    color: #666;
}

/* Адаптивность */
@media (max-width: 768px) {
    .nh-hero-title {
        font-size: 2rem;
    }

    .nh-hero-subtitle {
        font-size: 1.2rem;
    }

    .nh-section-title {
        font-size: 1.8rem;
    }

    .nh-conditions-content {
        flex-direction: column;
    }

    .nh-condition-item {
        flex-direction: column;
        padding: 15px;
    }

    .nh-condition-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .nh-hero {
        padding: 60px 0;
    }

    .nh-hero-title {
        font-size: 1.8rem;
    }

    .nh-section-title {
        font-size: 1.5rem;
    }
}