/* --- Layout --- */
.dp-help-section {
    padding: 160px 20px 80px; /* Большой отступ сверху из-за фикс. хедера */
    background-color: #f9f9f9;
    min-height: 80vh;
}

.dp-help-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Hero Area --- */
.dp-help-hero {
    text-align: center;
    margin-bottom: 60px;
}

.dp-help-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'PP Fraktion Sans', sans-serif;
}

.dp-help-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* --- Search Bar --- */
.dp-help-search {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.dp-help-search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    background-color: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.dp-help-search-input:focus {
    border-color: #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.dp-help-search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

.dp-help-search-btn svg {
    width: 20px;
    height: 20px;
}

/* --- Help Grid (Categories) --- */
.dp-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.dp-help-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: #000;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.dp-help-card:hover {
    border-color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.dp-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    color: #333;
}

.dp-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.dp-card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* --- Contact Section --- */
.dp-contact-section {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.dp-contact-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.dp-contact-text {
    margin-bottom: 20px;
    color: #666;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .dp-help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dp-help-section {
        padding-top: 130px;
    }
    
    .dp-help-grid {
        grid-template-columns: 1fr;
    }

    .dp-help-title {
        font-size: 2.2rem;
    }
}