:root {
    --color-blue: #2A4592;
    /* Deep Royal Blue */
    --color-red: #E31E24;
    /* Vibrant Red */
    --color-text: #333333;
    --color-bg: #F5F7FA;
    --font-main: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    /* Closest free match to the logo font */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    padding: 2rem;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.content {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Styling */
.logo-img {
    max-width: 100%;
    width: 300px;
    /* Adjust based on actual image aspect ratio */
    height: auto;
    margin-bottom: 2rem;
    display: inline-block;
}

/* Typography */
.main-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.divider {
    height: 2px;
    width: 60px;
    background: linear-gradient(to right, var(--color-blue), var(--color-red));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    color: #444;
}

.contact-placeholder {
    margin-top: 2rem;
}

.contact-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-red);
}

/* Responsive */
@media (max-width: 600px) {
    .logo {
        font-size: 3.5rem;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .content {
        padding: 2rem 1.5rem;
    }
}