.forms-page {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.forms-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 30px;
}

.forms-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 20px;
}

.forms-description {
    font-size: 1.4rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.forms-section {
    padding: 30px 0 60px;
}

.form-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.form-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ff6600;
    margin-bottom: 10px;
}

.form-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .forms-heading {
        font-size: 2.2rem;
    }
    
    .forms-description {
        font-size: 1.1rem;
    }
    
    .form-card {
        padding: 20px;
    }
    
    .form-card h3 {
        font-size: 1.5rem;
    }
}
