/* Base Styles */
:root {
  --color-primary: #1f3ad1;
  --color-blue: #0056b8;
  --color-light: #f7f8fa;
  --color-text: #333333;
  --color-text-muted: #666666;
  --color-border: #e5e7eb;
  --color-white: #ffffff;
  --color-black: #000000;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --border-radius: 0.5rem;
  --border-radius-full: 9999px;
  --container-width: 1200px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --color-gradient-blue-start: #1f3ad1;
  --color-gradient-turquoise-end: #2EC4B6;
  --color-gradient-blue-light: #465ae4;
  --color-gradient-blue-dark: #122594;
  /* Hover border gradyanı */
  --color-gradient-border-start: #4338ca;
  --color-gradient-border-end: #a855f7;
  /* Yeni Subtle Hover border gradyanı */
  --color-gradient-border-subtle-start: rgba(70, 90, 228, 0.3);
  --color-gradient-border-subtle-end: rgba(70, 90, 228, 0.7);
  /* Yeni Badge Renkleri */
  --color-badge-bg: #E9D5FF;
  --color-badge-text: #8B5CF6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.5;
  font-size: 16px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary);
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

.text-center {
  text-align: center;
}

.text-black {
  color: var(--color-black);
}

.text-blue {
  color: var(--color-blue);
}

.text-muted {
  color: var(--color-text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-full);
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.3s ease, opacity 0.2s ease;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border: 1px solid transparent;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-primary {
  background-image: linear-gradient(to bottom, var(--color-gradient-blue-light), var(--color-gradient-blue-dark));
  color: var(--color-white);
  border-color: transparent;
}

.btn-primary:hover {
  color: var(--color-white);
  background-image: linear-gradient(to bottom, var(--color-gradient-blue-light), var(--color-gradient-blue-dark));
  border-color: transparent;
  box-shadow: 
    0 0 15px 0px rgba(67, 56, 202, 0.2), 
    0 0 15px 0px rgba(168, 85, 247, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  background-color: var(--color-light);
  box-shadow: 
    0 0 15px 0px rgba(67, 56, 202, 0.2), 
    0 0 15px 0px rgba(168, 85, 247, 0.2);
}

/* Hero Outline Butonları Hover Efekti */

.btn-ghost {
  background-color: transparent;
  color: var(--color-text);
  border-color: transparent;
}

.btn-ghost:hover {
  background-color: var(--color-light);
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* Badge */
.badge {
  display: inline-block;
  /* Eski renkler değiştirildi */
  background-color: var(--color-badge-bg); 
  color: var(--color-badge-text);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-full); /* Tam yuvarlak yapıldı */
  font-size: 0.875rem;
  font-weight: 600; /* Biraz daha kalın yazı */
  margin-bottom: 1rem;
}

.badge-outline {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-light);
  border: 1px solid rgba(31, 58, 209, 0.2);
  color: var(--color-text);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.badge-outline i {
  color: var(--color-primary);
  margin-right: 0.5rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.logo-pro {
  color: var(--color-black);
}

.logo-goh {
  color: var(--color-blue);
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  z-index: 40;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}

.mobile-lang {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 900px;
  margin: 0 auto;
}

.bg-light {
  background-color: var(--color-light);
}

/* Hero Section */
.hero-section {
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-image {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.rounded-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  object-fit: cover;
  animation: floatAnimation 6s ease-in-out infinite alternate, 
             glowAnimation 4s ease-in-out infinite alternate;
  transition: none;
}

/* Float Animation Keyframes (Tekrar Eklendi) */
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* Yukarı hareket */
  }
  100% {
    transform: translateY(0);
  }
}

/* Challenge Section */
.challenge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Challenge grid içindeki kartlara özel stil ve animasyon */
.challenge-grid .card {
  background-color: var(--color-light);
}
.challenge-grid .card:nth-child(odd) {
  animation-delay: -0.5s; /* Farklı başlangıç noktası */
}

/* Card */
.card {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  background-color: var(--color-white);
  border: 1px solid transparent;
  transition: box-shadow 0.3s ease;
  animation: floatAnimation 6s ease-in-out infinite alternate;
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.card-text {
  color: var(--color-text-muted);
}

.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: var(--border-radius-full);
  /* Gradyan kaldırıldı, orijinal renge dönüldü */
  background-color: rgba(31, 58, 209, 0.1); 
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary); /* İkon rengi orijinal */
  font-size: 1.25rem;
}

/* Solution Section */
.solution-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.feature-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.feature-icon {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1rem;
  font-weight: 500;
}

.feature-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Audience Section */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Audience grid içindeki kartlara özel stil ve animasyon */
.audience-grid .card {
  background-color: var(--color-light);
}
.audience-grid .card:nth-child(1) {
  animation-delay: -0.6s;
}
.audience-grid .card:nth-child(2) {
  animation-delay: -0.1s;
}
.audience-grid .card:nth-child(3) {
  animation-delay: -0.8s;
}

.check-list {
  margin-top: 1rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.check-list i {
  color: var(--color-primary);
}

/* Process Section */
.process-timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  display: none;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.timeline-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--border-radius-full);
  /* Gradyan kalıyor */
  background-image: linear-gradient(to bottom, var(--color-gradient-blue-light), var(--color-gradient-blue-dark)); 
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 1rem 0;
  box-shadow: var(--shadow);
  z-index: 10;
}

.timeline-content {
  width: 100%;
  text-align: center;
}

.timeline-empty {
  display: none;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-text {
  color: var(--color-text-muted);
}

.process-footer {
  margin-top: 3rem;
}

.process-footer-text {
  font-size: 1.125rem;
  max-width: 32rem;
  margin: 1rem auto 0;
}

/* Why AI Section */
.why-ai-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

/* AI features grid içindeki kartlara animasyon */
.ai-features-grid .ai-feature-card {
}
.ai-features-grid .ai-feature-card:nth-child(1) {
  animation-delay: -0.3s;
}
.ai-features-grid .ai-feature-card:nth-child(2) {
  animation-delay: -0.9s;
}
.ai-features-grid .ai-feature-card:nth-child(3) {
  animation-delay: -0.5s;
}

.ai-feature-card {
  background-color: var(--color-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: box-shadow 0.3s ease;
  animation: floatAnimation 6s ease-in-out infinite alternate;
}

.ai-feature-card i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.ai-feature-title {
  font-size: 1rem;
  font-weight: 500;
}

.ai-feature-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-member-image {
  width: 8rem;
  height: 8rem;
  border-radius: var(--border-radius-full);
  overflow: hidden;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}

.team-member-name {
  font-size: 1.25rem;
  font-weight: 600;
}

.team-member-role {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.team-member-description {
  font-size: 0.875rem;
}

/* CTA Section */
.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-form-container {
  width: 100%;
  max-width: 32rem;
  margin: 1rem 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-sans);
  font-size: 1rem;
}

.form-textarea {
  min-height: 6rem;
  resize: vertical;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 32rem;
}

/* Footer */
.footer {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--color-text-muted);
  font-size: 1.25rem;
}

.social-link:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.copyright {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.language-switcher {
  display: flex;
  gap: 1rem;
}

/* Media Queries */
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .hero-section {
    padding: 6rem 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .challenge-grid,
  .audience-grid,
  .ai-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }

  .team-member-image {
    width: 6rem;
    height: 6rem;
    margin-top: 0;
  }

  .team-member-name {
    font-size: 1rem;
  }

  .team-member-role,
  .team-member-description {
    font-size: 0.75rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 1rem;
  }

  .hero-section {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: block;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image {
    order: 2;
  }

  .audience-grid,
  .ai-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .timeline-line {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(31, 58, 209, 0.2);
    transform: translateX(-50%);
  }

  .timeline-item {
    flex-direction: row;
    margin-bottom: 3rem;
  }

  .timeline-icon {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .timeline-content {
    width: calc(50% - 2rem);
  }

  .timeline-content-right {
    text-align: right;
  }

  .timeline-content-left {
    text-align: left;
  }

  .timeline-empty {
    display: block;
    width: calc(50% - 2rem);
  }

  .timeline-light-sweep {
    display: block;
    position: absolute;
    left: calc(50% - 4px);
    top: -80px;
    width: 8px;
    height: 60px;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    border-radius: 50%;
    animation: lightSweep 3s linear infinite;
    animation-delay: 1s;
    opacity: 0;
    z-index: 5;
  }
}

/* Yeni eklenen stiller */
.solution-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Solution features grid içindeki kartlara animasyon */
.solution-features-grid .card {
}
.solution-features-grid .card:nth-child(1) {
  animation-delay: -0.2s;
}
.solution-features-grid .card:nth-child(2) {
  animation-delay: -0.7s;
}
.solution-features-grid .card:nth-child(3) {
  animation-delay: -0.4s;
}

/* Card Hover Efekti (Genel - Subtle Blue/Purple Glow) */
.card:hover,
.ai-feature-card:hover {
  /* Eski gradyan border kaldırıldı */
  border-image-source: none; 
  border-color: transparent;
  /* Hafif mavi/mor çift glow */
  box-shadow: 
    0 0 15px 0px rgba(67, 56, 202, 0.2), /* Koyu Mor/Mavi Gölge */
    0 0 15px 0px rgba(168, 85, 247, 0.2); /* Açık Mor Gölge */
  transition: box-shadow 0.3s ease; /* Geçiş efekti (zaten base'de olabilir ama garanti olsun) */
}

/* Challenge Kartları İçin Özel Hover kaldırıldı */

/* AI Feature Card Hover Efekti (Yukarıdaki genel kural yeterli) */

/* Light Sweep Animation Keyframes */
@keyframes lightSweep {
  0% {
    top: -80px; /* Başlangıç pozisyonu (çizginin üstü) */
    opacity: 0;
  }
  20% {
    opacity: 1; /* Görünür hale gel */
  }
  80% {
    opacity: 1; /* Görünür kal */
  }
  100% {
    top: 100%; /* Bitiş pozisyonu (çizginin altı) */
    opacity: 0;
  }
}

/* Yeni Glow Animation Keyframes */
@keyframes glowAnimation {
  0%, 100% {
    box-shadow:
      0 0 15px 0px rgba(67, 56, 202, 0.2), 
      0 0 15px 0px rgba(168, 85, 247, 0.2); 
  }
  50% {
    box-shadow:
      0 0 18px 2px rgba(67, 56, 202, 0.25), 
      0 0 18px 2px rgba(168, 85, 247, 0.25); 
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-light);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
  z-index: 100;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner-text {
  flex-grow: 1;
}

.cookie-banner-text h5 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner-text h5 i {
  color: var(--color-text-muted);
  font-size: 1.2rem;
}

.cookie-banner-text p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.cookie-banner-text p a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-banner-text p a:hover {
  color: var(--color-blue);
}

.cookie-banner-links {
  font-size: 0.8rem;
}

.cookie-banner-links a {
  color: var(--color-text-muted);
  margin-right: 1rem;
  text-decoration: underline;
}

.cookie-banner-links a:hover {
  color: var(--color-text);
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Initially hide banner - JS will control visibility */
/* We'll add an 'active' class via JS to show it */

/* Responsive adjustments for cookie banner */
@media (max-width: 992px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-banner-actions .btn {
    flex-grow: 1;
  }
}

@media (max-width: 480px) {
  .cookie-banner-actions {
    flex-direction: column;
  }
}

/* Utility class to hide elements */
.hidden {
  display: none !important;
}

/* Cookie Settings Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 110; /* Cookie banner'dan daha üstte */
  display: none; /* Başlangıçta gizli */
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex; /* Aktif olunca göster */
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam siyah arka plan */
  z-index: 111;
}

.modal-content {
  position: relative;
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 112;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-align: center;
}

.modal-content p {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.cookie-category {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-bottom: 1rem;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.cookie-category-header input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

.cookie-category-header input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

.cookie-category-header label {
  font-weight: 600;
  cursor: pointer;
}

.cookie-category-description {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  padding-left: 1.5rem; /* Checkbox ile hizala */
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

@media (max-width: 480px) {
  .modal-actions {
    flex-direction: column;
  }
  .modal-actions .btn {
    width: 100%;
  }
}

/* Hide inactive buttons */
.inactive-button {
  display: none !important;
}

/* Hide inactive sections */
.inactive-section {
  display: none !important;
}

/* Contact Info Section Styling */
.contact-info-container {
  margin-top: 1.5rem; /* Üst boşluk azaltıldı */
  margin-bottom: 1.5rem; /* Alt boşluk azaltıldı */
  color: var(--color-text-muted);
}

.contact-info-container p {
  margin-bottom: 0.75rem; /* Paragraflar arası boşluk biraz arttı */
  font-size: 1.1rem; /* Yazı boyutu büyütüldü */
}

.contact-info-container p strong {
  color: var(--color-text);
  font-size: 1.2rem; /* Şirket adı biraz daha büyük */
}

.contact-info-container i {
  color: var(--color-primary);
  margin-right: 0.5rem;
  width: 1.2em; /* İkonların hizalanması için */
  text-align: center;
}

.contact-info-container a {
  color: var(--color-primary);
}

.contact-info-container a:hover {
  text-decoration: underline;
}
