/* --- General Setup --- */
:root {
    --background-color: #f8f9fa;
    --text-color: #212529;
    --accent-color: #007bff;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
}

/* --- Content Container & Animation --- */
.container {
    max-width: 600px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Typography & Elements --- */
h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 0.75rem;
}

p {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.6;
    color: #495057;
    margin-bottom: 2rem;
}

.contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 400;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.contact a:hover {
    border-color: var(--accent-color);
}

