@font-face {
    font-family: 'Sofia Pro Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Sofia Pro Regular'), url('../fonts/Sofia Pro Regular Az.woff') format('woff');
    }

    @font-face {
    font-family: 'Sofia Pro Light';
    font-style: normal;
    font-weight: normal;
    src: local('Sofia Pro Light'), url('../fonts/Sofia Pro Light Az.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Sofia Pro Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Sofia Pro Medium'), url('../fonts/Sofia Pro Medium Az.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Sofia Pro Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Sofia Pro Bold'), url('../fonts/Sofia Pro Bold Az.woff') format('woff');
    }

/* General body styling */
body {
    font-family: 'Sofia Pro Regular', sans-serif!important;
    margin: 0!important;
    padding: 0;
}

a:hover{
    text-decoration: none!important;
}
/* Header styling */
.site-header {
    background-color: #F2CD00;
    padding: 20px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 15px;
}

.logo {
    flex-basis: 30%;
}

.site-title {
    margin: 0;
    font-size: 1.5em;
}

.site-title a {
    color: #000;
    text-decoration: none;
}

/* Navigation styling */
.main-navigation {
    flex-basis: 40%;
    text-align: center;
}

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

.main-navigation ul li {
    display: inline-block;
    margin: 0 15px;
}

.main-navigation ul li a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding-right: 10px;
}

/* Authentication links (login/signup) */
.auth-links {
    flex-basis: 30%;
    text-align: right;
}

.auth-links a {
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 25px;
    font-size: 1em;
    margin-left: 10px;
}

.login-btn {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #000;
    color: #fff;
}

.register-btn {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background-color: transparent;
    color: #000;
}
/* Header styling */
#masthead {
border-bottom: 2px solid #000;
}

.trial-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.trial-modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.trial-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.trial-close:hover,
.trial-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .main-navigation ul li {
        display: block;
        margin: 10px 0;
    }

    .auth-links {
        text-align: center;
        margin-top: 10px;
    }
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* footer css */
.site-footer {
    background-color: #101820;
    color: #fff;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo,
.footer-contact,
.footer-find-us,
.footer-social {
    flex: 1;
    margin: 0 20px;
    border-right: #2c3338 1px solid;
}

.footer-contact h3,
.footer-find-us h3,
.footer-social h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 500;
}


.footer-contact i,
.footer-find-us i,
.footer-social i {
    margin-right: 8px;
}

.footer-social p i {
    font-size: 1.2em;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #2c3338;
    padding: 10px 0;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 0.9em;
    color: #fff;
}

footer p {
    margin: 5px 0;
    color: #fff;
    font-size: 16px;
    padding-right: 10px;
    line-height: 27px;
}
footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #F2CD00;
}
footer a:visited {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo,
    .footer-contact,
    .footer-find-us,
    .footer-social {
        margin: 20px 0;
    }
}
