/* Genel Stil Ayarları */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: #1b6899;
    margin-top: 0;
}

a {
    text-decoration: none;
    color: #1b6899;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d4a6f;
}

/* Header (Üst Bilgi) */
.main-header {
    background-color: #fff;
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 30px; /* Masaüstü header yüksekliği */
}

.main-header .logo {
    background-color: #1b6899;
    padding: 2px 10px;
    border-radius: 3px;
    height: 28px;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.main-header .logo img {
    max-height: 23px;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav ul li a {
    color: #333;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s ease;
    font-weight: bold;
    font-size: 1rem;
}

.main-nav ul li a:hover {
    color: #1b6899;
}

/* Header sağındaki ikonlar ve yeni giriş/çıkış linkleri için kapsayıcı */
.header-icons-right {
    display: flex;
    align-items: center;
    gap: 15px; /* İkonlar ve yeni eklenen giriş linkleri arasında boşluk */
    margin-right: 10px; /* Sağ kenardan boşluk */
}

/* Yeni: Kullanıcı giriş/çıkış linkleri stili */
.auth-links {
    display: flex;
    gap: 10px; /* Giriş/Çıkış linkleri arasında boşluk */
}

.auth-links a {
    color: #1b6899; /* Mevcut ikonlarınızın veya menü linklerinizin rengiyle uyumlu */
    font-size: 1.2rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.auth-links a:hover {
    color: #0d4a6f; /* Hover durumunda rengi koyulaştır */
}

.hamburger-menu {
    font-size: 1.2rem;
    cursor: pointer;
    color: #1b6899;
}

/* Soldan Açılır Modalı Açma Butonu Stili */
.social-icon-wrapper a {
    color: #1b6899;
    font-size: 24px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.social-icon-wrapper a:hover {
    color: #0056b3;
}

/* Hero Section (Ana Tanıtım Bölümü) */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding-top: 30px;
    box-sizing: border-box;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #eee;
}

.btn-primary {
    display: inline-block;
    background-color: #1b6899;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1rem;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #0d4a6f;
    transform: translateY(-2px);
}

/* Hakkımızda Bölümü */
.about-us-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.about-us-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-us-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 15px auto;
    color: #555;
}

/* Çözüm Yaklaşımımız Bölümü */
.our-approach-section {
    padding: 60px 0;
    background-color: #3b74a7;
    color: #fff;
    text-align: center;
}

.our-approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.grid-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.grid-item i {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.grid-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.grid-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f0f0f0;
    flex-grow: 1;
}

/* Videolar Bölümü */
.videos-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
}

.videos-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.videos-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #eee;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.video-item {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.video-item video {
    display: block;
    width: 100%;
    height: auto;
}

.video-item p {
    padding: 15px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    margin: 0;
    color: #f0f0f0;
    font-size: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ekibimiz Bölümü (membership-section olarak adlandırılmış) */
.membership-section {
    padding: 80px 0;
    background-color: #1b6899;
    color: #fff;
    text-align: center;
}

.membership-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.membership-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #eee;
}

.membership-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-item {
    flex: 1 1 calc(33% - 20px);
    max-width: calc(33% - 20px);
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.feature-item i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #f0f0f0;
    flex-grow: 1;
}

/* Footer (Alt Bilgi) */
.main-footer {
    background-color: #333;
    color: #fff;
    padding: 1px;
    text-align: center;
    font-size: 0.9rem;
}

/* Soldan Açılır Sosyal Medya Modalı Stilleri */
.side-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.side-modal.open {
    display: block;
}

.side-modal-content {
    background-color: #fff;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1002;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.side-modal.open .side-modal-content {
    width: 300px;
    max-width: 80%;
}

.close-side-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    color: #818181;
    transition: 0.3s;
    cursor: pointer;
}

.close-side-modal:hover {
    color: #333;
}

.side-modal-body {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.side-modal-body h2 {
    color: #1b6899;
    margin-bottom: 25px;
    font-size: 2.2em;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.side-modal-body p {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.social-links-side-modal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.social-links-side-modal li {
    width: 100%;
}

.social-links-side-modal a {
    text-decoration: none;
    color: #1b6899;
    font-size: 1.2em;
    padding: 12px 15px;
    border: 1px solid #1b6899;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: calc(100% - 30px);
    box-sizing: border-box;
    margin: 0 auto;
}

.social-links-side-modal a:hover {
    background-color: #1b6899;
    color: white;
    transform: translateX(5px);
    box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
}

.social-links-side-modal i {
    font-size: 1.4em;
}

/* Auth formları için genel stil (login.php ve profil_duzenle.php için) */
.auth-container, .profile-edit-container {
    display: flex;
    justify-content: center;
    align-items: center; /* login için ortala, profil_duzenle için flex-start da olabilir */
    min-height: calc(100vh - 100px); /* Header ve footer'ı düşünerek ayarla */
    background-color: #f4f4f4;
    padding: 20px;
}
.auth-form, .profile-edit-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; /* Login formu için */
    text-align: center;
}
.profile-edit-form { /* Profil düzenleme formu daha geniş olabilir */
    max-width: 700px;
    text-align: left; /* Etiketleri sola hizala */
}
.auth-form h2, .profile-edit-form h2 {
    margin-bottom: 20px;
    color: #1b6899;
    text-align: center; /* Başlıkları ortala */
}
.auth-form label, .profile-edit-form label {
    display: block;
    margin-bottom: 8px;
    text-align: left;
    color: #555;
    font-weight: bold;
}
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.profile-edit-form input[type="text"],
.profile-edit-form input[type="url"],
.profile-edit-form textarea {
    width: calc(100% - 22px); /* Padding ve border için ayarla */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    resize: vertical; /* Sadece dikeyde boyutlandırmaya izin ver */
}
.profile-edit-form textarea {
    min-height: 100px;
}
.auth-form button, .profile-edit-form button {
    background-color: #1b6899;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    transition: background-color 0.3s ease;
    margin-top: 20px; /* Buton üstü boşluk */
}
.auth-form button:hover, .profile-edit-form button:hover {
    background-color: #0d4a6f;
}
.auth-form .message, .profile-edit-form .message {
    margin-top: 15px;
    margin-bottom: 20px; /* Formlar arası uyum için */
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
}
.auth-form .error, .profile-edit-form .error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.auth-form .success, .profile-edit-form .success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.auth-form p {
    margin-top: 20px;
    font-size: 14px;
}
.auth-form p a {
    color: #007bff;
    text-decoration: none;
}
.auth-form p a:hover {
    text-decoration: underline;
}
.form-group { /* profil_duzenle.php için input gruplama */
    margin-bottom: 15px;
}


/* Responsive (Duyarlı) Tasarım Ayarları */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1.3rem;
    }
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    .video-item {
        flex: 1 1 calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
    .feature-item {
        flex: 1 1 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Modaldaki responsive ayarlar */
    .social-icon-wrapper {
        margin-right: 15px;
    }
    .social-icon-wrapper a {
        font-size: 22px;
        width: 38px;
        height: 38px;
    }
    .side-modal.open .side-modal-content {
        width: 250px;
        max-width: 90%;
    }
    .side-modal-body h2 {
        font-size: 2em;
    }
    .social-links-side-modal a {
        font-size: 1.1em;
        padding: 10px 12px;
        gap: 8px;
    }
    .social-links-side-modal i {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .main-header {
        justify-content: space-between;
        padding: 0.375rem 7.5px;
        height: 37.5px;
    }
    .main-header .logo {
        height: 30px;
        padding: 1.5px 12px;
        border-radius: 2.25px;
        margin-left: 7.5px;
    }
    .main-header .logo img {
        max-height: 22.5px;
    }
    .main-nav {
        display: none; /* Varsayılan olarak kapalı */
        position: absolute;
        top: 37.5px; /* Yeni mobil header yüksekliği kadar aşağıda başla */
        left: 0;
        background-color: #fff;
        width: 100%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        padding: 0.375rem 0;
        flex-direction: column;
        align-items: center;
        z-index: 90;
    }
    .main-nav.open {
        display: flex; /* Açıldığında görünür */
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .main-nav ul li {
        margin: 4.5px 0;
        width: 100%;
        text-align: center;
    }
    .main-nav ul li a {
        display: block;
        padding: 7.5px 0;
        border-bottom: 1px solid #eee;
        color: #333;
        font-size: 1.2rem;
    }
    .main-nav ul li:last-child a {
        border-bottom: none;
    }
    /* Mobil menü açıldığında auth linkleri için */
    .main-nav.open .auth-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-top: 20px;
        padding-bottom: 15px;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }

    .main-nav.open .auth-links a {
        color: #333;
        font-size: 1.1rem;
        padding: 10px 0;
    }
    .hamburger-menu {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: #1b6899;
    }
    .header-icons-right {
        gap: 10px;
        margin-right: 7.5px;
    }

    .hero-section {
        height: 100vh;
        padding-top: 37.5px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.25rem;
    }

    .about-us-section,
    .our-approach-section,
    .videos-section,
    .membership-section {
        padding: 50px 0;
    }

    .about-us-section h2,
    .our-approach-section h2,
    .videos-section h2,
    .membership-section h2 {
        font-size: 2.25rem;
        margin-bottom: 25px;
    }

    .grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .grid-item {
        padding: 25px;
    }
    .grid-item i {
        font-size: 2.75rem;
    }
    .grid-item h3 {
        font-size: 1.4rem;
    }
    .grid-item p {
        font-size: 1rem;
    }

    .video-item {
        min-width: auto;
    }

    .feature-item {
        flex: 0 0 95%;
        max-width: 350px;
        margin: 0 auto;
        padding: 20px;
    }
    .feature-item i {
        font-size: 2.25rem;
    }
    .feature-item h3 {
        font-size: 1.3rem;
    }
    .feature-item p {
        font-size: 0.95rem;
    }

    .main-footer {
        padding: 0.75px;
        font-size: 0.9rem;
    }

    /* Modaldaki responsive ayarlar */
    .side-modal.open .side-modal-content {
        width: 250px;
        max-width: 90%;
    }
    .side-modal-body h2 {
        font-size: 2em;
    }
    .social-links-side-modal a {
        font-size: 1.1em;
        padding: 10px 12px;
        gap: 8px;
    }
    .social-links-side-modal i {
        font-size: 1.3em;
    }

    /* Profil ve Auth formları için mobil stil */
    .auth-container, .profile-edit-container {
        padding: 20px 15px; /* Mobil cihazlarda kenar boşlukları azalt */
        min-height: calc(100vh - 80px); /* Mobil header/footer yüksekliği */
    }
    .auth-form, .profile-edit-form {
        padding: 20px;
        max-width: 100%; /* Mobil cihazlarda tam genişlik */
    }
}

@media (max-width: 480px) {
    .main-header .logo {
        margin-left: 3px;
    }
    .hero-section {
        height: 100vh;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1.125rem;
    }
    .btn-primary {
        padding: 12.5px 25px;
        font-size: 1.125rem;
    }
    .about-us-section h2,
    .our-approach-section h2,
    .videos-section h2,
    .membership-section h2 {
        font-size: 2rem;
    }
    .grid-item {
        padding: 18.75px;
    }
    .grid-item i {
        font-size: 2.5rem;
    }

    .feature-item {
        flex: 0 0 98%;
        margin: 0 auto;
    }

    /* Modaldaki responsive ayarlar */
    .social-icon-wrapper a {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
    .side-modal.open .side-modal-content {
        width: 200px;
        max-width: 95%;
    }
    .side-modal-body h2 {
        font-size: 1.8em;
    }
    .social-links-side-modal a {
        font-size: 1em;
        padding: 8px 10px;
        gap: 6px;
    }
    .social-links-side-modal i {
        font-size: 1.2em;
    }
}

/* Profil Sayfasına Özel Stiller */
.main-content-wrapper { /* Bu stil şu an profile_duzenle.php'de doğrudan kullanılmıyor ama gelecekte lazım olabilir */
    flex: 1;
    padding-top: 30px;
}

.profile-content { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor, ancak bir genel profil sayfası için kullanılabilir */
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    align-items: stretch;
    margin-top: 20px;
    margin-bottom: 20px;
}
.profile-left { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
    flex: 0 0 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.profile-left h2 { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
    color: #1b6899;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}
.profile-image-container { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
    margin-bottom: 20px;
}
.profile-image-container img { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #1b6899;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.profile-social-links { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.profile-social-links a { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
    color: #1b6899;
    font-size: 1.3rem;
    margin: 0 8px;
    transition: color 0.3s ease, transform 0.2s ease;
}
.profile-social-links a:hover { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
    color: #0d4a6f;
    transform: translateY(-2px);
}
.hidden-social-link { /* Bu stil hala modalsız sosyal medya ikonları için geçerli */
    display: none !important;
}
.profile-qr-code { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: center;
}
.profile-qr-code h3 { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
    color: #1b6899;
    font-size: 1rem;
    margin-bottom: 8px;
}
.profile-qr-code img { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
    width: 100px;
    height: 100px;
    border: 1px solid #ddd;
    padding: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.profile-right { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
    flex: 1;
    display: flex;
    flex-direction: column;
}
.profile-biography { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.profile-biography h3 { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
    color: #1b6899;
    margin-bottom: 10px;
    font-size: 1.4rem;
    text-align: left;
}
.profile-biography p { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
    line-height: 1.6;
    text-align: justify;
    font-size: 0.95rem;
    flex-grow: 1;
}
.error-message { /* Bu stil şu an profil_duzenle.php'de .message.error sınıfı ile birleşti */
    color: #dc3545;
    font-size: 1rem;
    text-align: center;
    margin-top: 30px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 15px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .profile-content { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }
    .profile-left { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
        width: 100%;
        text-align: center;
        flex: none;
    }
    .profile-right { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
        width: 100%;
        flex: none;
    }
    .profile-biography h3 { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
        text-align: center;
    }
    .profile-image-container img { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
        width: 80px;
        height: 80px;
    }
    .profile-social-links a { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
        font-size: 1.1rem;
    }
    .profile-qr-code img { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
        width: 80px;
        height: 80px;
    }
    .profile-biography { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
        padding: 10px;
    }
    .profile-biography p { /* Bu stil şu an profil_duzenle.php'de kullanılmıyor */
        font-size: 0.9rem;
    }
}