/* Contact Section Styles */

.contact-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    color: #1a1f71;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.contact-section h3 {
    color: #1a1f71;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.contact-section ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 30px auto;
    font-size: 1.1rem;
}

.contact-section li {
    margin: 10px 0;
    padding-left: 30px;
    position: relative;
}

.contact-section li:before {
    content: "•";
    color: #4c5fd5;
    font-weight: bold;
    position: absolute;
    left: 10px;
}

.contact-section a {
    color: #4c5fd5;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

/* Whitepaper Section */
.whitepaper-section {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.whitepaper-section h2 {
    color: #1a1f71;
    margin-bottom: 20px;
    font-size: 2rem;
}

.whitepaper-section p {
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1f71;
    margin-bottom: 3rem;
}

/* Insights Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.insight-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.insight-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.insight-content {
    padding: 25px;
}

.insight-card h3 {
    color: #1a1f71;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 3.6em;
}

.insight-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.insight-link {
    color: #4c5fd5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.insight-link:hover {
    color: #1a1f71;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
}