@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #e8f5e9 0%, #b2dfdb 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
}

.container {
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 150, 136, 0.1);
}

.company-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00897b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00897b 0%, #4db6ac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.footer-links {
    margin-top: 2rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: #00897b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #4db6ac;
}

.separator {
    margin: 0 1rem;
    color: #b2dfdb;
}

/* Legal pages specific styles */
.legal-content {
    text-align: left;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-text {
    color: #37474f;
    line-height: 1.6;
}

.legal-text h2 {
    font-size: 1.5rem;
    color: #00897b;
    margin: 2rem 0 1rem;
}

.legal-text p {
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .content {
        padding: 2rem 1rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-text h2 {
        font-size: 1.3rem;
    }
} 