@font-face {
    font-family: 'Maharlika';
    src: url('Maharlika-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Maharlika', 'Garamond', 'Georgia', serif;
    background: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.logo-container {
    text-align: center;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.container {
    background: #000000;
    border: 2px solid #d4c5b0;
    border-radius: 0;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 30px rgba(212, 197, 176, 0.3);
}

.container.wide {
    max-width: 800px;
}

h1 {
    color: #d4c5b0;
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h2 {
    color: #d4c5b0;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
}

p {
    color: #d4c5b0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.subtitle {
    color: #d4c5b0;
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
}

.contact-info {
    color: #d4c5b0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

a {
    color: #d4c5b0;
    text-decoration: underline;
}

a:hover {
    color: #ffffff;
}

.form-group {
    margin-bottom: 30px;
}

label {
    display: block;
    color: #d4c5b0;
    font-weight: 300;
    margin-bottom: 8px;
    font-size: 16px;
    letter-spacing: 1px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    color: #d4c5b0;
    font-size: 14px;
    line-height: 1.6;
}

input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d4c5b0;
    border-radius: 0;
    font-size: 16px;
    background: #1a1a1a;
    color: #d4c5b0;
    transition: border-color 0.3s, background 0.3s;
    font-family: 'Maharlika', 'Garamond', 'Georgia', serif;
}

input::placeholder {
    color: #6b6455;
}

input:focus {
    outline: none;
    border-color: #ffffff;
    background: #0a0a0a;
}

.required {
    color: #c8102e;
}

.info-text {
    font-size: 12px;
    color: #6b6455;
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #d4c5b0;
    color: #000000;
    border: none;
    border-radius: 0;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Maharlika', 'Garamond', 'Georgia', serif;
}

.submit-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.success-message {
    display: none;
    text-align: center;
    padding: 20px;
}

.success-message.show {
    display: block;
}

.success-icon {
    font-size: 60px;
    color: #d4c5b0;
    margin-bottom: 20px;
}

.success-text {
    color: #d4c5b0;
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.success-subtext {
    color: #6b6455;
    font-size: 14px;
    font-style: italic;
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 22px;
        letter-spacing: 1px;
        word-wrap: break-word;
    }

    h2 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }
}