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

body {
    font-family: var(--font-text);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background: var(--light-gray);
    color: var(--dark-gray);
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    margin-top: 0;
}

p {
    margin: 0 0 1em 0;
}

a {
    color: var(--alpine-blue);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--alpine-blue-dark);
    text-decoration: underline;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.btn-primary {
    background-color: var(--alpine-blue);
    color: var(--white);
}

.btn-secondary {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--alpine-blue);
    color: var(--alpine-blue);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--alpine-blue);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-2px);
}

