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

body {
    background-color: #222F3F;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    width: 100%;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    flex: 1;
    justify-content: center;
}

.logo-svg {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.company-name {
    font-size: 46px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 14px;
    margin: 0;
}

.contact-link {
    margin-bottom: 20px;
}

.contact-link a {
    font-size: 16px;
    color: #C0C0C0;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s ease;
}

.contact-link a:hover {
    opacity: 0.8;
}

.arrow {
    font-size: 14px;
}

.footer {
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright {
    font-size: 15px;
    color: #C0C0C0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #222F3F;
    padding: 40px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    position: relative;
    border: 1px solid #ffffff;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
}

.modal-content h2 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 400;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.email-form input[type="email"] {
    padding: 12px 15px;
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    border-radius: 4px;
}

.email-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-form input[type="email"]:focus {
    border-color: #ffffff;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.submit-button {
    padding: 12px 24px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.submit-button:hover {
    background-color: #ffffff;
    color: #222F3F;
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .logo-svg {
        width: 160px;
    }
    
    .company-name {
        font-size: 34px;
        letter-spacing: 10px;
    }
    
    .contact-link a {
        font-size: 15px;
    }
    
    .copyright {
        font-size: 14px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}
