:root {
    /* Fresh Ecru Palette */
    --bg-color: #fcf9f2; /* Professional Ecru */
    --text-color: #000000;
    --text-muted: #444444;
    --primary-color: #2563eb; 
    --accent-color: #3b82f6;
    --secondary-bg: #ffffff;
    --border-color: #d1d5db;
    --card-shadow: 0 1px 3px rgba(0,0,0,0.1);
    --card-hover-shadow: 0 10px 30px rgba(0,0,0,0.1);
    
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Background Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23000000' fill-opacity='0.05' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    pointer-events: none;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    letter-spacing: -0.05em;
    color: #000;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #000; /* Solid Black Buttons */
    color: white;
    border-radius: 4px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn:hover {
    transform: translateY(-2px);
    background-color: #222;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #000;
    color: #000;
}

.btn-outline:hover {
    background-color: #000;
    color: #fff;
}


