:root {
    --text: #f4f0c7;
    --background: #151518;
    --primary: #c8ce27;
    --secondary: #f4f0c7;
    --accent: #753bff;
    --error: #ff4444;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
    font-family: "Inter", sans-serif;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

h1 {
    color: var(--primary);
    font-size: 5.5em;
    margin-bottom: 10px;
    line-height: 5rem;
}

.main-h1 {
    color: var(--primary);
    font-size: 10rem;
    margin-top: 20px;
    line-height: 6rem;
    font-family: "Inter", sans-serif;
}


h2 {
    color: var(--primary);
    font-size: 1.8em;
}

.content-section {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
}

.section-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.text-content {
    flex: 1;
    margin-right: 20px;
}

.card-image {
    padding-top: 40px;
    border-radius: 8px;
    
}

form {
    display: grid;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
}

input, select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text);
    transition: background-color 0.3s;
}

input:focus, select:focus {
    background-color: rgba(255, 255, 255, 0.2);
    outline: none;
}

button {
    background-color: var(--accent);
    color: var(--text);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s, transform 0.1s;
}

button:hover {
    background-color: #8f5cff;
}

button:active {
    transform: scale(0.98);
}

.checkbox-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.checkbox-column {
    flex: 1;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
}

.error-message {
    color: var(--error);
    font-size: 0.9em;
    margin-top: 5px;
}

input, select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text);
    transition: background-color 0.3s;
}

/* New rule for select element */
select {
    color: black;
    background-color: white;
}

select option {
    color: black;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: var(--background);
    margin: 15% auto;
    padding: 20px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
}

.feature-list, .offer-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li, .offer-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.feature-list li:before, .offer-list li:before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}