/* Grundläggande återställning */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
    padding: 20px;
}

.container {
    max-width: 745px; /* Behåller originalbredden */
    margin: 0 auto; /* Centrerar innehållet */
    text-align: center;
}

/* Header-stil */
.header {
    margin-bottom: 20px;
}

.header .logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.header p {
    color: gray;
    margin: 5px 0;
    font-size: 14px;
}

.header h1 {
    font-size: 16px;
    color: navy;
    margin-bottom: 15px;
}

/* Snabblänkar */
.quick-links a {
    font-weight: bold;
    font-size: 14px;
    line-height: 1.8;
}

/* Länk-kolumner */
.link-columns {
    display: flex;
    justify-content: space-between;
    text-align: left;
    margin-top: 15px;
    border-top: 1px solid #ccc;
    padding-top: 15px;
}

.link-column {
    width: 48%;
    padding: 0 10px;
}

.link-column h2 {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
}

.link-column ul {
    list-style: none;
    padding: 0;
}

.link-column li {
    font-size: 10pt;
    margin-bottom: 3px;
}

.link-column img {
    vertical-align: middle;
    margin-left: 5px;
}

/* Affär/Nöje block */
.category-block {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.category {
    width: 49%;
    padding: 10px;
    border: 1px solid #ccc;
}

.category.business {
    background-color: silver;
}

.category.business .category-title {
    color: navy;
}

.category.leisure {
    background-color: navy;
}

.category.leisure .category-title {
    color: white;
}

.category-title {
    font-family: "Arial Black", sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
}

.category-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

/* Footer-stil */
.footer {
    padding: 10px 0;
    font-size: 12px;
    color: navy;
    text-align: center;
}

.footer hr {
    border: 0;
    height: 1px;
    background-color: #ccc;
    margin: 10px 0;
}

/* Länk-färger */
a:link {
    color: blue;
    text-decoration: underline;
}

a:visited {
    color: purple;
}

a:hover {
    color: darkblue;
    text-decoration: none;
}

/* Media Query för mobilanpassning */
@media (max-width: 600px) {
    .link-columns, .category-block {
        flex-direction: column;
    }

    .link-column, .category {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .link-column {
        padding: 0;
    }
    
    .link-column h2 {
        text-align: left;
        margin-left: 10px;
    }
}