:root {
  --bg-light: #f4f6f8;
  --bg-dark: #121212;
  --text-light: #222;
  --text-dark: #ddd;
  --card-light: #ffffff;
  --card-dark: #1e1e1e;
  --accent: #4f46e5;
  --gradient: linear-gradient(to right, #6366f1, #8b5cf6);
}

[data-theme="light"] {
  background-color: var(--bg-light);
  color: var(--text-light);
}

[data-theme="dark"] {
  background-color: var(--bg-dark);
  color: var(--text-dark);
}

body {
  margin: 0;
  font-family: "Lexend", sans-serif;
  line-height: 1.7;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

#coomeet_container {
  width: 100vw;
  height: 100vh;
}

.theme-toggle {
  position: fixed;
  top: 10px;
  right: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
}

.header {
  padding: 40px 20px; /* Daha az yükseklik için azaltıldı */
  text-align: center;
  background: linear-gradient(135deg, #6a00f4, #ac00e6, #ff4ecd);
  color: #ffffff;
  border-bottom: 3px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.header h1 {
  font-size: 2.2rem; /* Başlık biraz daha küçültüldü */
  margin-bottom: 8px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #f0f0f0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.content {
  background-color: var(--card-light);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s, color 0.3s;
}

[data-theme="dark"] .content {
  background-color: var(--card-dark);
}

.content h2 {
  font-size: 1.6rem;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 8px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.footer {
  background: linear-gradient(to right, #111, #222);
  padding: 2rem 1rem;
  color: #ccc;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 18px;
}


.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #ccc;
  margin: 0 8px;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}
/* Görsel Kutusu Stili */
.responsive-image-container {
  display: flex;
  justify-content: center;
  margin: 2rem auto;
  width: 100%;
}

.responsive-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.responsive-image:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

/* Masaüstü için boyutu sınırla */
@media screen and (min-width: 768px) {
  .responsive-image {
    width: 60%;
  }
}
.footer p.custom-text {
  color: #f3f3f3;        /* Açık gri, göz yormayan */
  font-weight: 600;      /* Hafif kalın */
  font-size: 16px;
  margin: 10px 0 0 0;
  letter-spacing: 0.05em;
  text-transform: uppercase; /* İstersen büyük harf */
  opacity: 0.8;
}
.faq-section {
  max-width: 800px;
  margin: 3rem auto 6rem;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
}

[data-theme="dark"] .faq-section {
  color: var(--text-dark);
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--accent);
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

[data-theme="dark"] .faq-item {
  border-color: #444;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  position: relative;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(79, 70, 229, 0.1);
}

.faq-question .icon {
  font-size: 1.6rem;
}

.faq-question .arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 1rem;
  color: #555;
}

[data-theme="dark"] .faq-answer {
  color: #bbb;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* yeterince büyük */
  padding: 1rem 1.2rem 1.5rem;
}

.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}
