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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0056b9;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 40px 20px;
}

main {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 60px;
}

.divider {
    width: 80px;
    height: 3px;
    background: #FDB913;
    margin: 50px auto;
}

.messages {
    margin: 50px 0;
}

.message {
    color: #fff;
    font-size: 1.1em;
    line-height: 1.8;
    margin: 30px 0;
    font-weight: 300;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.message:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact {
    margin-top: 50px;
}

.company {
    color: #FDB913;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact p {
    color: #FDB913;
    font-size: 1em;
    margin: 10px 0;
}

.contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #FDB913;
}

@media (max-width: 768px) {
    .logo {
        max-width: 350px;
        margin-bottom: 40px;
    }
    
    .message {
        font-size: 1em;
        margin: 25px 0;
    }
    
    .divider {
        margin: 40px auto;
    }
    
    .company {
        font-size: 1.1em;
    }
    
    .contact p {
        font-size: 0.95em;
    }
}
