/* Info Page Styling - Modern och fräsch layout */

html {
    height: 100%;
}

body {
    background-color: #f5f5f5;
    padding-top: 280px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.info-page {
    flex: 1;
    padding: 2rem 1rem 4rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.info-hero {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
}

.info-hero-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.info-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem 0;
    font-family: 'Exo 2', sans-serif;
}

.info-hero p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.info-content {
    background: white;
    padding: 3rem 3rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
}

.info-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.info-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin: 2.5rem 0 1.2rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #4CAF50;
    font-family: 'Exo 2', sans-serif;
}

.info-content h2:first-of-type {
    margin-top: 1.5rem;
}

.info-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.info-content li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.info-content a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.info-content a:hover {
    color: #45a049;
    text-decoration: underline;
}

.info-highlight {
    background: #f0f8f0;
    border-left: 4px solid #4CAF50;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.info-highlight p {
    margin: 0;
    font-size: 1.05rem;
}

.info-highlight strong {
    color: #2d6e3f;
}

.contact-box {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    text-align: center;
}

.contact-box p {
    color: white;
    margin-bottom: 0.8rem;
}

.contact-box p:last-child {
    margin-bottom: 0;
    font-size: 1.15rem;
}

.contact-box a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.contact-box a:hover {
    color: #e8f5e9;
}

.info-meta {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 2rem !important;
}

/* Mobilanpassning */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }
    
    .info-page {
        padding: 1.5rem 0.5rem 3rem;
    }
    
    .info-hero {
        padding: 2rem 1.5rem;
        border-radius: 15px 15px 0 0;
    }
    
    .info-hero h1 {
        font-size: 1.8rem;
    }
    
    .info-hero p {
        font-size: 1rem;
    }
    
    .info-hero-icon {
        font-size: 3rem;
    }
    
    .info-content {
        padding: 2rem 1.5rem;
        border-radius: 0 0 15px 15px;
    }
    
    .info-content h2 {
        font-size: 1.5rem;
    }
    
    .info-content p,
    .info-content li {
        font-size: 1rem;
    }
    
    .info-highlight {
        padding: 1.2rem 1.5rem;
    }
    
    .contact-box {
        padding: 1.5rem;
    }
}

/* Extra små skärmar */
@media (max-width: 480px) {
    .info-content ul {
        padding-left: 1.5rem;
    }
    
    .info-hero h1 {
        font-size: 1.5rem;
    }
    
    .info-content h2 {
        font-size: 1.3rem;
    }
}
