body.services main {
    padding: 2rem;
}

body.services h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #003366;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: space-between;
    
}
.service-card {
    flex: 1 1 300px;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
    animation: fadeIn 1s ease-in;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
    justify-self: end;
}
.service-ikon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    color: #003366;
}

.service-card ul {
    list-style-type: disc;
    padding-left: 1.2rem;
    text-align: left;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-top: 1rem;
    animation: fadeIn 1s ease-in;
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        justify-self: center;
    }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}