.fw-a6fa035c-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
}

.fw-a6fa035c-form-wrap {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px; /* changed from margin-bottom to margin-top since it's below grid */
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.fw-a6fa035c-form h4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.fw-a6fa035c-field {
    margin-bottom: 15px;
}

.fw-a6fa035c-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #444;
}

.fw-a6fa035c-field input[type="text"],
.fw-a6fa035c-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.fw-a6fa035c-field input[type="text"]:focus,
.fw-a6fa035c-field textarea:focus {
    border-color: #0073aa;
    outline: none;
}

.fw-a6fa035c-btn {
    background: #0073aa;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.fw-a6fa035c-btn:hover {
    background: #005177;
}

.fw-a6fa035c-msg-box {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 500;
}
.fw-a6fa035c-msg-box.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.fw-a6fa035c-msg-box.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Grid Layout */
.fw-a6fa035c-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Responsive */
@media (max-width: 992px) {
    .fw-a6fa035c-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .fw-a6fa035c-grid {
        grid-template-columns: 1fr;
    }
}

/* Card UI */
.fw-a6fa035c-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fw-a6fa035c-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.fw-a6fa035c-subject {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

.fw-a6fa035c-msg {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.fw-a6fa035c-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
    margin-top: auto;
}

.fw-a6fa035c-name {
    font-weight: 600;
    color: #333;
}
