:root {
    --primary-bg: #20404a; 
    --secondary-bg: #f5f3ef; 
    --text-light: #ffffff;
    --text-dark: #111111;
    --font-main: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--primary-bg);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}

.hero-section {
    padding: 4rem 1.5rem 3rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    margin-bottom: 3.5rem;
}

.logo-icon {
    width: 240px;
    height: auto;
    margin-bottom: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.logo-text {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.logo-text span {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.main-headline {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.hero-subtext {
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.inquiries-section-container {
    width: 100%;
    padding: 0 5%;
    display: flex;
    justify-content: center;
}

.inquiries-section {
    background-color: var(--secondary-bg);
    color: var(--text-dark);
    padding: 3.5rem 2rem;
    width: 100%;
    max-width: 1000px;
}

.inquiries-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.inquiries-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.email-link {
    color: var(--primary-bg);
    font-size: 2.2rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.3s ease;
    word-break: break-all;
}

.email-link:hover {
    opacity: 0.8;
}

.footer {
    padding: 1.5rem;
    background-color: var(--primary-bg);
    font-size: 0.85rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }
    
    .hero-subtext br {
        display: none;
    }

    .inquiries-section-container {
        padding: 0;
    }
    
    .inquiries-section {
        padding: 3rem 1.5rem;
    }

    .email-link {
        font-size: 1.5rem;
    }
}
