:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #f4f5f6;
    --text-color: #333333;
    --spacing-unit: 1rem;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

header {
    background-color: var(--secondary-color); /* Changed from primary-color to secondary-color (white) */
    color: var(--primary-color); /* Changed from secondary-color to primary-color (black) */
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

#header-logo {
    display: inline-block;
    background-color: white;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 2rem;
    max-width: 100%;
}

#header-logo img {
    display: block;
    width: 450px;
    height: auto;
    max-width: 100%;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 1rem auto;
}

section {
    padding: 4rem 0;
}

.about {
    background-color: #f8f9fa;  /* Light gray background */
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1rem;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background-color: #333;
}

.details {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hidden {
    display: none;
}

.contact {
    background-color: var(--accent-color);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

footer {
    background-color: #080d17; /* Darker blue/black from your logo */
    color: var(--secondary-color);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

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

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Divider styling */
.divider {
    height: 4px;
    background: linear-gradient(90deg, #000 0%, #333 100%);
    width: 100%;
}

/* New styles for confirmation message */
.confirmation-message {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.confirmation-message p {
    margin-bottom: 0.5rem;
}

.direct-contact {
    text-align: center;
    margin-top: 2rem;
}

.direct-contact a {
    color: inherit;
    text-decoration: none;
}

.direct-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
}