/* Carbon Spark Global CSS Reset and Base Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #313131;
    overflow-x: hidden;
    width: 100%;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Color Palette */
:root {
    --primary-navy: #1a2b4c;
    --off-white: #F8F9FA;
    --accent-green: #22c55e;
    --accent-orange: #ff6b35;
    --text-dark: #313131;
    --text-light: #5e6670;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Buttons base styles */
button {
    font-family: inherit;
    cursor: pointer;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
}

p {
    line-height: 1.6;
}

/* Container utilities */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 50px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Section spacing */
section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
}
