/* base.css */

body {
    font-family: 'Inter', sans-serif;
    color: #2B2B2B; /* Dark Charcoal */
    background-color: #FFFFFF; /* White */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #2B2B2B;
}

a {
    color: #3B82F6; /* Cool Blue */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    line-height: 1.6;
}

button, .cta {
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}