.industries-header {
    margin-top: 10px;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #ffffff, var(--pink-light));
    position: relative;
    overflow: hidden;
}

.industries-header .header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.industries-header .header-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--crimson);
    margin-bottom: 15px;
    position: relative;
    padding: 0 15px;
}

.industries-header .header-subtitle::before,
.industries-header .header-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--crimson);
    opacity: 0.3;
}

.industries-header .header-subtitle::before {
    left: -30px;
}

.industries-header .header-subtitle::after {
    right: -30px;
}

.industries-header .header-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-main);
}

.industries-header .header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.industries-header .header-divider span {
    height: 2px;
    background: var(--crimson);
}

.industries-header .header-divider span:nth-child(1),
.industries-header .header-divider span:nth-child(3) {
    width: 60px;
    opacity: 0.2;
}

.industries-header .header-divider span:nth-child(2) {
    width: 30px;
    opacity: 0.5;
}

.industries-header .header-description {
    font-size: 1.1rem;
    color: var(--dark-soft);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Industries Section */
.industries-section {
    padding: 60px 0 80px;
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Industry Card */
.industry-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(223, 34, 41, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(223, 34, 41, 0.1);
    border-color: var(--crimson);
}

.industry-image {
    height: 220px;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.05);
}

.industry-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.industry-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--crimson);
    margin-bottom: 10px;
}

.industry-content p {
    color: var(--dark-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.industry-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.industry-link:hover {
    color: var(--crimson);
    gap: 12px;
}

.industry-link:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .industries-header {
        padding: 60px 0 40px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    
    .industry-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .industries-header {
        margin-top: 65px;
    }
    
    .industries-header .header-subtitle::before,
    .industries-header .header-subtitle::after {
        display: none;
    }
    
    .industries-header .header-title {
        font-size: 2rem;
    }
    
    .industry-content {
        padding: 20px;
    }
    
    .industry-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .industries-section {
        padding: 44px 0 64px;
    }

    .industries-grid {
        max-width: 100%;
        gap: 18px;
    }

    .industry-card {
        border-radius: 18px;
    }

    .industry-image {
        height: 176px;
    }

    .industry-content {
        padding: 18px;
    }

    .industry-content p {
        display: block;
        margin-bottom: 16px;
        font-size: 0.92rem;
    }
}
