:root {
    --primary-orange: #ff7849;
    --text-color: #2c3e50;
    --background-color: #ffffff;
}

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.motto {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.location-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.description {
    margin-bottom: 2.5rem;
    text-align: left;
}

.description p {
    margin-bottom: 1rem;
}

.cta-button {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    margin-bottom: 2rem;
}

.cta-button:hover {
    background-color: #e66a3e;
    transform: translateY(-2px);
}

.dont-show {
    font-size: 0.9rem;
}

.checkbox-container {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
    margin-right: 8px;
    transition: background-color 0.2s;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-orange);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

@media (max-width: 768px) {
    .content {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .motto {
        font-size: 1.1rem;
    }

    .location-text {
        font-size: 1rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
    }
}