@font-face {
    font-family: 'Avenir';
    /* Path to your fonts folder */
    src: url('fonts/Avenir.ttc') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Anton';
    /* Make sure the path matches your folder structure */
    src: url('fonts/Anton-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --skyblue: #3b4cf9;
    --blue: #0009b1;
    --orange: #fe6702;
    --cream: #ffefdb;
    --black: #000000
}

body {
    font-family: 'Avenir', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--cream);
}

.header {
    text-align: center;
    margin-bottom: 60px;
}

.section {
    padding: 35px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--blue);
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    margin: 0;
}

.section-subtitle {
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: none;
    /* display: block; */
    margin-bottom: 10px;
}