/* --- Global Styles & Resets --- */
:root {
    --background: #101010;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --accent: #ff8c00; /* Main Orange */
    --accent-secondary: #fbbf24; /* Yellow-Gold from image */
    --card-background: #1c1c1c;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    display: flex;
    flex-direction: column; /* <<< UPDATED to stack main and footer */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* --- Main Content Container --- */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

/* --- Components --- */
.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, var(--accent), #e67e00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin: -16px 0 0 0;
    color: var(--accent-secondary);
}

.description {
    max-width: 500px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* --- Articles Section Styling --- */
.articles-section {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.articles-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--accent-secondary);
}

/* --- Card Styling (for articles) --- */
.card {
    background-color: var(--card-background);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.03);
    background-color: var(--accent);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.7);
}

.card-icon {
    font-size: 36px;
    transition: color 0.3s ease;
}

.card-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.card-text strong {
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-text span {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.card:hover .card-text strong, .card:hover .card-icon {
    color: #ffffff;
}

.card:hover .card-text span {
    color: rgba(255, 255, 255, 0.8);
}

/* --- Contact Button --- */
.contact-button {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--accent-secondary);
    color: var(--background);
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-button:hover {
    transform: translateY(-3px);
    background-color: #ffd700;
}

.button-icon {
    font-size: 20px;
}

/* --- NEW FOOTER STYLES --- */
footer {
    margin-top: 48px; /* Give it some space from the contact button */
    padding: 20px;
}

footer p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
}
/* --- End of New Styles --- */

/* --- Responsive Adjustments --- */
@media (max-width: 600px) {
    h1 { font-size: 36px; }
    h2 { font-size: 20px; }
}