.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}
.mobile-menu.open {
    transform: translateX(0);
}
/* Genel yazı boyutlarını artır */
p {
    font-size: 1.05rem; /* Paragraf metin boyutunu artır */
}

.text-sm {
    font-size: 0.95rem !important;
}

/* Mobil görünüm için metin boyutlarını ayarla */
@media (max-width: 640px) {
    .text-3xl {
        font-size: 1.75rem;
    }
    .text-2xl {
        font-size: 1.5rem;
    }
    .text-xl {
        font-size: 1.25rem;
    }
    p {
        font-size: 1rem;
    }
    .text-sm {
        font-size: 0.9rem !important;
    }
    /* Mobil ekranlarda uzun kelimelerinin taşmasını engelle */
    body {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    /* İframe'in mobil ekranlarda yüksekliğini ayarla */
    iframe {
        height: 250px !important;
    }
}

/* WhatsApp butonunu büyüt */
.whatsapp-btn {
    bottom: 20px;
    right: 20px;
    padding: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
    .whatsapp-btn {
        bottom: 16px;
        right: 16px;
        padding: 12px;
    }
} 