.page-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.footer-strip {
    width: 100%;
    height: 14px;
    background-color: #255938;
    z-index: 1000;
}

.footer-content {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 0;
    z-index: 999;
}

.footer-container {
    max-width: 1290px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
}

.footer-categories {
    display: flex;
    justify-content: flex-end;
    gap: 120px;
    padding-right: 200px;
    position: relative;
}

.footer-categories::after {
    content: '';
    position: absolute;
    right: 40px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #e0e0e0;
}

.footer-category {
    flex: 0 0 auto;
    margin: 0;
}

.footer-category-title {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #255938;
}

.footer-contact {
    flex: 0 0 400px;
    padding-right: 60px;
    margin-top: 73px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 24px;
    color: #255938;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-info h4 {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.contact-info p {
    color: #333333;
    font-size: 14px;
    margin: 0 0 3px 0;
}

.contact-info span {
    color: #666666;
    font-size: 12px;
    display: block;
    white-space: normal;
    word-wrap: break-word;
    max-width: 300px;
    line-height: 1.4;
}

.footer-logo {
    position: absolute;
    right: -180px;
    top: 45%;
    transform: translateY(-50%);
    width: 150px;
    height: auto;
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-bottom-line {
    width: 100%;
    height: 80px;
    background-color: #255938;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    color: white;
}

.footer-links-left {
    display: flex;
    gap: 20px;
}

.footer-links-left a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links-left a:hover {
    opacity: 0.8;
}

.footer-right-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    margin-right: 50px;
}

.footer-creative {
    font-size: 14px;
}

/* Responsive Styles */
@media screen and (max-width: 1820px) {
    .footer-container {
        max-width: 1200px;
    }

    .footer-categories {
        gap: 80px;
        padding-right: 150px;
    }

    .footer-logo {
        right: -100px;
        width: 130px;
    }
}

@media screen and (max-width: 1620px) {
    .footer-container {
        max-width: 1100px;
    }

    .footer-categories {
        gap: 40px;
        padding-right: 120px;
    }

    .footer-logo {
        right: -80px;
        width: 110px;
    }
}

@media screen and (max-width: 1400px) {
    .footer-container {
        max-width: 960px;
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    .footer-categories {
        flex: 0 0 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
        padding-bottom: 30px;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 30px;
    }

    .footer-categories::after {
        display: none;
    }

    .footer-category {
        flex: 0 0 100%;
        text-align: left;
    }

    .footer-category-title {
        font-size: 17px;
        margin-bottom: 15px;
        color: #255938;
        font-weight: 600;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-links a {
        font-size: 14px;
        color: #666;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: #255938;
    }

    .footer-contact {
        flex: 0 0 100%;
        padding-right: 0;
        margin-top: 0;
        text-align: left;
    }

    .contact-item {
        justify-content: flex-start;
        margin-bottom: 15px;
    }

    .contact-item i {
        font-size: 20px;
        color: #255938;
    }

    .contact-info h4 {
        font-size: 15px;
        color: #255938;
    }

    .contact-info p {
        font-size: 13px;
        color: #666;
    }

    .contact-info span {
        font-size: 12px;
        color: #666;
    }

    .footer-logo {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin: 30px auto 0;
        width: 100px;
    }
}

@media screen and (max-width: 991px) {
    .footer-categories {
        gap: 25px 30px;
    }

    .footer-category-title {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        padding: 30px 0;
    }

    .footer-category {
        margin-bottom: 20px;
    }

    .footer-category-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .contact-item i {
        font-size: 20px;
    }

    .contact-info h4 {
        font-size: 15px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-info span {
        font-size: 13px;
    }

    .footer-bottom-line {
        height: auto;
        padding: 15px 20px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .footer-links-left {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .footer-links-left a {
        font-size: 12px;
        padding: 0 8px;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        white-space: nowrap;
    }

    .footer-links-left a:last-child {
        border-right: none;
    }

    .footer-right-content {
        flex-direction: row;
        gap: 15px;
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }

    .footer-copyright,
    .footer-creative {
        font-size: 12px;
        margin: 0;
        white-space: nowrap;
    }
}

@media screen and (max-width: 576px) {
    .footer-container {
        padding: 0 15px;
    }

    .footer-categories {
        gap: 20px;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-bottom-line {
        padding: 15px;
    }

    .footer-links-left {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-category {
        flex: 0 0 100%;
    }

    .footer-category-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 12px;
    }
} 
