﻿body {
    font-family: 'SF Pro Text', sans-serif;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'SF Pro Display', sans-serif;
    color: #0070c9;
}

a {
    color: #0070c9;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

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

.button {
    display: inline-block;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    background-color: #0070c9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

    .button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
    }
