/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Asap', sans-serif;
    color: #ffffff;
    background-color: #212230;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background Image Setup */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Fallback for larger screens */
@media (min-width: 1921px) {
    body::before {
        background-size: contain;
        background-position: center top;
    }
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px;
    position: relative;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    gap: 160px;
    max-width: 1400px;
    width: 100%;
    align-items: flex-start;
    margin-left: 40px;
}

/* Left Column */
.left-column {
    flex: 1;
    max-width: 720px;
    padding-top: 0;
}

/* Headline Group */
.headline-group {
    margin-bottom: 60px;
}

.headline-top,
.headline-bottom {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.headline-top {
    margin-bottom: 40px;
}

.headline-bottom {
    margin-bottom: 0;
}

/* Intro Text */
.intro-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Description */
.description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #ffffff;
}

.subtext {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.85;
}

/* Right Column - Form */
.right-column {
    width: 360px;
    position: absolute;
    bottom: 80px; /* Same distance from bottom as logo */
    right: 180px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

/* Name Fields Styling */
.contact-form .name-fields {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px;
    width: 100%;
}

.name-fields input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Asap', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.name-fields input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.name-fields input:focus {
    outline: none;
    border-color: #6da6c5;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Turnstile Widget Styling */
.cf-turnstile {
    margin: 4px 0;
    display: flex;
    justify-content: center;
}

.contact-form input {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Asap', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus {
    outline: none;
    border-color: #6da6c5;
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-form button {
    padding: 12px 24px;
    background-color: #6da6c5;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Asap', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form button:hover {
    background-color: #808080;
}

.contact-form button:active {
    background-color: #ffffff;
    color: #212230;
}

/* Logo */
.logo-container {
    position: absolute;
    bottom: 40px;
    left: 80px;
}

.logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

/* Copyright */
.copyright {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-family: 'Asap', sans-serif;
    font-size: 10px;
    color: #888888;
    opacity: 0.8;
}

/* Thank You Message */
.thank-you-message {
    background-color: rgba(33, 34, 48, 0.85);
    padding: 30px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Asap', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
}

.thank-you-message p {
    margin: 0;
}

.thank-you-message a {
    color: #6da6c5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.thank-you-message a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Form Intro Text */
.form-intro {
    font-family: 'Asap', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-wrapper {
        gap: 120px;
    }
    
    .right-column {
        right: 80px;
        width: 320px;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 30px;
    }
    
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
        margin-left: 0;
    }
    
    .left-column {
        padding-top: 20px;
    }
    
    .right-column {
        position: relative;
        bottom: auto;
        right: auto;
        flex: 1;
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
        padding-top: 0;
        padding-bottom: 80px;
    }
    
    .headline-group {
        margin-bottom: 40px;
    }
    
    .headline-top,
    .headline-bottom {
        font-size: 42px;
    }
    
    .headline-top {
        margin-bottom: 30px;
    }
    
    .intro-text {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .description {
        font-size: 18px;
    }
    
    .subtext {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 20px;
    }
    
    .content-wrapper {
        gap: 30px;
    }
    
    .headline-group {
        margin-bottom: 30px;
    }
    
    .headline-top,
    .headline-bottom {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .headline-top {
        margin-bottom: 20px;
    }
    
    .intro-text {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .subtext {
        font-size: 16px;
    }
    
    .logo-container {
        bottom: 20px;
        left: 20px;
    }
    
    .logo {
        height: 30px;
    }
    
    .copyright {
        display: none;
    }
    
    .contact-form input,
    .contact-form button {
        padding: 10px 14px;
        font-size: 14px;
    }
}