/* Complaints Page Styling */
.complaints-hero {
    padding: 2rem 0;
}

.complaints-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.complaints-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.complaints-grid {
    margin: 3rem 0;
}

.complaints-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #ddd;
    height: 100%;
    display: flex;
    flex-direction: column;
}


.complaints-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #32cd33, #28a745);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.complaints-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.complaints-card__description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.complaints-card__action {
    margin-bottom: 1rem;
}

.btn-outline-primary {
    background-color: #32cd33;
    border-color: #32cd33;
    color: white;
}

.btn-outline-secondary {
    background-color: #32cd33;
    border-color: #32cd33;
    color: white;
}

.complaints-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.complaints-btn:hover {
    transform: translateY(-1px);
    background-color: #666 !important;
    border-color: #666 !important;
    color: white !important;
}

.complaints-card__details small {
    font-style: italic;
}

.complaints-trust-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 3rem;
    margin-top: 3rem;
}

.complaints-trust__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.complaints-trust__text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.complaints-trust__badge {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #ddd;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.complaints-trust__badge i {
    font-size: 2rem;
    color: #32cd33;
    transition: all 0.3s ease;
}

.complaints-trust__badge span {
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .complaints-title {
        font-size: 2rem;
    }

    .complaints-card {
        padding: 1.5rem;
    }

    .complaints-trust-section {
        padding: 2rem;
    }
}
