/* CSS Variables */
:root {
  /* Primary Brand Colors */
  --accent-ui-accent: #61525a;
  --accent-tab: #61525a;
  --color-accent-line-solid: #5f9dff;
  --color-accent-line: #5f9dff66;
  
  /* Text Colors */
  --text-light: #1e1919;
  --text-dark: white;
  --text-base: #1a1918;
  --text-subtle-light: #736c64;
  --text-subtle-dark: #bbb5ae;
  
  /* Surface Colors */
  --surface-background-dark: #1e1919;
  --white: white;
  --color-accent-coconut: #f7f5f2;
  
  /* Additional Colors */
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --green-100: #dcfce7;
  --green-600: #16a34a;
  --purple-100: #f3e8ff;
  --purple-600: #9333ea;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background: linear-gradient(to bottom right, var(--slate-50), var(--blue-50));
  min-height: 100vh;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--slate-900);
  font-weight: 700;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--blue-600), #4f46e5);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--slate-700);
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-600);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue-600);
  border-radius: 1px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--slate-700);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
  background: var(--slate-100);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mobile-menu-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  text-decoration: none;
  color: var(--slate-700);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--blue-600);
}

.mobile-cta {
  margin-top: 1rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--blue-600);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 0 rgba(37, 99, 235, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--slate-700);
  border: 2px solid var(--slate-300);
}

.btn-outline:hover {
  background: var(--slate-50);
  border-color: var(--slate-400);
}

.btn-dark {
  background: var(--slate-900);
  color: white;
}

.btn-dark:hover {
  background: var(--slate-700);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--blue-600);
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: var(--slate-100);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--blue-600);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--slate-900);
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue-600), #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--slate-600);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--slate-600);
}

/* Phone Mockup */
.hero-phone {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-container {
  position: relative;
  z-index: 10;
  transition: transform 1s ease-out;
}

.phone {
  width: 20rem;
  height: 37.5rem;
  background: var(--slate-900);
  border-radius: 3rem;
  padding: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
}

.phone-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-header h3 {
  font-weight: 700;
  color: var(--slate-900);
}

.phone-avatar {
  width: 2rem;
  height: 2rem;
  background: var(--blue-600);
  border-radius: 50%;
}

.balance-card {
  background: linear-gradient(135deg, var(--blue-600), #4f46e5);
  border-radius: 1rem;
  padding: 1rem;
  color: white;
}

.balance-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.balance-amount {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.25rem 0;
}

.balance-growth {
  font-size: 0.875rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.transactions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.transaction {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: var(--slate-50);
  border-radius: 0.75rem;
  opacity: 0;
  transform: translateX(20px);
  animation: slideInTransaction 0.8s ease-out forwards;
}

@keyframes slideInTransaction {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.transaction-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.transaction-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.transaction-icon.income {
  background: var(--green-100);
  color: var(--green-600);
}

.transaction-icon.expense {
  background: #fecaca;
  color: #dc2626;
}

.transaction-details {
  display: flex;
  flex-direction: column;
}

.transaction-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.transaction-date {
  font-size: 0.75rem;
  color: var(--slate-500);
}

.transaction-amount {
  font-weight: 700;
}

.transaction-amount.income {
  color: var(--green-600);
}

.transaction-amount.expense {
  color: #dc2626;
}

.background-elements {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bg-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.bg-element-1 {
  top: 5rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
  background: var(--blue-200);
  animation: pulse 3s infinite;
}

.bg-element-2 {
  bottom: -5rem;
  left: -5rem;
  width: 15rem;
  height: 15rem;
  background: #a5b4fc;
  animation: pulse 3s infinite 1s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Features Preview */
.features-preview {
  padding: 5rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--slate-600);
  max-width: 32rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  transform: translateY(20px);
  opacity: 0;
}

.feature-card.animate {
  transform: translateY(0);
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon.bg-blue {
  background: var(--blue-100);
  color: var(--blue-600);
}

.feature-icon.bg-green {
  background: var(--green-100);
  color: var(--green-600);
}

.feature-icon.bg-purple {
  background: var(--purple-100);
  color: var(--purple-600);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--slate-600);
  line-height: 1.6;
}

.section-cta {
  text-align: center;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--blue-600), #4f46e5);
}

.cta-content {
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--slate-900);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-brand p {
  color: var(--text-subtle-dark);
  line-height: 1.6;
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section a {
  color: var(--text-subtle-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-subtle-dark);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-subtle-dark);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-subtle-dark);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

/* Utility Classes */
.hidden {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .phone {
    width: 16rem;
    height: 30rem;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
/* Ana Kapsayıcı: Resim için boyutlandırma ve animasyon */
/* Ana Kapsayıcı: Resim için boyutlandırma ve animasyon */
.talhacaba-hero-phone-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* Maksimum genişlik ile resmin çok büyümesini engelle */
    max-width: 400px; 
    margin-top: 10px;
    position: relative;
    
    /* Telefonu sağa kaydırmak için bu satırı ekleyin */
    margin-left: 200px; 

    /* Animasyon kuralları */
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: talhacaba-fadeInUpScale 1.2s ease-out forwards 0.8s;
}

/* Telefon Kapsayıcısının Arka Planını Şeffaf Yapar */
.talhacaba-hero-phone-image-container {
    background-color: transparent !important;
}

/* Telefon görselinin kendisi */
.talhacaba-phone-mockup-image {
    /* Mevcut stiliniz burada kalabilir */
    width: 120%;
    height: 1200;
    display: block;
    border-radius: 20px;
}

/* Animasyon Tanımlaması */
@keyframes talhacaba-fadeInUpScale {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Ekstra: Resminizin küçük ekranlarda da iyi görünmesini sağlayacak kural */
@media (max-width: 200px) {
    .talhacaba-hero-phone-image-container {
        /* Küçük ekranlarda maketin genişliğini %60'a düşür */
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .talhacaba-hero-phone-image-container {
        /* Telefonlar için daha küçük bir boyut */
        max-width: 70%; 
    }
}

/* ---- HERO BÖLÜMÜNÜN TASARIMI (Sıfırdan) ---- */

.hero-talhacaba-main {
    position: relative;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e0f2f7, #f0f7f9);
    overflow: hidden;
}

.hero-talhacaba-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-talhacaba-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-talhacaba-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #212529;
}

.hero-talhacaba-description {
    font-size: 1.15rem;
    color: #6c757d;
    margin: 0 0 30px 0;
}

.hero-talhacaba-gradient-text {
    background: linear-gradient(to right, #00c6ff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-talhacaba-cta-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    max-width: 450px;
}

.hero-talhacaba-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
}

.hero-talhacaba-btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-talhacaba-btn-primary:hover {
    background-color: #0056b3;
}

.hero-talhacaba-small-text {
    font-size: 0.9rem;
    color: #6c757d;
}

.hero-talhacaba-visuals {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.hero-talhacaba-phone-mockup {
    max-width: 350px;
    height: auto;
    display: block;
    border-radius: 30px;
    z-index: 10;
    transform: rotateY(-10deg) rotateX(10deg);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
}

/* Kart Tasarımları */
.hero-talhacaba-mini-card {
    position: absolute;
    background-color: white;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    z-index: 15;
}

.hero-talhacaba-card-1 {
    top: 10%;
    left: -10%;
    transform: rotate(-5deg);
}

.hero-talhacaba-card-1 .hero-talhacaba-card-title {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
}

.hero-talhacaba-card-2 {
    top: 50%;
    left: -15%;
    transform: rotate(5deg);
}

.hero-talhacaba-card-2 .hero-talhacaba-card-icon {
    font-size: 1.8rem;
    color: #00c6ff;
}

.hero-talhacaba-card-2 .hero-talhacaba-card-label {
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.hero-talhacaba-card-2 .hero-talhacaba-card-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    margin: 0;
}

.hero-talhacaba-card-3 {
    bottom: 0%;
    right: 5%;
    transform: rotate(-3deg);
}

.hero-talhacaba-card-3 .hero-talhacaba-profile-icons {
    display: flex;
}

.hero-talhacaba-card-3 .hero-talhacaba-profile-icons img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
}

.hero-talhacaba-card-3 .hero-talhacaba-profile-icons img:first-child {
    margin-left: 0;
}

.hero-talhacaba-card-3 p {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.3;
    color: #6c757d;
}

/* ---- Responsive Ayarlamalar ---- */
@media (max-width: 992px) {
    .hero-talhacaba-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-talhacaba-content {
        order: 2;
    }

    .hero-talhacaba-visuals {
        order: 1;
        margin-bottom: 2rem;
    }

    .hero-talhacaba-title {
        font-size: 2.5rem;
    }

    .hero-talhacaba-cta-form {
        flex-direction: column;
        max-width: 100%;
        margin: 0 auto 15px;
    }
    
    .hero-talhacaba-mini-card {
        position: static;
        margin: 10px auto;
        transform: none;
    }
    .hero-talhacaba-card-1, .hero-talhacaba-card-2, .hero-talhacaba-card-3 {
        width: 80%;
        max-width: 300px;
    }
}
/* ---- YENİ BUTON STİLLERİ ---- */

/* Butonları içeren kapsayıcı */
.hero-talhacaba-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px; /* Altındaki metne boşluk bırakır */
}

/* Genel buton stili */
.hero-talhacaba-btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent; /* Varsayılan olarak şeffaf kenarlık */
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Ana buton (primary) stili */
.hero-talhacaba-btn-primary {
    background-color: var(--color-accent-line-solid, #007bff);
    color: var(--text-dark, white);
}

.hero-talhacaba-btn-primary:hover {
    background-color: #0056b3; /* Koyu mavi hover rengi */
}

/* Dış hatlı (outline) buton stili */
.hero-talhacaba-btn-outline {
    background-color: transparent;
    color: var(--color-accent-line-solid, #007bff);
    border-color: var(--color-accent-line-solid, #007bff);
}

.hero-talhacaba-btn-outline:hover {
    background-color: var(--color-accent-line-solid, #007bff);
    color: var(--text-dark, white);
}

/* ---- ANA SAYFA ALT BÖLÜM STİLLERİ ---- */



.talhacaba05-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px; /* Görsel ve metin arasındaki boşluk */
}
        
.talhacaba05-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.talhacaba05-computer-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.talhacaba05-text-content {
    flex: 1;
}

.talhacaba05-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    line-height: 1.2;
}

.talhacaba05-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* ---- Mobil Uyumlu Tasarım ---- */
@media (max-width: 992px) {
    .talhacaba05-container {
        flex-direction: column;
        text-align: center;
    }

    .talhacaba05-image-wrapper {
        margin-bottom: 30px; /* Dikey boşluk */
    }

    .talhacaba05-title {
        font-size: 2rem;
    }
}