/* Variables */
:root {
    --primary-color: #5555ff; 
    --text-color-light: #f4f4f4;
    --text-color-dark: #333;
    --background-color: #0d1117; 
}

/* Global Styles & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- UPDATED HEADER & LOGO STYLES --- */
header {
    /* Increased top padding (padding-top) to roughly 1 inch */
    padding: 150px 40px 20px 40px; 
    display: flex;
    justify-content: center; 
}

.logo {
    /* Increased max-height: 35px * 2.5 = 87.5px */
    max-height: 87.5px; 
    width: auto;
    display: block; 
}
/* -------------------------------------- */


/* Hero Section */
.hero-section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Adjusted padding if needed, but keeping margin auto for centering */
    padding: 20px 20px 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.content {
    margin-bottom: 50px;
}

h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #aaa; 
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: background-color 0.3s;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(85, 85, 255, 0.4);
}

.cta-button:hover {
    background-color: #7777ff; 
}

/* Graphic Placeholder (for the Multi-CDN/DNS Image) */
.graphic-placeholder {
    max-width: 90%;
    margin-top: 50px;
}

/* Footer */
footer {
    padding: 20px 0;
    text-align: center;
    font-size: 0.8em;
    border-top: 1px solid #333;
    color: #666;
}