:root {
    --primary-color: #f5f5dc;
    --secondary-color: #2a2a2a;
    --accent-color: #666;
    --text-light: #f0f0f0;
    --text-dark: #000;
    --background-dark: #000000;
    --background-light: #1a1a1a;
    --border-color: #333;
}

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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--text-light);
    min-height: 95vh;
    margin: 0;
}

.container,
form {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    margin: 20px auto;
    position: relative;
    z-index: 2;
    color: var(--text-light);
    border: 1px solid;
}

h2,
h3 {
    text-align: center;
    color: var(--primary-color);
}

button {
    background: var(--primary-color);
    color: var(--text-dark);
    border: none;
    padding: 12px 22px;
    margin: 10px 5px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

button:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3);
}

input,
textarea,
select {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 30px;
    background: #222;
    color: #fff;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
    color: #888;
}

input.error,
textarea.error,
select.error {
    border-color: red;
}

.step {
    display: none;
}

.step.active {
    display: block;
}


/* Hero Section */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-img.jpeg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1rem;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(245, 245, 220, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(245, 245, 220, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 44%;
}

.btn-primary-hero {
    background: var(--primary-color);
    color: var(--text-dark);
}

.btn-primary-hero:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 245, 220, 0.3);
}

.btn-secondary-hero {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary-hero:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 1rem !important;
    }

    button,
    .btn-hero {
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
    }

    h1.hero-title {
        font-size: 2rem !important;
    }

    h2,
    h3 {
        font-size: 1.2rem !important;
    }
}

.site-footer {
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    padding: 20px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    margin-top: 40px;
    border-radius: 12px 12px 0 0;
	z-index: 1;
	width: 100%;
}

.site-footer a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .site-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .site-footer a {
        margin: 0 10px;
    }
}

