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

body {
    font-family: 'DIN', 'DIN Next', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #333333;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    line-height: 1.6;
}

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

/* Header Section */
.header-section {
    background: #ffffff;
    border: none;
    padding: 30px 0;
    margin-bottom: 60px;
}

.logo {
    color: #d4cdb4;
    padding-top: 3%;
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.contact-info {
    font-size: clamp(1.3rem, 2.8vw, 2.7rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-info a {
    color: #1a1a1a;
    text-decoration: none;
}

.contact-info a:hover {
    color: #4a4a4a;
}

/* Bracket Container System */
.bracket-section {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.bracket-section-top {
    margin-bottom: 0;
}

.bracket-section-bottom {
    margin-top: 0;
}

.bracket-wrapper {
    display: flex;
    flex-direction: column;
    width: 35px;
    flex-shrink: 0;
}

.bracket-top {
    height: 20px;
    flex-shrink: 0;
}

.bracket-middle {
    flex: 1;
    min-height: 20px;
}

.bracket-bottom {
    height: 20px;
    flex-shrink: 0;
}

.bracket-top svg,
.bracket-middle svg,
.bracket-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
}

.bracket-content {
    flex: 1;
    background: #ffffff;
    border: none;
    border-radius: 0;
    padding: 25px 30px;
}

.bracket-content h2 {
    margin: 0 0 15px 0;
    color: #333333;
    font-size: 1.5em;
    font-weight: 400;
}

.bracket-content p {
    margin: 0 0 15px 0;
    line-height: 1.6;
    color: #333333;
    font-size: 1.3em;
}

.bracket-content p:last-child {
    margin-bottom: 0;
}

.bracket-content ul {
    margin: 15px 0;
    padding-left: 25px;
    list-style-type: none;
}

.bracket-content ul li {
    margin: 10px 0;
    line-height: 1.6;
    color: #333333;
    font-size: 1.3em;
    position: relative;
    padding-left: 20px;
}

.bracket-content ul li::before {
    content: "•";
    color: #d4cdb4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.bracket-content img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
}

/* Farbvarianten */
.bracket-blue .bracket-top svg path,
.bracket-blue .bracket-middle svg path,
.bracket-blue .bracket-bottom svg path {
    stroke: #666666;
}

.bracket-cyan .bracket-top svg path,
.bracket-cyan .bracket-middle svg path,
.bracket-cyan .bracket-bottom svg path {
    stroke: #666666;
}

/* Container für verbundene Brackets */
.connected-brackets {
    margin: 40px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }

    .header-section {
        padding: 20px 0;
        margin-bottom: 40px;
    }

    .bracket-content {
        padding: 20px;
    }

    .bracket-content p {
        font-size: 1.2em;
    }

    .bracket-content ul li {
        font-size: 1.2em;
    }
}

::selection {
    background: #e0e0e0;
    color: #333333;
}

/* Lade-Animationen */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.header-section {
    animation: fadeInDown 0.8s ease-out;
}

.bracket-section:nth-child(1) {
    animation: fadeInLeft 0.8s ease-out 0.2s backwards;
}

.bracket-section:nth-child(2) {
    animation: fadeInLeft 0.8s ease-out 0.4s backwards;
}

.bracket-section:nth-child(3) {
    animation: fadeInLeft 0.8s ease-out 0.6s backwards;
}