/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0A0F1C;
    background: #F9FAFB;
}

/* Header banner */
.header-banner {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: #0A0F1C;
    margin-bottom: 2rem;
}

.logo-section {
    flex: 0 0 auto;
    margin-right: 2rem;
}

.logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.title-section {
    flex: 1;
}

.site-title {
    color: #F9FAFB;
    font-size: 2.2rem;
    margin: 0;
    text-align: left;
    font-weight: bold;
}

/* Landing page layout */
.landing-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0A0F1C;
    text-align: center;
}

h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    color: #1F2937;
}

h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem 0;
    color: #0A0F1C;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

strong {
    color: #0A0F1C;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Lists */
ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 3rem 0 2rem 0;
    padding: 2rem;
    background: #0A0F1C;
    border-radius: 12px;
}

.cta-button {
    background: #F9FAFB;
    color: #3B82F6;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Contact Form Modal */
.contact-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.contact-form.hidden {
    display: none;
}

.form-overlay {
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.close-form {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.close-form:hover {
    color: #333;
}

.form-container h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.form-container input:focus,
.form-container textarea:focus {
    outline: none;
    border-color: #3B82F6;
}

.form-container button[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, #3B82F6 0%, #764ba2 100%);
    color: #F9FAFB;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-container button[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Choice Popup Styles */
.choice-container {
    text-align: center;
    max-width: 400px;
}

.choice-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.choice-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid #0A0F1C;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #0A0F1C;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.choice-btn:hover {
    background: #0A0F1C;
    color: #ffffff;
    transform: translateY(-2px);
}

.choice-btn:hover strong,
.choice-btn:hover span {
    color: #ffffff;
}

.choice-btn.primary {
    border-color: #0A0F1C;
}

.choice-btn.secondary {
    border-color: #1F2937;
}

.choice-btn.secondary:hover {
    background: #1F2937;
    color: #ffffff;
}

.choice-btn.secondary:hover strong,
.choice-btn.secondary:hover span {
    color: #ffffff;
}

.choice-btn strong {
    font-size: 1.1em;
    margin-bottom: 0.5rem;
}

.choice-btn span {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .header-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .logo-section {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .site-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .landing-page {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .form-container {
        margin: 1rem;
    }
}

@media (min-width: 768px) {
    .choice-buttons {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .choice-btn {
        flex: 1;
        margin: 0 0.5rem;
    }
}