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

/* Body and Overall Layout */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f8f8;
    color: #1a1a1a;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* Main Container */
.container {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.logo-placeholder {
    width: 48px;
    background-color: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    flex-shrink: 0;
    /* This is a placeholder - replace with your actual logo image */
}

.logo-image {
    width: 80%;
    height: auto;
    flex-shrink: 0;
}

.brand-name {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

/* Content Section */
.content {
    margin-bottom: 4rem;
}

.headline {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.headline strong {
    color: #1a1a1a;
    font-weight: 600;
}

.description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.description strong {
    color: #1a1a1a;
    font-weight: 600;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.cta-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #16213e;
    color: #ffffff;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    cursor: pointer;
}

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

.cta-button:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    padding-top: 2rem;
}

.footer-text {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.5;
}

.footer-text a {
    color: #666666;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer-text a:hover {
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 640px) {
    body {
        padding: 1.5rem 1rem;
    }

    .logo-section {
        margin-bottom: 2rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .logo-placeholder,
    .logo-image {
        width: 40px;
        height: 40px;
    }

    .headline,
    .description,
    .cta-text {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .content {
        margin-bottom: 3rem;
    }

    .footer-text {
        font-size: 0.8125rem;
    }
}
