/* Global styling */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; } header { background-color: #003366; color: white; padding: 20px; display: flex; justify-content: space-between; align-items: center; } header .logo img { height: 50px; } nav ul { list-style-type: none; margin: 0; padding: 0; display: flex; } nav ul li { margin: 0 15px; } nav ul li a { color: white; text-decoration: none; font-size: 16px; } section { padding: 40px; margin: 20px 0; } h1, h2 { font-size: 24px; color: #003366; } .tjeneste-container { display: flex; justify-content: space-between; } .tjeneste { width: 30%; padding: 15px; background-color: white; border: 1px solid #ddd; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); } .cta-button { background-color: #003366; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; font-size: 16px; } .cta-button:hover { background-color: #005599; } footer { background-color: #003366; color: white; padding: 20px; text-align: center; }