:root {
    --primary-color: #123F35; /* Mörkgrön */
    --secondary-color: #2E2E2E; /* Grafit */
    --accent-color: #ffffff; /* Vit */
    --text-color: #333333;
    --light-bg: #f4f4f4;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7; /* Ökat från 1.6 för bättre läsbarhet */
    color: var(--text-color);
    background-color: #ffffff;
}

.container {
    max-width: 1100px; /* Något smalare för bättre läsbarhet på stora skärmar */
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    background-color: var(--primary-color);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: #a8d5ba;
    color: var(--primary-color);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.top-bar a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 700;
    margin-left: 0.5rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.about-logo {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500; /* Något tyngre för bättre läsbarhet */
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

main {
    overflow: hidden;
}

.hero {
    background: linear-gradient(rgba(18, 63, 53, 0.85), rgba(46, 46, 46, 0.85)), url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&q=80&w=1200') center/cover no-repeat;
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(18, 63, 53, 0.1);
}

.btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem; /* Något bredare knappar */
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px; /* Mjukare hörn */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.benefits {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #a8d5ba;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.step h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.custom-consulting {
    background-color: var(--light-bg);
    padding: 3rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    text-align: center;
}

.custom-consulting h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.custom-consulting p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-card {
    background-color: var(--white);
    padding: 3rem; /* Mer luft */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* Mjukare skugga */
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.service-card.featured {
    transform: scale(1.05);
    background-color: var(--primary-color);
    color: var(--white);
    border-top: none;
    box-shadow: 0 20px 40px rgba(18, 63, 53, 0.2);
}

.service-card.featured:hover {
    transform: scale(1.07) translateY(-8px);
}

.service-card.featured h3,
.service-card.featured .delivery strong {
    color: #a8d5ba;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-card ul {
    list-style-type: none;
    margin-bottom: 2rem;
}

.service-card li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-card.featured li::before {
    color: var(--white);
}

.delivery {
    margin-top: auto;
    font-size: 0.95rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.delivery p {
    margin-bottom: 0;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.delivery-subtext {
    display: block;
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    opacity: 0.85;
}

.service-card.featured .delivery {
    border-top: 1px solid rgba(255,255,255,0.2);
}

.bg-light {
    background-color: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    text-align: left;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
}

.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.offer-badge {
    display: inline-block;
    background-color: #a8d5ba;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        text-align: center;
    }

    .benefits-grid,
    .process-steps {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .service-card.featured {
        transform: scale(1);
    }
}
