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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #2F3E46;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

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

.beta-label {
    background: none;
    color: #FF914D;
    font-size: 0.5rem;
    font-weight: 700;
    position: absolute;
    top: 5px;
    right: -30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    position: relative;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #FF914D;
}

.cta-btn {
    background: #FF914D;
    color: #FFFFFF !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.main {
    padding: 120px 0 60px;
    min-height: calc(100vh - 300px);
}

h1 {
    font-size: 2.5rem;
    color: #2F3E46;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.last-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

section {
    margin-bottom: 2rem;
}

h2 {
    font-size: 1.5rem;
    color: #2F3E46;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.1rem;
    color: #2F3E46;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #444;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
    color: #444;
}

a {
    color: #FF914D;
}

a:hover {
    text-decoration: underline;
}

.footer {
    background: #2F3E46;
    padding: 4rem 0 2rem;
}

.footer .container {
    max-width: 1200px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    margin-left: 35px;
}

.footer-logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    position: relative;
}

.footer-logo-image {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-beta-label {
    background: none;
    color: #FF914D;
    font-size: 0.5rem;
    font-weight: 700;
    position: absolute;
    top: 6px;
    right: -30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-brand {
    text-align: center;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-size: 1rem;
}

.footer-links-simple {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links-simple a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links-simple a:hover {
    color: #FF914D;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #FF914D;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .footer-links-simple {
        gap: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
