/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Header Styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.header-left .logo img {
    height: 60px;
    max-width: 100%;
}

.header-center nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
}

.header-center nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #ed0e03;
    font-weight: bold;
    font-size: 1rem;
}

.header-center nav a:hover {
    text-decoration: underline;
}

/* Responsive Header */
@media (max-width: 768px) {
    .header {
        padding: 5px;
        flex-direction: column;
        align-items: center;
    }

    .header-center nav {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .header-center nav a {
        font-size: 0.8rem;
        margin: 5px 10px;
    }

    .header-left .logo img {
        height: 30px;
    }
}

/* Full-page wrapper */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #f5f5f5;
    padding: 20px 10px;
    text-align: center;
    border-top: 1px solid #333;
}

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

.footer-about, .footer-contact, .footer-address, .footer-social {
    flex: 1;
    min-width: 200px;
    margin: 10px;
    text-align: left;
}

.footer-about h3, .footer-contact h3, .footer-address h3, .footer-social h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ed0e03;
}

.footer-about p, .footer-contact p, .footer-address p {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-social .social-icons {
    display: flex;
    justify-content: flex-end;
}

.footer-social .social-icons a {
    color: #f5f5f5;
    font-size: 1.5rem;
    margin-left: 15px;
    transition: color 0.3s;
}

.footer-social .social-icons a:hover {
    color: #ed0e03;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.875rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        text-align: center;
    }

    .footer-about, .footer-contact, .footer-address, .footer-social {
        flex: 0 0 40%;
        text-align: center;
        margin: 10px auto;
    }

    .footer-social .social-icons {
        justify-content: center;
    }
}

@media (max-width: 320px) {
    .footer-container {
        flex-direction: row;
        align-items: center;
    }

    .footer-about, .footer-contact, .footer-address, .footer-social {
        margin: 10px 0;
    }

    .footer-about h3, .footer-contact h3, .footer-address h3, .footer-social h3 {
        font-size: 1.2rem;
    }

    .footer-about p, .footer-contact p, .footer-address p {
        font-size: 0.9rem;
    }

    .footer-social .social-icons a {
        font-size: 1.2rem;
        margin-left: 5px;
    }
}

@media (max-width: 320px) {
    .footer-about h3, .footer-contact h2, .footer-address h2, .footer-social h2 {
        font-size: 1rem;
    }

    .footer-about p, .footer-contact p, .footer-address p {
        font-size: 0.8rem;
    }

    .footer-social .social-icons a {
        font-size: 1rem;
        margin-left: 5px;
    }
}
