@font-face {
    font-family: 'Cooper Hewitt';
    src: url('https:fonts.com/css/cooper-hewitt');
    font-weight: 700;
    font-style: normal;
}
:root {
    --primary-color: #1a237e;
    --secondary-color: #0d47a1;
    --button-color: #E23E4E;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
}

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

body {
    font-family: 'cooper hewitt';
    line-height: 1.6;
    color: var(--text-color);
}

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

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--button-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #c82333;
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: left;
    padding: 20px 0;
}