body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
        monospace;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* footer section */
.footer {
    background-color: #232323;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

/* Footer Links */
.footer a {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #00A8E8;
}

/* Footer Titles */
.footer strong {
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

/* Footer List */
.l-ul {
    list-style: none;
    padding-left: 0;
}

.l-items {
    margin-bottom: 8px;
}

/* Social Media Icons */
.social-media-list {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    justify-content: center;
    margin-top: 10px;
}

.social-lists i {
    font-size: 18px;
    margin-right: 8px;
}

/* Divider Line */
.footer hr {
    border-color: #555;
    margin: 20px 0;
}

/* Footer Bottom Text */
.footer p {
    text-align: center;
    margin: 0;
    color: #cfcfcf;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer .col-md-3 {
        margin-bottom: 20px;
        text-align: center;
    }
}

/* end of footer section */