/* PIN-DROP.se – version v1.6 */

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    color: #000;
    background: #ffffff;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 20px 20px;
}

.logo {
    width: 360px;
    max-width: 90%;
}

/* Slogan */
.slogan {
  font-family: "Oswald", sans-serif;
    font-size: 36px;
    color: #007DC5;
    margin-top: 10px;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

/* Layout */
.content {
    display: flex;
    max-width: 1100px;
    margin: 50px auto;
    gap: 50px;
    padding: 0 20px;
    align-items: center;
}

.image-container {
    flex: 1;
}

.hero-image {
    width: 100%;
    border-radius: 24px;
}

/* Brödtext + titel */
.text-container {
    flex: 1;
    font-size: 22px;
    line-height: 1.6;
}

.section-title {
    font-family: "Chewy", cursive;
    font-size: 30px;
    color: #004F9F;
    margin: 0 0 10px 0;
}

/* Footer */
.footer {
    margin: 80px auto 60px;
    display: flex;
    justify-content: center;
    gap: 120px;
    text-align: center;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

/* Ikontext (Chewy) */
.icon-box span {
  font-family: "Oswald", sans-serif;
    font-size: 26px;
    color: #007DC5;
    line-height: 1.2;
}

/* Gör <a>-taggen osynlig runt mail-boxen */
.icon-link {
    text-decoration: none;
    color: inherit;
}

/* Mobile */
@media (max-width: 900px) {
    .content {
        flex-direction: column;
        text-align: center;
    }

    .footer {
        flex-direction: column;
        gap: 40px;
    }
}
