body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    color: #1f4c8c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
    /* position: sticky;  Removed sticky per user request */
    /* top: 0; */
    z-index: 1000;
}

.header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    height: 50px;
}

.header__link {
    margin-left: 20px;
    font-weight: 600;
    color: #333;
}

.header__link:hover {
    color: #1f4c8c;
}

.main-page {
    padding: 40px 0;
    min-height: 80vh;
}

h1, h2, h3 {
    color: #2c3e50;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #1f4c8c;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #163a6e;
    text-decoration: none;
}

/* Add more specific styles as needed */
