/* --- CSS Variables for Theme Colors --- */
:root {
    --primary-color: #800020; /* Deep Burgundy */
    --accent-color: #D4AF37; /* Gold */
    --dark-bg: #2c2c2c; /* Dark Charcoal */
    --light-bg: #f8f9fa;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-muted: #6c757d;
    --border-color: #dddddd;
}

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

*::selection {
    background: var(--accent-color);
    color: var(--text-dark);
}

*::-moz-selection {
    background: var(--accent-color);
    color: var(--text-dark);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 16px;
}

.container {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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

/* --- Section Styles --- */
.section {
    padding: 2.5rem 0;
}

.section.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    background: none !important;
    color: var(--text-dark) !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.section-title p {
    background: none !important;
    color: var(--text-muted) !important;
}

/* --- Responsive Design --- */
@media (max-width: 767px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    
    .container {
        width: 95%;
    }
    
    .section {
        padding: 1.5rem 0;
    }
}