body {
    padding-top: 56px;
}

.hero-section {
    background: url('/assets/systembydesign-hero.jpg') no-repeat center center;
    background-size: cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .hero-text {
    position: relative;
    z-index: 2;
}

#om-oss .hero-section .container,
#kontakta-oss .hero-section .container {
    position: relative;
    z-index: 2;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 4px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    padding-left: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #007bff;
    z-index: 1;
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    margin-top: 0;
}

.calendar .month {
    font-size: 1rem;
}

.calendar .wday {
    font-size: 0.8rem;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body img {
    border-radius: 22% !important;
}

.product-card {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card .card-body {
    position: relative;
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-card .btn {
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: bold;
    transition: all 0.3s;
}

.product-card:hover .btn {
    background-color: #0056b3;
    transform: scale(1.05);
}

.product-card .card-title {
    font-weight: bold;
    color: #343a40;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 3px solid #0056b3;
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgba(0, 86, 179, 0.5);
    transition: none;
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-primary:hover {
    background-color: #004085;
    border-color: #00376e;
}
