    .footer {
        background-color: #34495e;
        color: white;
        padding: 40px 0;
    }
    .footer-container {
        max-width: 1200px;
        margin: auto;
        padding: 0 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
        margin: 10px;
    }
    .footer h4 {
        margin-bottom: 15px;
        font-size: 1.5em;
    }
    .footer p {
        margin-bottom: 10px;
    }
    .footer ul {
        list-style-type: none;
        padding: 0;
    }
    .footer a {
        color: lightblue;
        text-decoration: none;
        transition: color 0.3s;
    }
    .footer a:hover {
        color: #1abc9c;
    }
    .newsletter-input {
        padding: 10px;
        width: 100%;
        margin-bottom: 10px;
        border: 1px solid #1abc9c;
        border-radius: 5px;
        background-color: #fff;
        color: #34495e;
    }
    .newsletter-button {
        background-color: #1abc9c;
        color: white;
        padding: 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 100%;
        transition: background-color 0.3s;
    }
    .newsletter-button:hover {
        background-color: #16a085;
    }

    .byiri {
        text-align: center;
            margin-top: 20px;
    }
