/* Industry Insights Page Specific Styles */

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    padding-top: 0;
}

.header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: none;
}

.header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.header .subtitle {
    font-size: 20px;
    color: #6b7280;
    font-weight: 400;
}

.section {
    margin-bottom: 50px;
}

.section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    margin-top: 40px;
}

.section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4b5563;
}

.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: white;
    color: #2563eb;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Footer Styles */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand svg {
    width: 96px;
    height: auto;
}

.footer-content > div > p {
    color: #9ca3af;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.6;
}

.footer-content h4 {
    color: white;
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: 600;
}

.footer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-content li {
    margin-bottom: 12px;
}

.footer-content a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-content a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .header h1 {
        font-size: 32px;
    }

    .section h2 {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 40px 20px;
    }
}
