/* Local Inter font files (offline, no Google Fonts) */
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-SemiBoldItalic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f8f9fb;
    color: #1a1a1a;
    line-height: 1.6;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.logo img {
    max-height: 140px;
}

.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    position: relative;
}

.nav a.active {
    color: #2c5364;
    font-weight: 600;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #2c5364;
}

.contact {
    text-align: right;
    font-size: 14px;
    color: #555;
}

.hero {
    text-align: center;
    padding: 90px 20px;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
}

.hero h1 {
    font-size: 38px;
}

.section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 40px;
}

.services {
    display: flex;
    gap: 40px;
}

.service {
    flex: 1;
}

.service img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #2c5364;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

footer {
    background: #111827;
    color: #9ca3af;
    text-align: center;
    padding: 30px;
    margin-top: 60px;
}

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

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 15px;
}

@media (max-width: 1000px) {
    .services {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .contact {
        text-align: center;
    }
    .hero h1 {
        font-size: 26px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111827;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    max-width: 75%;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 14px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 13px;
}

.accept {
    background: #2c5364;
    color: white;
}

.decline {
    background: #444;
    color: white;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .cookie-banner p {
        max-width: 100%;
    }
}

/* --- Mobile Fixes --- */
body {
    overflow-x: hidden;
}

.section {
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {

    .header {
        padding: 15px 20px;
        width: 100%;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .section {
        padding: 40px 20px;
    }

    .services {
        width: 100%;
    }

}
