/* Grundlæggende styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
    text-align: center;
}

.bg-light {
    background-color: #e2e8f0;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    color: #2c525f;
}

p {
    font-size: 1.1rem;
    color: #666;
}

.no-wrap {
  white-space: nowrap;
}

.hero {
    background: url('https://via.placeholder.com/1920x1080.png?text=Billede+af+PC+reparation') no-repeat center center/cover;
    color: white;
    padding: 150px 0px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 0, 0.4); /* Mørkegrøn overlay */
}

.hero-content {
    padding: 0px 40px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin: 0;
}

.hero h2 {
    font-size: 2rem;
    color: #fff;
    margin-top: 10px;
}

.hero p {
    font-size: 1.2rem;
    color: #fff;
}

/* Services sektion */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(333px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.prices-table {
  width: 80%;
  margin: 0 auto;
  text-align: left;
}

/* Footer */
footer {
    background: #2c525f;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}
