/* Modern och ren designgrund */
:root {
    --primary-color: #2c3e50;
    --text-color: #333333;
    --bg-color: #f8f9fa;
}

html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}

/* Begränsar bredden så det blir lättläst */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* Layout för tjänsterna (1 tjänst per rad) */
.service-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Kolumn 1: Visuellt */
.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

/* Kolumn 2: Text */
.service-text {
    flex: 1;
}

.service-text h2 {
    color: var(--primary-color);
    margin-top: 0;
}

.cta-button {
    background-color: #27ae60;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #219653;
    opacity: 1;
}

/* Kontaktsektion */
.contact-section {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 2rem;
    margin-top: 4rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
    /* Ser till att padding inte gör fälten bredare än 100% */
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Skicka-knappen */
.submit-btn {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
}

.fax-grupp {
    display: none !important;
    position: absolute;
    left: -9999px;
    /* Flyttar ut den från skärmen för extra säkerhet mot skärmläsare */
}

.submit-btn:hover {
    background-color: #219653;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #e9ecef;
    color: var(--text-color);
}