.contact-container {
    max-width: 100%;
    margin: 0;
    padding: 40px 20px;
    color: #eee;
    position: relative;
    min-height: 100vh;
}

.contact-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("kontakt_background_dark.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 1;
    z-index: 0;
}

body.light-mode .contact-container {
    color: #111;
}

body.light-mode .contact-container::before {
    background-image: url("kontakt_background.png");
    opacity: 1;
}

.intro-section, .competencies-grid, .manifesto, .contact-form {
    position: relative;
    z-index: 1;
}

.intro-section {
    margin-top: 0;
    margin-bottom: 70px;
}

.lead-text {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.description {
    font-size: 1rem;
    width: 100%;
    line-height: 1.5;
}

.competencies-grid {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin-bottom: 70px;
}

.category h2 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-weight: 700;
    margin-bottom: 6px;
}

.category p {
    font-size: 1rem;
    margin-bottom: 0px;
}

.tech-stack {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    padding-top: 4px;
    display: block;
    margin-top: -4px;
    color: #888;
}

.manifesto {
    margin: 60px 0;
    padding-left: 20px;
    border-left: 1px solid #ddd;
}

.manifesto p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 4px;
}

.manifesto strong {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 650px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 16px;
    background: transparent;
    box-sizing: border-box;
    color: inherit;
    font-family: 'Courier New', Courier, monospace;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-family: 'Courier New', Courier, monospace;
}

body.light-mode .contact-form input, 
body.light-mode .contact-form textarea {
    border-color: #333;
}

.consent-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 10px 0;
}

.consent-wrapper label {
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: normal;
    cursor: pointer;
    flex: 1;
}

.consent-wrapper input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.submit-btn {
    background: #eee;
    color: #111;
    border: none;
    padding: 12px 50px;
    border-radius: 10px;
    cursor: pointer;
    width: fit-content;
    font-weight: 500;
}

body.light-mode .submit-btn {
    background: #111;
    color: #fff;
}

body.light-mode .tech-stack {
    color: #444;
}

@media (max-width: 768px) {
    .contact-container {
        padding-top: 20px;
    }
    .intro-section {
        margin-top: 0;
    }
}