/* Genel Ayarlar */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.content {
    padding: 50px;
    text-align: center;
}

/* Footer Ayarları */
.footer {
    background-color: #343a40;
    color: #ffffff;
    padding: 20px 0 0px 0;
    position: relative;
    z-index: 1;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer .single-box h2,
.footer .footer-left h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer p {
    color: #d1d1d1;
    font-size: 14px;
    line-height: 1.6;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #d1d1d1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ffffff;
}

.footer .socials a {
    color: #d1d1d1;
    margin-right: 15px;
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
}

.footer .socials a:hover {
    color: #ffffff;
    transform: scale(1.2);
}

.footer .card-area i {
    font-size: 24px;
    color: #d1d1d1;
    margin-right: 10px;
    transition: color 0.3s;
}

.footer .card-area i:hover {
    color: #ffffff;
}

.footer-bottom {
    background-color: #23272b;
    text-align: center;
    padding: 10px 0;
    margin-top: 10px;
    font-size: 16px;
    color: #d1d1d1;
}

.footer .input-group .form-control {
    border-radius: 0;
}

.footer .input-group .input-group-text {
    background-color: #ff5722;
    border: none;
    cursor: pointer;
    border-radius: 0;
}

.footer .input-group .input-group-text i {
    color: #ffffff;
}

.footer .input-group .input-group-text:hover {
    background-color: #e64a19;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .footer .row {
        text-align: center;
    }

    .footer .socials {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer .single-box h2,
    .footer .footer-left h3 {
        font-size: 18px;
    }

    .footer p,
    .footer ul li a {
        font-size: 13px;
    }

    .footer .socials a {
        font-size: 16px;
        margin-right: 10px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
