:root {
    --main-color: #1A2D5C;
    --highlight-color: #FF7F50;
    --light-gray: #f8f8f8;
    --subtle-gray: #CBCBCB;
    --text-color: black;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--main-color);
    margin-bottom: 15px;
}
p {
    margin-bottom: 10px;
}
a {
    color: var(--main-color);
    text-decoration: none;
}
a:hover {
    color: var(--highlight-color);
    text-decoration: underline;
}
.main-header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid var(--subtle-gray);
    position: relative;
    z-index: 10;
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-header h1 {
    font-size: 2em;
    margin: 0;
    color: var(--main-color);
    font-weight: 700;
}
main {
    flex-grow: 1;
}
.main-page-layout {
    padding: 40px 0 80px 0;
}
.imprint-page-layout {
    display: flex;
    padding: 0;
}
.hero-section {
    background-image: linear-gradient(rgba(26, 45, 92, 0.4), rgba(26, 45, 92, 0.4)), url('/assets/zurich.jpg');
    background-size: cover;
    background-position: top right;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 60px 200px 60px;
    border-radius: 8px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.imprint-section {
    background-color: var(--light-gray);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 60px;
}
.hero-section h2 {
    color: white;
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 600px;
}
.hero-section p {
    color: white;
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
}
.feature-section, .content-section {
    position: relative;
    background-color: white;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.feature-section {
    z-index: 5;
    margin-top: -150px;
}
.content-section {
    margin-top: 30px;
}
.content-wrapper {
    padding: 60px;
}
.content-wrapper h3 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 15px;
}
.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    margin-top: -10px;
    margin-bottom: 50px;
    color: #333;
}
.services-grid {
    display: flex;
    gap: 40px;
    text-align: center;
}
.service-item {
    flex: 1;
}
.service-item i {
    font-size: 2.5em;
    color: var(--highlight-color);
    margin-bottom: 15px;
}
.service-item h4 {
    font-size: 1.5em;
}
.feature-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}
.feature-image {
    flex: 1 1 45%;
    position: relative;
}
.feature-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-color: rgba(26, 45, 92, 0.4);
}
.feature-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}
.feature-text {
    flex: 1 1 55%;
}
.highlight-text {
    font-weight: 700;
    color: var(--highlight-color);
}
.centered-button-container {
    text-align: center;
    margin-top: 50px;
}
.btn-highlight {
    display: inline-block;
    background-color: var(--highlight-color);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.btn-highlight:hover {
    background-color: #e56d40;
    text-decoration: none;
}
.main-footer {
    background-color: var(--main-color);
    color: white;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
    position: relative;
    z-index: 10;
}
.main-footer .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.main-footer p {
    margin-bottom: 0;
}
.main-footer a {
    color: white;
}
.main-footer a:hover {
    color: var(--highlight-color);
}
@media (max-width: 1200px) {
    .main-page-layout {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-section {
        margin: 0;
        width: 100%;
    }
    .feature-section, .content-section {
        width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
    }
    .imprint-section {
        max-width: none;
        width: auto;
        margin: 0 20px;
    }
}
@media (max-width: 768px) {
    .main-page-layout {
        padding: 20px 10px 40px 10px;
    }
    .imprint-page-layout {
        padding: 0;
    }
    .hero-section {
        padding: 40px 20px 120px 20px;
        align-items: flex-start;
        text-align: left;
    }
    .feature-section {
        margin-top: -80px;
    }
    .content-section {
        margin-top: 20px;
    }
    .feature-section, .content-section {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    .content-wrapper {
        padding: 40px 20px;
    }
    .content-wrapper h3 {
        font-size: 2em;
    }
    .services-grid {
        flex-direction: column;
    }
    .feature-layout {
        flex-direction: column;
    }
    .imprint-section {
        width: 100%;
        margin: 0;
        padding: 40px 20px;
    }
    .hero-section h2 {
        font-size: 2.5em;
    }
    .main-header .container, .main-footer .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .main-header h1 {
        margin-bottom: 15px;
    }
}