/* Grundläggande stilar */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #f4f4f9, #e1e8f0);
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
.main-header {
    background: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.main-header h1 {
    font-size: 2.8em;
    font-weight: bold;
}

.main-header p {
    font-size: 1.2em;
}

/* Navigering */
.main-nav ul {
    display: flex;
    justify-content: center;
    background: #444;
    margin: 0;
    padding: 10px 0;
    list-style: none;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s;
}

.main-nav ul li a:hover {
    color: #ffca33;
}

/* Sektioner */
.intro-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.intro-section h2 {
    font-size: 2.5em;
}

.intro-section .btn {
    padding: 15px 25px;
    background: #ffca33;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, box-shadow 0.3s;
}

.intro-section .btn:hover {
    background: #ffd966;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Tabeller */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

table th, table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

table th {
    background: #007bff;
    color: #fff;
}

table tr:hover {
    background: #f4f4f9;
}

/* Formulär */
.contact-section form {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
}

.contact-section button {
    background: #007bff;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s;
}

.contact-section button:hover {
    background: #0056b3;
}

/* Footer */
.main-footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}
