/* Layout improvements for Forcefield website */

/* Hero section improvements */
.hero {
    padding: var(--space-32) 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Features section improvements */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    color: #1e40af;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        width: 100%;
        max-width: 400px;
    }
}

/* Make sure features are displayed horizontally on larger screens */
@media (min-width: 992px) {
    .features-grid {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .feature-card {
        flex-basis: calc(25% - 2rem);
    }
}
