body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #212121;
}

header {
    background: #1b0d03;
    color: #fff;
    padding: 1rem 2rem;
    text-align: center;
}

h1 {
    color: white;
    margin: 0;
    font-size: 2rem;
}

section {
    padding: 2rem;
}

h2 {
    color: rgb(66,66,66);
    border-bottom: 2px solid rgb(66,66,66);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

h3 {
    color: grey;
    margin-top: 1rem;
}

p {
    margin: 0.5rem 0;
}

.color-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.color-swatch {
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    margin-right: 1rem;
}

.color-info {
    line-height: 1.2;
}

.font-primary-regular {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.font-primary-bold {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.font-primary-italic {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
}

.font-secondary-regular {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.font-secondary-semibold {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.text-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #212121;
    line-height: 1.2;
}

.text-subheading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #FF6F00;
    line-height: 1.3;
}

.text-body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #212121;
    line-height: 1.6;
}

.text-blockquote {
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    color: #555;
    border-left: 4px solid #FFC107;
    padding-left: 1rem;
    margin: 1rem 0;
}

.primary-button, .secondary-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.primary-button {
    background: #FF6F00;
    color: #fff;
}

.secondary-button {
    background: #E65100;
    color: #fff;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav li {
    display: inline;
    margin-right: 1rem;
}

nav a {
    text-decoration: none;
    color: #212121;
}

.card {
    padding: 1rem;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
    background: #FFF;
}

input[type="text"] {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
}

label {
    display: block;
    margin-top: 1rem;
}

blockquote {
    border-left: 4px solid #FFC107;
    padding-left: 1rem;
    color: #555;
    font-style: italic;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #F5F5F5;
    color: #212121;
}
