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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #4D4E4D;
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    width: 100%;
}

.logo-wrapper {
    margin-bottom: 32px;
}

.logo {
    height: 128px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.company-name {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.company-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    font-weight: normal;
}

.contact-info {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #FFFFFF;
}

.contact-info p {
    margin: 4px 0;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-button {
    display: block;
    padding: 12px 16px;
    background-color: #C4232A;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.contact-button:hover {
    background-color: #A01A20;
}

.contact-button:active {
    background-color: #8B1419;
}

.footer-links {
    font-size: 14px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.footer-links span {
    color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 640px) {
    .company-name {
        font-size: 24px;
    }

    .company-subtitle {
        font-size: 16px;
    }

    .contact-info {
        font-size: 14px;
    }

    .logo {
        height: 100px;
    }
}

a {
    color: white;
}


.notice {
    /*background-color: rgba(196, 35, 42, 0.15);*/
    /*border-left: 4px solid #C4232A;*/
    padding: 16px 16px;
    margin: 24px 0;
    border-radius: 4px;
}

.notice p {
    font-size: 22px;
    line-height: 1.6;
    color: #E8E8E8;
    margin: 0;
    font-style: italic;
}
