/* Version6 AB - Static Website Styles */

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    width: 100%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

main {
    padding: 3rem 2rem;
    text-align: center;
}

.message {
    max-width: 600px;
    margin: 0 auto;
}

.message h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.message p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1.5rem;
    }

    header h1 {
        font-size: 2rem;
    }

    main {
        padding: 2rem 1.5rem;
    }

    .message h2 {
        font-size: 1.5rem;
    }

    .message p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }

    header h1 {
        font-size: 1.8rem;
    }

    main {
        padding: 1.5rem 1rem;
    }

    .message h2 {
        font-size: 1.3rem;
    }

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