.compare-container {
    padding-top: 90px;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.compare-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.profile-card {
    width: 250px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.profile-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.profile-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.profile-card button {
    padding: 12px 0;
    font-size: 1rem;
    background-color: #7897cf;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.profile-card button:hover {
    background-color: #18056b;
}
