/* File: synergia-coming-soon_v1.4/css/style.css */

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 600px;
}

.logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 10px;
}

.title {
    font-size: 1.0rem;
    font-weight: 200;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #000000;
}

.subtitle {
    font-size: 1rem;
    font-weight: 100;
    line-height: 1.6;
    color: #666666;
}

.footer {
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #eeeeee;
    text-align: center;
}

.legal-info p {
    font-size: 0.75rem;
    color: #777777;
    line-height: 1.8;
}

.legal-info strong {
    color: #333333;
    font-weight: 600;
}

@media (max-width: 480px) {
    .title {
        font-size: 1.4rem;
    }
    .logo {
        max-width: 220px;
    }
    .legal-info p {
        font-size: 0.7rem;
    }
}
