.as-grievance-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.as-timeline {
    margin-top: 40px;
    position: relative;
}

.as-timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.as-timeline-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
    z-index: 2;
}

.as-timeline-item::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 40px;
    width: 2px;
    height: calc(100% - 10px);
    background: #eee;
    z-index: 1;
}

.as-timeline-item:last-child::after {
    display: none;
}

.as-timeline-content h5 {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 5px;
    color: #000;
}

.as-timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.as-form-container {
    background: #fff;
}

.as-form-input,
.as-form-textarea,
.as-form-select {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #eee;
    font-family: inherit;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.as-form-input:focus,
.as-form-textarea:focus,
.as-form-select:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.as-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.as-form-label {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    display: block;
}

.as-form-select {
    cursor: pointer;
    color: #666;
}

.as-contact-info-card {
    padding: 40px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
}

.as-contact-info-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.as-contact-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.as-contact-list li div p,
.as-contact-list li div a {
    font-size: 14px;
    color: #555;
    margin: 0;
    text-decoration: none;
}

@media (max-width: 900px) {
    .as-grievance-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .as-form-grid {
        grid-template-columns: 1fr;
    }

    .as-form-group.full-width {
        grid-column: span 1;
    }
}