/* Page Header */
body .page-header {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), url('../img/bild8.jpg') center 72px/contain no-repeat !important;
    color: #ffffff;
    padding: 120px 0 80px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff !important;
    font-family: 'Exotc 350 Bd BT', Arial, sans-serif !important;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
    font-family: 'Exotc 350 Bd BT', Arial, sans-serif !important;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2c3e50, #2c3e50);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-text li {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.about-text li::before {
    content: '•';
    color: #2c3e50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value:hover {
    transform: translateY(-5px);
    border-color: #2c3e50;
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.15);
}

.value h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.value p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .about h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-text li {
        font-size: 1rem;
    }
    
    .value {
        padding: 25px;
    }
    
    .value h4 {
        font-size: 1.2rem;
    }
    body .page-header {
      background-position: center 100px !important;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .value {
        padding: 20px;
    }
    
    .value h4 {
        font-size: 1.1rem;
    }
    
    .value p {
        font-size: 0.9rem;
    }
} 