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

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    background: #000000;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
}


body > * {
    position: relative;
    z-index: 1;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem 2rem;
    flex: 1;
    margin-top: 0;
    padding-top: 0;
}

.logo-header {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 0;
}

.logo-header a {
    display: inline-block;
    text-decoration: none;
}

.logo-header img {
    display: block;
    width: 300px;
    height: 300px;
    max-width: 300px;
    max-height: 300px;
    object-fit: contain;
    margin: 0 auto;
}

.content {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.8;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    color: #cccccc;
    line-height: 1.8;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section h1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: left;
}

.content-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #ffffff;
    text-align: left;
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.content-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    text-align: left;
}

.content-section li {
    margin-bottom: 0.75rem;
}

.section-divider {
    border: none;
    border-top: 1px solid #333333;
    margin: 3rem 0;
}

/* Mobile styles */
@media (max-width: 768px) {
    .page-container {
        padding: 0 1.5rem 2rem 1.5rem;
    }
    
    .logo-header {
        margin-bottom: 0.75rem;
        margin-top: 0;
    }

    .logo-header img {
        width: 200px;
        height: 200px;
        max-width: 200px;
        max-height: 200px;
    }

    .content {
        font-size: 1.25rem;
    }

    .content-container {
        text-align: left;
    }

    .content-section h1 {
        font-size: 1.4rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 0 1rem 1.5rem 1rem;
    }
    
    .logo-header {
        margin-bottom: 0.5rem;
        margin-top: 0;
    }

    .logo-header img {
        width: 150px;
        height: 150px;
        max-width: 150px;
        max-height: 150px;
    }

    .content {
        font-size: 1.1rem;
    }

    .content-section h1 {
        font-size: 1.25rem;
    }

    .content-section h2 {
        font-size: 1.25rem;
    }

    .content-section p {
        font-size: 0.95rem;
    }
}

.site-footer {
    border-top: 1px solid #333333;
    margin-top: 4rem;
    padding: 2rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: #cccccc;
    font-size: 0.9rem;
}

/* Mobile footer styles */
@media (max-width: 768px) {
    .site-footer {
        margin-top: 3rem;
        padding: 1.5rem 0;
    }

    .footer-content {
        padding: 0 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        margin-top: 2rem;
        padding: 1rem 0;
    }

    .footer-content {
        padding: 0 1rem;
        font-size: 0.8rem;
    }
}

