/* Layout düzenlemeleri */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content-wrapper {
    flex: 1 0 auto;
    width: 100%;
    background-color: #b9bfbf;
}

.sovtaj-footer {
    flex-shrink: 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* About sayfası düzenlemeleri */
.about-container {
    padding: 20px;
    margin-bottom: 40px; /* Footer ile arasında boşluk bırak */
}

/* Mobil görünüm düzenlemeleri */
@media (max-width: 768px) {
    .about-container {
        padding: 10px;
        margin-bottom: 20px;
    }
    
    .main-content {
        margin-bottom: 30px;
    }
    
    .container {
        min-height: auto !important; /* min-height override */
    }
}

/* Genel düzenlemeler */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}