﻿/*Header Styling*/
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

@media (max-width: 768px) {
    .logo img {
        max-height: 40px;
    }
}
/*Footer Styling*/
.site-footer {
    background: transparent;
    color: #333;
    padding: 2rem 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem 0;
    }

    .copyright p {
        font-size: 0.8rem;
    }
}
