/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: radial-gradient(circle at center 30%, #383838, #1d1d1d, #000000);
    
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30px;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

/* Header Styles */
.header {
    background-color: transparent;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    height: max-content;
    max-height: 800px;
    border-radius: 8px;
    object-fit: contain;
}

.header-text {
    flex: 0 1 auto;
}

.header-text p {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
}



/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .header {
        padding: 30px 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        height: 600px;
    }

    .header-text p {
        font-size: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px 10px;
    }

    .header-content {
        gap: 10px;
    }

    .logo {
        height: 400px;
    }

    .header-text p {
        font-size: 11px;
    }
}
