* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --turkuaz: #1AB4B4;
    --turkuaz-koyu: #0e8c8c;
    --beyaz: #fff;
    --gri: #f5f7f7;
    --gri-koyu: #e8ecec;
    --siyah: #1a1a1a;
    --altin: #d4af37;
}


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

section {
    padding: 100px 0;
}
button a {
  text-decoration: none; 
  color: inherit;
  display: inline-block;
}

button a:visited {
  color: inherit;          
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--turkuaz);
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

nav ul li a:hover {
    color: var(--turkuaz);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--turkuaz);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    padding: 5px;
    z-index: 1001;
}


.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('/img/clinic/13.jpeg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero button {
    padding: 16px 40px;
    background: var(--turkuaz);
    border: none;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0 6px 18px rgba(26,180,180,0.4);
    letter-spacing: 0.5px;
}

.hero button:hover {
    background: var(--turkuaz-koyu);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26,180,180,0.5);
}

.hero button.secondary {
    background: transparent;
    border: 2px solid white;
    box-shadow: none;
}

.hero button.secondary:hover {
    background: rgba(255,255,255,0.1);
}


#about {
    background: var(--gri);
    position: relative;
    overflow: hidden;
}

#about h2 {
    text-align: center;
    color: var(--turkuaz);
    margin-bottom: 40px;
}

#about p {
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: center;
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

.columns {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.col {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    padding: 40px 30px;
    max-width: 320px;
    text-align: center;
    transition: 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.col:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.col i {
    font-size: 2.5rem;
    color: var(--turkuaz);
    margin-bottom: 20px;
}

.col h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--siyah);
}

.col p {
    color: #666;
    line-height: 1.6;
}


#doctors {
    text-align: center;
    background: var(--beyaz);
}

.doctor-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.doctor {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    width: 280px;
    cursor: pointer;
    transition: 0.4s;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.doctor:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.doctor-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.doctor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.doctor:hover img {
    transform: scale(1.1);
}

.doctor-content {
    padding: 25px 20px;
}

.doctor h3 {
    margin-bottom: 8px;
    color: var(--turkuaz);
    font-size: 1.3rem;
}

.doctor p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #666;
}

.doctor-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.doctor-social a {
    color: var(--siyah);
    font-size: 1.1rem;
    transition: 0.3s;
}

.doctor-social a:hover {
    color: var(--turkuaz);
}


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
  }
  .modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 700px;
    width: 90%;
    text-align: left;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: modalFade 0.4s ease;
    margin: 40px 0; 
  }

.modal-img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .modal-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--turkuaz), var(--altin));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }
  .modal-body {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .modal-left {
    flex: 1 1 40%;
  }
  
  .modal-right {
    flex: 1 1 55%;
  }
  
  .modal-meta p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
  }
  
  .modal-meta i {
    color: var(--turkuaz);
    margin-right: 8px;
  }
  .modal-right p, .modal-right h3 {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s forwards;
  }
  
  @keyframes slideUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }  
.modal-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal-content h3 {
    color: var(--turkuaz);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.modal-details {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.modal-details div {
    flex: 1;
}

.modal-details h4 {
    color: var(--turkuaz);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 1.8rem;
    color: #777;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover {
    color: var(--turkuaz);
    transform: rotate(90deg);
}


#services {
    background: var(--gri);
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    transition: 0.4s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.service i {
    font-size: 2.8rem;
    color: var(--turkuaz);
    margin-bottom: 25px;
}

.service h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--siyah);
}

.service p {
    color: #666;
    line-height: 1.6;
}


#gallery {
    text-align: center;
    background: var(--beyaz);
    padding: 60px 20px;
}

#gallery h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

#gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--turkuaz);
    border-radius: 2px;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    text-align: left;
}

.slide-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: var(--turkuaz);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--turkuaz);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--turkuaz);
    color: white;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.thumbnail-container {
    max-width: 1000px;
    margin: 30px auto 0;
    padding: 0 10px;
}

.thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.thumbnail {
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
}

.thumbnail.active {
    opacity: 1;
    border: 3px solid var(--turkuaz);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


#contact {
    background: linear-gradient(to bottom, var(--gri) 0%, var(--gri-koyu) 100%);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.info, form {
    flex: 1;
    min-width: 350px;
}

.info h3 {
    color: var(--turkuaz);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.info p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    color: var(--turkuaz);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-methods {
    margin: 20px 0;
    text-align: center;
}

.contact-methods a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.contact-methods a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193,53,132,0.4);
}

.contact-methods i {
    font-size: 20px;
}

form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

form h3 {
    color: var(--turkuaz);
    margin-bottom: 25px;
    text-align: center;
}

form input, form textarea, form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
}

form input:focus, form textarea:focus, form select:focus {
    outline: none;
    border-color: var(--turkuaz);
    box-shadow: 0 0 0 2px rgba(26,180,180,0.2);
}

form button {
    background: var(--turkuaz);
    border: none;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s;
    width: 100%;
    box-shadow: 0 5px 15px rgba(26,180,180,0.4);
}

form button:hover {
    background: var(--turkuaz-koyu);
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(26,180,180,0.5);
}


footer {
    text-align: center;
    padding: 50px 30px;
    background: var(--siyah);
    color: #bbb;
    font-size: 0.95rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--turkuaz);
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--turkuaz);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    color: #888;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
}

.info-item a {
    color: var(--turkuaz-koyu);
    text-decoration: none;
    opacity: 0.8;
}

.logo {
    display: inline-block;
}

.logo img {
    max-height: 100px;
    height: auto;
    width: auto;
    max-width: 200px;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #007bff;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid #007bff;
    border-radius: 4px;
    font-size: 13px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.map-button:hover {
    background: #007bff;
    color: white;
}

.footer-bottom a:hover {
    opacity: 1;
    text-decoration: underline;
}


.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 100;
    transition: 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp:hover {
    transform: scale(1.1);
}

.whatsapp img {
    width: 30px;
    height: 30px;
}


@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}


@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero button {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-grid {
        flex-direction: column;
    }
    
    .info, form {
        min-width: 100%;
    }
    
    .slide img {
        height: 400px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .thumbnails {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
    
    .thumbnail {
        height: 60px;
    }
    
    nav {
        padding: 12px 15px;
    }
    
    .logo img {
        height: 35px;
    }
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #fff;
    border-radius: 20px;
    padding: 6px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-left: 10px;
  }
  
  .lang-btn:hover {
    background: #1ab4b4;
    color: #fff;
    transform: translateY(-2px);
  }
  
  .flag-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
  }
  
  .lang-text {
    font-size: 13px;
    font-weight: 500;
    color: #333;
  }
  
  .lang-btn:hover .lang-text {
    color: #fff;
  }
  
@media (max-width: 768px) {
    .modal-content {
      padding: 25px;
      width: 95%;
      max-width: none;
      border-radius: 10px;
    }
  
    .modal-body {
      flex-direction: column;
      gap: 20px;
    }
  
    .modal-left, .modal-right {
      flex: 1 1 100%;
    }
  
    .close {
      top: 10px;
      right: 15px;
      font-size: 1.5rem;
      background: rgba(255,255,255,0.6);
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .close:hover {
      transform: none;
      background: var(--turkuaz);
      color: white;
    }
  }
@media (max-width: 480px) {
    .slide img {
        height: 300px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .thumbnails {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    }
    
    .thumbnail {
        height: 50px;
    }
}

@keyframes modalSlideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  .modal-content {
    animation: modalSlideUp 0.4s ease;
  }
  
/* === KVKK Popup (Gelişmiş Mobil Uyumlu Versiyon) === */
.kvkk-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ccc;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  width: 400px;
  max-height: 80vh;
  overflow: hidden;
  z-index: 9999;
  display: none;
  animation: fadeInUp 0.6s ease;
  font-family: 'Poppins', sans-serif;
}

.kvkk-content {
  padding: 20px;
}

.kvkk-content h3 {
  color: #1a7d7d;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.kvkk-scroll {
  max-height: 50vh;
  overflow-y: auto;
  padding-right: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
}

.kvkk-scroll h4 {
  font-size: 1rem;
  color: #1a7d7d;
  margin-top: 10px;
  margin-bottom: 5px;
}

.kvkk-scroll ul {
  padding-left: 20px;
  margin: 5px 0 10px 0;
}

.kvkk-scroll li {
  list-style-type: disc;
  margin-bottom: 5px;
}

.kvkk-buttons {
  text-align: right;
  margin-top: 15px;
}

.kvkk-buttons button {
  background: #1a7d7d;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.kvkk-buttons button:hover {
  background: #156262;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar */
.kvkk-scroll::-webkit-scrollbar {
  width: 6px;
}
.kvkk-scroll::-webkit-scrollbar-thumb {
  background: #1a7d7d;
  border-radius: 3px;
}


@media (max-width: 768px) {
  .kvkk-popup {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    overflow: hidden;
    animation: fadeInFull 0.4s ease;
  }

  .kvkk-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 25px 15px 15px 15px;
  }

  .kvkk-scroll {
    flex: 1;
    max-height: none;
    overflow-y: auto;
    font-size: 0.95rem;
    padding-right: 8px;
  }

  .kvkk-buttons {
    text-align: center;
    margin-top: 10px;
  }

  .kvkk-buttons button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
  }

  @keyframes fadeInFull {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

  