* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a2e;
    background: #fffdf9
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem
}

h1 {
    font-size: 2.5rem
}

h2 {
    font-size: 2rem
}

h3 {
    font-size: 1.5rem
}

h4 {
    font-size: 1.25rem
}

p {
    margin-bottom: 1rem
}

a {
    color: #1e5f74;
    text-decoration: none;
    transition: .3s
}

a:hover {
    color: #d4a84b
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -.75rem
}

.row > * {
    padding: 0 .75rem;
    width: 100%
}

.col-md-4 {
    width: 100%
}

.col-md-6 {
    width: 100%
}

.col-md-8 {
    width: 100%
}

.col-lg-3 {
    width: 100%
}

.col-lg-4 {
    width: 100%
}

.col-lg-6 {
    width: 100%
}

.col-lg-8 {
    width: 100%
}

@media (min-width: 768px) {
    .col-md-4 {
        width: calc(33.333% - 1.5rem)
    }

    .col-md-6 {
        width: calc(50% - 1.5rem)
    }

    .col-md-8 {
        width: calc(66.666% - 1.5rem)
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        width: calc(25% - 1.5rem);
    }

    .col-lg-4 {
        width: calc(33.333% - 1.5rem)
    }

    .col-lg-6 {
        width: calc(50% - 1.5rem)
    }

    .col-lg-8 {
        width: calc(66.666% - 1.5rem)
    }
}

.text-center {
    text-align: center
}

.text-white {
    color: #f5f5f5
}

.mb-0 {
    margin-bottom: 0
}

.mb-1 {
    margin-bottom: .5rem
}

.mb-2 {
    margin-bottom: 1rem
}

.mb-3 {
    margin-bottom: 1.5rem
}

.mb-4 {
    margin-bottom: 2rem
}

.mt-2 {
    margin-top: 1rem
}

.mt-3 {
    margin-top: 1.5rem
}

.mt-4 {
    margin-top: 2rem
}

.py-3 {
    padding: 1.5rem 0
}

.py-4 {
    padding: 2rem 0
}

.py-5 {
    padding: 3rem 0
}

.py-6 {
    padding: 4rem 0
}

.px-2 {
    padding-left: 1rem;
    padding-right: 1rem
}

.p-2 {
    padding: 1rem
}

.p-3 {
    padding: 1.5rem
}

.p-4 {
    padding: 2rem
}

.d-flex {
    display: flex
}

.flex-column {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.align-center {
    align-items: center
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.gap-1 {
    gap: .5rem
}

.gap-2 {
    gap: 1rem
}

.gap-3 {
    gap: 1.5rem
}

:root {
    --primary: #1e5f74;
    --primary-dark: #164a5c;
    --secondary: #fcefd5;
    --accent: #d4a84b;
    --dark: #1a1a2e;
    --light: #f5f5f5;
    --bg: #fffdf9;
    --bg-alt: #f0e8db
}

.bg-primary {
    background: var(--primary)
}

.bg-secondary {
    background: var(--secondary)
}

.bg-accent {
    background: var(--accent)
}

.bg-dark {
    background: var(--dark)
}

.bg-light {
    background: var(--bg)
}

.bg-alt {
    background: var(--bg-alt)
}

.text-primary {
    color: var(--primary)
}

.text-accent {
    color: var(--accent)
}

.text-dark {
    color: var(--dark)
}

.btn {
    display: inline-block;
    padding: .875rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: .3s;
    text-align: center
}

.btn-primary {
    background: var(--primary);
    color: #fff
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff
}

.btn-accent {
    background: var(--accent);
    color: var(--dark)
}

.btn-accent:hover {
    background: #c49a3d;
    color: var(--dark)
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary)
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
}

.card-accent {
    border-left: 4px solid var(--accent)
}

.rounded {
    border-radius: 12px
}

.shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;

    padding: 5vh 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 95, 116, .9) 0%, rgba(26, 26, 46, .8) 100%)
}

.hero-content {
    position: relative;
    z-index: 2
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%)
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem
}

.feature-card {
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    transition: .3s
}

.feature-card:hover {
    transform: translateY(-5px)
}

.gradient-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%)
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    opacity: .1
}

.form-group {
    margin-bottom: 1.25rem
}

.form-label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600;
    color: var(--dark)
}

.form-control {
    width: 100%;
    padding: .875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: .3s
}

.form-control:focus {
    outline: none;
    border-color: var(--primary)
}

textarea.form-control {
    min-height: 120px;
    resize: vertical
}

.footer {
    background: var(--dark);
    color: var(--light);
    padding: 3rem 0 1.5rem
}

.footer a {
    color: var(--light);
    opacity: .8
}

.footer a:hover {
    color: var(--accent);
    opacity: 1
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 1.5rem;
    margin-top: 2rem
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 300px
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 1.25rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .2)
}

.cookie-buttons {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

.cookie-buttons .btn {
    padding: .625rem 1.25rem;
    font-size: .875rem
}

.list-unstyled {
    list-style: none;
    padding: 0
}

.list-unstyled li {
    padding: .375rem 0
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem
    }

    h2 {
        font-size: 1.5rem
    }

    .hero {
        min-height: 60vh
    }

    .py-6 {
        padding: 2.5rem 0
    }

    .cookie-banner {
        padding: 1rem
    }

    .cookie-buttons {
        width: 100%
    }

    .cookie-buttons .btn {
        flex: 1
    }
}
