body {
    background-color: #F8F8F8;
    color: #2F4858;
    font-family: "Georgia", serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2 {
    font-family: "Arial", sans-serif;
    color: #2F4858;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

h3 {
    font-family: "Georgia", serif;
    color: #8B6D5D;
    font-style: italic;
}

.container-custom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #FFFFFF;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(47, 72, 88, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.navbar {
    background-color: #F8F8F8;
    border-bottom: 1px solid #A3B5C0;
    padding: 20px 0;
}

.navbar-brand {
    font-family: "Arial", sans-serif;
    font-weight: 900;
    color: #2F4858 !important;
    font-size: 1.8rem;
    letter-spacing: 3px;
}

.nav-link {
    color: #2F4858 !important;
    font-family: "Arial", sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B6D5D !important;
}

.btn-nomira {
    background-color: #2F4858;
    color: #FFFFFF;
    border: none;
    padding: 15px 35px;
    font-family: "Arial", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-nomira:hover {
    background-color: #8B6D5D;
    color: #FFFFFF;
    text-decoration: none;
}

.card-concept {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    padding: 40px;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-concept:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.image-frame {
    border: 1px solid #A3B5C0;
    padding: 15px;
    background: #FFFFFF;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.content-panel {
    background: #2F4858;
    color: #FFFFFF;
    padding: 60px;
    text-align: center;
}

.content-panel h2 {
    color: #FFFFFF;
}

.footer {
    background: #FFFFFF;
    border-top: 1px solid #A3B5C0;
    padding: 80px 0 40px;
}

.footer-info {
    font-size: 0.9rem;
}

.footer-links a {
    color: #2F4858;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #8B6D5D;
}

.disclaimer-box {
    border: 1px dashed #8B6D5D;
    padding: 30px;
    margin: 40px 0;
    background: #FFF9F6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2F4858;
    color: #FFFFFF;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-btns .btn {
    margin-left: 10px;
    font-size: 0.8rem;
}

.anatomy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vignette::first-letter {
    font-size: 4rem;
    float: left;
    margin-right: 15px;
    color: #8B6D5D;
    font-family: "Arial", sans-serif;
    line-height: 1;
}

.stat-strip {
    background: #A3B5C0;
    color: #2F4858;
    padding: 40px 0;
    text-align: center;
}

.accordion .card {
    border: none;
    border-bottom: 1px solid #E0E0E0;
    background: transparent;
}

.accordion .card-header {
    background: transparent;
    border: none;
    padding: 25px 0;
}

.accordion .btn-link {
    color: #2F4858;
    text-decoration: none;
    font-weight: 700;
    font-family: "Arial", sans-serif;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 50px;
    border: 1px solid #E0E0E0;
}

.form-group label {
    font-family: "Arial", sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.form-control {
    border-radius: 0;
    border: 1px solid #A3B5C0;
    padding: 15px;
}

.spacer-80 { height: 80px; }
.spacer-120 { height: 120px; }

@media (max-width: 992px) {
    .anatomy-grid, .mosaic-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}