
* {
    margin: 0 auto;
    padding: 0;
    font-family: 'Inter';
    box-sizing: border-box;
}

:root {
    --red: #a32d2d;
    --light-red: #f1e6e6;

    --red: #a38f2d;  /* Dark yellow */
    --light-red: #f9f6e6; /* Light yellow */

    --red: #2d7a32;  /* Dark green */
    --light-red: #e6f1e6; /* Light green */
    
    --red: #2d5fa3;  /* Dark blue */
    --light-red: #e6eff9; /* Light blue */
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Inter';
    src: url('https://dbg-deutscheberatung.de/fonts-icons/inter.ttf') format('truetype');
    font-style: normal;  
}
@font-face {
    font-family: 'MaterialSymbolsOutlined';
    src: url('https://dbg-deutscheberatung.de/fonts-icons/icons.woff2') format('truetype');
    font-weight: 400;
    font-style: normal;
}
body {
    font-family: 'Inter', sans-serif;
}
.icon {
    font-family: 'MaterialSymbolsOutlined' !important;
    font-size: 24px;
    user-select: none;
}

nav {
    background: linear-gradient(to right, #f5f5f5, #ffffff);
}
.navbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    height: 80px;
    box-sizing: border-box;
}
.logo {
    position: absolute;
    left: 20px;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
}
.logo img {
    width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
-webkit-user-drag: none;
}
.logo-symbol {
    margin-right: 5px;
}
.menu-toggle {
    background: var(--red);
    border: none;
    position: absolute;
    right: 20px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    color: white;
    font-size: 20px;
    border-radius: 5px;
}
.menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.menu.active {
    display: block;
}
.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu li a {
    padding: 25px;
    box-sizing: border-box;
    background: var(--red);
    color: white;
    border-bottom: 1px solid white;
}
.menu li a {
    color: white;
    text-decoration: none;
    display: block;
}

.container {
    background: white;
    padding: 70px 20px;
    border-radius: 8px;
}
h1 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
}
p {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}
.btn {
    display: inline-block;
    padding: 20px 30px;
    background: var(--red);
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}
.container .wrapper {
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-wrap: wrap;
}
.container .text {
    width: 100%;
    max-width: 500px;
}
.container .img {
    margin-top: 50px;
    width: 100%;
    max-width: 500px;
    height: 100%;
    max-height: 500px;
}
.container .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.banner {
    padding-bottom: 50px;
    width: 100%;
    background: var(--red);
    color: #FFFF;
}
.banner .wrapper {
    padding: 70px 30px;
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-wrap: wrap;
}
.banner .block {
    margin-top: 50px;
    width: 100%;
    max-width: 370px;
    text-align: center;
}
.banner p {
    color: #FFFF;
}
.highlight-list {
    margin-top: 20px;
}
.highlight-list li {
    font-size: 18px;
    font-weight: bold;
    list-style: none;
    margin-bottom: 10px;
}
.highlight-list li::before {
    content: '\2713';
    color: var(--red);
    font-size: 20px;
    margin-right: 10px;
}

.container.background {
    margin-top: 0;
    padding: 70px 30px;
    background: #F4F4F4;
}

.wrapper.special {
    align-items: stretch !important;
}

.analysis-block {
    margin-top: 30px;
    width: 100%;
    max-width: 370px;
    background: #F4F4F4;
    border-radius: 15px;
    padding: 70px 50px;
}
.analysis-icon {
    font-family: 'MaterialSymbolsOutlined';
    font-size: 52px;
    color: var(--red);
    background: var(--light-red);
    text-align: center;
    line-height: 90px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-block;
}
.analysis-block h2 {
    margin-top: 25px !important;
}
.analysis-block p {
    margin-top: 25px !important;
}

.container h2 {
    margin-top: 15px;
    font-size: 32px;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.container .text-wide {
    max-width: 1200px;
    text-align: center; 
}

@media screen and (min-width: 1200px) {
    .logo img {
        width: 100%;
        height: auto;
        max-height: 70px;
        object-fit: contain;
    }
    .navbar {
        width: 100%;
        height: 80px;
    }
    .menu-toggle {
        display: none;
    }
    .menu {
        display: block;
        position: relative;
        display: flex;
        background: none;
        box-shadow: none;
        top: 0;
    }
    .menu ul {
        display: flex;
        gap: 50px;
    }
    .menu li a {
        width: auto;
        padding: 0;
        box-sizing: border-box;
        background: none;
        color: black;
        border: none;
    }
    .menu li {
        width: auto;
    }
    .menu li a {
        padding: 15px 0;
        color: black;
        text-decoration: none;
        display: block;
    }
    .menu li a.special {
        padding: 15px 20px;
        background: var(--red);
        color: #FFFF;
        border-radius: 5px;
    }
    .menu {
        width: 700px;
        margin-right: 0;
    }
    .navbar .logo {
        left: 150px;
    }
    .navbar {
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: linear-gradient(to right, #f5f5f5, #ffffff);
    }

    .container {
        margin-top: 30px;
    }
    .container .wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .container .img {
        margin-top: 0;
    }
    .container .text {
        padding: 0 70px;
    }
    .container h1 {
        margin-bottom: 30px;
        font-size: 72px;
    }
    .container p {
        font-size: 20px;
    }

    .banner .block h2 {
        font-size: 32px;
    }
    .banner p {
        font-size: 16px;
    }
    
    .container.background {
        margin-top: 0;
        padding: 130px 30px;
        background: #F4F4F4;
        box-sizing: border-box;
    }
    .container .text-wide h2 {
        margin-top: 15px;
    }
    .container .text-wide h2 {
        margin-top: 15px;
        line-height: 1.6;
    }
}

@media screen and (min-width: 1400px) {
    .container .text {
        max-width: 650px;
    }
    .container .img {
        max-width: 650px;
        max-height: 650px;
    }

    .container.background {
        margin-top: 0;
        padding: 130px 30px;
        background: #F4F4F4;
    }

    .container .text-wide {
        width: 1350px;
        text-align: center;
    }
    .container .text-wide h2 {
        margin-top: 15px;
    }
    .container .text-wide h2 {
        margin-top: 15px;
        line-height: 1.6;
    }
    .wrapper.special {
        margin-top: 50px;
        width: 100%;
        max-width: 1400px;
    }
    .container .analysis-block {
        max-width: 430px;
        box-sizing: border-box;
    }
}
@media screen and (min-width: 1600px) {
    .container .text {
        max-width: 750px;
    }
    .container .img {
        max-width: 750px;
        max-height: 750px;
    }
}

.over-contact {
    background: #f4f4f4;
}
.contact-container {
    max-width: 1200px;
    padding: 70px 30px;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f4f4;
    justify-content: center;
    align-items: center;
}

.info-box {
    margin-top: 50px;
    flex: 1;
}

.info-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.info-box p {
    margin-bottom: 20px;
    color: #555;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.contact-details div {
    margin: 0;
    display: flex;
    align-items: center;
    align-items: start;
    gap: 10px;
}

.contact-details div span.icon {
    width: 24px;
    height: 24px;
    color: var(--red);
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}

footer {
    padding: 50px 30px;
    width: 100%;
    height: auto;
    text-align: center;
}
footer .wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
}
footer a {
    color: #333;
    text-decoration: none;
}

.form-box {
    padding: 20px;
    box-sizing: border-box;
    border-radius: 5px;
    text-align: center;
    background-color: #FFFF;
}
.form-box h3 {
    padding-top: 30px;
    font-size: 32px;
}

@media screen and (min-width: 1200px) {

    .contact-container h2 {
        font-size: 52px;
    }
    .contact-container p {
        margin-top: 35px;
        font-size: 20px;
    }
    .contact-details {
        margin-top: 50px;
    }
    .contact-details div {
        margin: 0;
        margin-top: 15px;
        display: flex;
        align-items: center;
        align-items: start;
        gap: 10px;
    }
    .contact-details div span.icon {
        width: 50px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        border-radius: 5px;
        background-color: #FFFF;
    }
    .contact-details div span {
        line-height: 50px;
    }

    .info-box {
        padding: 40px;
    }
}

.imprint {
    padding-top: 130px;
    width: 90%;
    max-width: 1200px;
}
.imrpint h2 {
    margin-top: 25px;
}
.imprint p {
    margin-top: 25px;
}