@font-face {
    font-family: 'Segoe UI Fallback';
    src: local('Segoe UI'), local('Arial'), local('sans-serif');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-display: swap;
    background: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    padding-top: 0;
}

.container {
    max-width: 800px;
    background: white;
    padding: 0px 40px;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 40px;
    min-height: 451px;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    display: block;
}


h1 {
    color: #555;
    font-size: 2.0em;
    font-weight: 200;
    margin-bottom: 15px;
}

.tagline {
    color: #764ba2;
    font-size: 2.2em;
    font-weight: 300;
    margin-bottom: 20px;
}

.description {
    color: #555;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 0.9em;
}

.contact {
    margin: 20px 0;
    font-size: 1.1em;
    color: #555;
}

.email-link {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    pointer-events: none;
    cursor: default;
    min-width: 200px;
    display: inline-block;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    .tagline {
        font-size: 1.1em;
    }
    
    .logo {
        max-width: 80%;
    }
    
    .logo-container {
        min-height: auto;
    }
}
