.page-title {
    margin-top: 40px;
    text-align: center;
}

.page-title hr {
    justify-self: center;
}

.page-description {
    text-align: center;
    margin: 50px;
    padding: 0 120px;
    color: #dfe2e8;
    font-size: 18px;
    line-height: 1.5;
}

.bottom-note {
    display: block;
    text-align: center;
    margin: 40px;
    color: #dfe2e8;
    line-height: 1.5;
    font-size: 14px;
    font-style: italic;
}

.bottom-note a {
    font-size: 14px;
}

.table-separator {
    width: 100%;
    background-color: gray;
    height: 1px;
}

.link-wrapper {
    margin-top: 30px;
}

.btn {
    margin-top: 20px;
    margin-bottom: 5px;
    border: none;
    padding: 15px 35px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.btn-primary {
    background-color: #2ea1b1;
    color: white;
    box-shadow: 0 4px 0 #1e7a8c;
}

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

.btn-secondary {
    background-color: #e6e6e6;
    color: rgb(46, 46, 46);
    box-shadow: 0 4px 0 #bebebe;
    padding: 12px 35px;
}

.btn-secondary:hover {
    background-color: #bebebe;
}

a {
    color: #2ea1b1;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

a:hover {
    color: #1e7a8c;
    transition: 0.3s;
}

h2 {
    margin: 0;
    font-size: 47px;
    color: white;
}

h3 {
    margin: 0;
    font-size: 30px;
    color: white;
}

h4 {
    color: rgb(150, 150, 150);
    font-size: 22px;
    text-align: center;
}

hr {
    border: 0;
    height: 2px;
    background: #2ea1b1;
    margin: 20px 0;
    width: 70px;
}

img {
    object-fit: cover;
    width: 500px;
    height: 500px;
    border-radius: 5px;
}

@media (max-width: 1080px) {
    .page-description {
        padding: 0px;
        margin: 50px 0;
    }

    h2 {
        font-size: 34px;
    }

    h3 {
        font-size: 25px;
    }
}