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

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #201f1e;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

header {
    padding: 32px 0 32px 0;
    border-bottom: 1px solid #edebe9;
}

header h1 {
    font-size: 1.75rem;
    color: #0078d4;
    font-weight: 600;
    letter-spacing: 0;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0 40px 0;
}

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

.content h2 {
    font-size: 2.5rem;
    color: #201f1e;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.content > p {
    font-size: 1.125rem;
    color: #605e5c;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact h3 {
    font-size: 1rem;
    color: #605e5c;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact p {
    color: #605e5c;
    margin-bottom: 12px;
    font-size: 1rem;
}

.email {
    display: inline-block;
    color: #0078d4;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.email:hover {
    color: #106ebe;
    text-decoration: underline;
}

footer {
    padding: 32px 0;
    border-top: 1px solid #edebe9;
    margin-top: auto;
}

footer p {
    color: #8a8886;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    header {
        padding: 24px 0 24px 0;
    }
    
    main {
        padding: 32px 0 32px 0;
    }
    
    .content h2 {
        font-size: 2rem;
    }
    
    .content > p {
        font-size: 1rem;
    }
}