.blog-container {
  width: 80%;
  max-width: 500px;
  margin: 20px auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.blog-content {
  max-height: 500px;
  overflow-y: auto;
  padding: 20px;
}

.blog-content h1,
.blog-content h2,
.blog-content h3 {
  color: #333;
}

.blog-content p {
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.blog-content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.blog-content ul li {
  margin-bottom: 10px;
  color: #555;
}
/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* For Safari and older browsers that don't support scroll-behavior */
body {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Optional: Add smooth scroll for specific elements with overflow */
.scroll-container {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Optional: Add custom scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Footer Styles */
.footer {
    background-color: #2b2d42;
    color: #fff;
    padding: 50px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #dc3545;
}

.footer h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
}

.footer-social {
    margin-top: 30px;
}

.footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #fff;
    color: #2b2d42;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #dc3545;
    color: #fff;
}

/* Faydalı Linkler Section */
.faydali-linkler {
    padding: 20px 0;
    background-color: #1f2133;
    color: #fff;
}

.faydali-linkler h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.faydali-linkler ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.faydali-linkler li {
    margin-bottom: 12px;
}

.faydali-linkler a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.faydali-linkler a:hover {
    color: #dc3545;
}

/* Bilgiler Section */
.bilgiler {
    padding: 20px 0;
    background-color: #1a1c2d;
    color: #fff;
}

.bilgiler h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.bilgiler ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.bilgiler li {
    margin-bottom: 10px;
}

.bilgiler a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.bilgiler a:hover {
    color: #dc3545;
}

/* Logo Section */
.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

/* Social Media Icons */
.social-icons {
    text-align: center;
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    color: #2b2d42;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #dc3545;
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer h3 {
        margin-top: 20px;
    }
    
    .social-icons {
        margin-top: 15px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
}
