:root {
        --primary-color: #333333;
        --secondary-color: #555555;
        --text-color: #444444;
        --light-bg: #f8f8f8;
        --white: #ffffff;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        --gold: #c5a059;
        --base-font: 'Poppins', sans-serif;
        --heading-font: 'Playfair Display', serif;
    }
    
    /* Genel Stiller */
    body {
        font-family: var(--base-font);
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        color: var(--text-color);
        background-color: var(--light-bg);
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
        font-size: 16px;
        line-height: 1.6;
    }

    * {
        text-transform: none !important;
        font-variant: normal !important;
        letter-spacing: normal !important;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: var(--heading-font);
        color: #fff;
        margin-top: 0;
        line-height: 1.3;
        font-weight: 700;
    }
    
    p, a, span, li, td, th, input, textarea, select, button {
        font-family: var(--base-font);
        text-transform: none;
        letter-spacing: 0.02em;
    }

    /* Video Bölümü - GÜNCELLENDİ */
    .container-fluid,
    .row,
    .col-md-12 {
        margin: 0;
        padding: 0;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .vvideo {
        width: 100%;
        height: 85vh; /* Normal ekranlarda daha uzun görünüm */
        display: block;
        max-width: 100vw;
        object-fit: cover;
    }

    /* Ana İçerik Konteyneri */
    .main-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
    }

    /* Eserler Banner Bölümü */
    .eserler-banner {
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
        margin: 60px 0 30px 0;
        border-radius: 8px;
        box-shadow: var(--shadow);
        cursor: pointer;
    }
    .eserler-banner,
.half-banner {
    border-radius: 12px;
    color: var(--secondary-color);
}
.dual-banner-section {
    margin-top: 50px; /* Boşluk artırıldı */
}
.half-banner img {
    transition: transform 0.5s ease;
}
.half-banner:hover img {
    transform: scale(1.05);
}
.half-banner-overlay {
    background: rgba(0, 0, 0, 0.4);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
/* Responsive Stiller */
@media (max-width: 767px) {
    .half-banner {
        height: 250px;
    }

    .dual-banner-section {
        margin-top: 30px;
    }
}
    .eserler-banner a {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
    }

    .eserler-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .eserler-banner:hover img {
        transform: scale(1.03);
    }

    .eserler-banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #f8f1e5;
        padding: 20px;
        box-sizing: border-box;
    }

    .eserler-banner-title {
        font-family: var(--heading-font);
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        color: #fff;
        line-height: 1.2;
    }

    .eserler-banner-subtitle {
        font-family: var(--base-font);
        font-size: 1.5rem;
        font-weight: 300;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        color: #f8f1e5;
    }

    .eserler-banner-link {
        display: inline-block;
        margin-top: 30px;
        padding: 12px 30px;
        background-color: transparent;
        color: #f8f1e5;
        border: 2px solid #f8f1e5;
        border-radius: 4px;
        font-size: 1.1rem;
        font-weight: 400;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .eserler-banner-link:hover {
        background-color: #f8f1e5;
        color: #333;
    }

    /* Biyografi Bölümü */
    .bio-section {
        margin: 30px 0 50px 0;
    }

    .bio-frame {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 40px;
        box-shadow: var(--shadow);
        background: white;
        box-sizing: border-box;
        overflow: hidden;
    }

    .bio-content {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 40px;
    }

    .artist-portrait {
        flex: 1;
        min-width: 280px;
        max-width: 400px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .artist-portrait img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .artist-portrait:hover img {
        transform: scale(1.03);
    }

    .bio-text {
        flex: 2;
        min-width: 300px;
        max-width: calc(50% - 40px);
    }

    .bio-video {
        flex: 1;
        min-width: 300px;
        max-width: calc(50% - 40px);
        display: flex;
        flex-direction: column;
    }

    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    .bio-title {
        font-family: var(--heading-font);
        color: var(--primary-color);
        font-size: 2.2rem;
        margin-bottom: 25px;
        position: relative;
        font-weight: 600;
        line-height: 1.3;
    }

    .bio-title:after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 80px;
        height: 3px;
        background: var(--gold);
    }

    .bio-description {
        font-family: var(--base-font);
        font-size: 1.15rem;
        font-weight: 400;
        line-height: 1.8;
        margin-bottom: 25px;
        color: var(--secondary-color);
        max-width: 100%;
    }

    .bio-btn-container {
        margin-top: auto;
        padding-top: 20px;
    }

    .bio-btn {
        display: inline-block;
        background: var(--gold);
        color: white;
        padding: 12px 35px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 1px solid var(--gold);
        font-size: 1.05rem;
        box-sizing: border-box;
    }

    .bio-btn:hover {
        background: transparent;
        color: var(--gold);
    }

    /* Responsive Tasarım */
    @media (max-width: 1199.98px) {
        .bio-text, .bio-video {
            max-width: 100%;
            flex: 1 1 100%;
        }
        
        .bio-video {
            margin-top: 30px;
        }
        
        .bio-btn-container {
            margin-top: 20px;
        }
    }

    @media (max-width: 991.98px) {
        .bio-frame {
            padding: 30px;
        }
        
        .bio-title {
            font-size: 2rem;
        }
        
        .eserler-banner-title {
            font-size: 3rem;
        }
        
        .eserler-banner-subtitle {
            font-size: 1.3rem;
        }
        
        .eserler-banner {
            height: 450px;
        }
        
        .bio-description {
            font-size: 1.1rem;
        }
        
        /* Video boyutu tablette normal hale getirildi */
        .vvideo {
            height: auto;
        }
    }

    @media (max-width: 767.98px) {
        body {
            font-size: 15px;
        }
        
        .vvideo {
            height: auto;
            object-fit: cover;
        }
        
        .bio-content {
            flex-direction: column;
            gap: 30px;
        }
        
        .artist-portrait {
            width: 100%;
            min-width: auto;
            max-width: 100%;
        }

        .bio-text, .bio-video {
            max-width: 100%;
            width: 100%;
        }

        .bio-video {
            order: 3;
            margin-top: 20px;
        }

        .bio-frame {
            padding: 25px;
        }

        .bio-title {
            font-size: 1.8rem;
        }
        
        .eserler-banner {
            height: 400px;
            margin: 40px 0 20px 0;
        }
        
        .eserler-banner-title {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }
        
        .eserler-banner-subtitle {
            font-size: 1.1rem;
            max-width: 90%;
        }
        
        .bio-description {
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .eserler-banner-link {
            font-size: 1rem;
            padding: 10px 25px;
            margin-top: 20px;
        }
        
        .bio-btn {
            font-size: 1rem;
            padding: 10px 25px;
        }
    }

    @media (max-width: 576px) {
        .main-container {
            padding: 0 15px;
        }
        
        .bio-section {
            margin: 20px 0 30px 0;
        }

        .bio-title {
            font-size: 1.6rem;
            margin-bottom: 15px;
        }

        .bio-title:after {
            bottom: -8px;
            height: 2px;
        }

        .bio-description {
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        
        .eserler-banner {
            height: 300px;
        }
        
        .eserler-banner-title {
            font-size: 1.8rem;
        }
        
        .eserler-banner-subtitle {
            font-size: 0.95rem;
        }
        
        .eserler-banner-link {
            padding: 8px 18px;
            font-size: 0.9rem;
            margin-top: 15px;
        }
        
        .bio-btn {
            padding: 8px 20px;
            font-size: 0.95rem;
        }
    }
    
    @media (max-width: 400px) {
        .eserler-banner-title {
            font-size: 1.6rem;
        }
        
        .bio-title {
            font-size: 1.4rem;
        }
    }

    /* Çift Banner Stilleri */
    .dual-banner-section {
        margin-top: 30px;
    }
    
    .dual-banner-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .half-banner-container {
        flex: 1 1 calc(50% - 10px);
        min-width: 300px;
    }
    
    .half-banner {
        position: relative;
        overflow: hidden;
        height: 300px;
        width: 100%;
        border-radius: 12px;
    }
    
    .half-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .half-banner:hover img {
        transform: scale(1.05);
    }
    
    .half-banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        text-align: center;
        padding: 20px;
        transition: background 0.3s ease;
    }
    
    .half-banner:hover .half-banner-overlay {
        background: rgba(0, 0, 0, 0.6);
    }
    
    .half-banner-title {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 10px;
        font-family: var(--heading-font);
        color: #fff;
    }
    
    .half-banner-text {
        font-size: 16px;
        margin-bottom: 15px;
        max-width: 80%;
        font-family: var(--base-font);
    }
    
    .half-banner-link {
        padding: 8px 20px;
        border: 1px solid white;
        border-radius: 4px;
        font-size: 14px;
        transition: all 0.3s ease;
        text-decoration: none;
        color: white;
    }
    
    .half-banner:hover .half-banner-link {
        background: white;
        color: #000;
    }
    
    @media (max-width: 767px) {
        .half-banner {
            height: 250px;
        }
        
        .half-banner-container {
            flex: 1 1 100%;
        }
        
        .half-banner-title {
            font-size: 20px;
        }
        
        .half-banner-text {
            font-size: 14px;
        }
    }
    
    
  /* Kayar Eser Kartları Stilleri */
  .me-sliding-artworks-section {
    padding: 20px 0;
    background: #f9f5f0;
    overflow: hidden;
    position: relative;
    margin: 40px auto;
    max-width: 1400px;
    border-radius: 16px;
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.1),
      inset 0 0 0 1px rgba(255, 255, 255, 0.8),
      inset 0 0 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-image: linear-gradient(to bottom, #f9f5f0, #f0e6d9);
  }

  .me-sliding-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
  }

  .me-sliding-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: me-slide 60s linear infinite;
    will-change: transform;
    padding: 10px 0;
  }

  .me-artwork-card {
    width: 250px;
    height: 300px;
    flex-shrink: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.1);
  }

  .me-artwork-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
  }

  .me-artwork-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .me-artwork-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .me-artwork-card:hover .me-artwork-image {
    transform: scale(1.08);
  }

  .me-artwork-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .me-artwork-card:hover .me-artwork-card-overlay {
    opacity: 1;
  }

  .me-artwork-title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  }

  @keyframes me-slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* Büyük Resim Modali */
  .me-artwork-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: hidden;
    animation: me-fadeIn 0.3s;
    align-items: center;
    justify-content: center;
  }

  .me-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 900px;
    margin: auto;
    position: relative;
    padding: 20px;
  }

  .me-expanded-artwork {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
  }

  .me-artwork-info {
    color: white;
    text-align: center;
    margin-top: 20px;
    width: 100%;
  }

  .me-artwork-info h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: white;
  }

  .me-close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 1001;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .me-close-modal:hover {
    color: #ccc;
    background: rgba(0,0,0,0.7);
  }

  @keyframes me-fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  /* Modal açıkken body scroll'u engelle */
  body.me-modal-open {
    overflow: hidden;
    height: 100%;
  }

  /* Sanatçı Sözü Bölümü Stilleri */
  .me-artist-quote-section {
    padding: 80px 0px;
    position: relative;
    margin: 60px auto;
    max-width: 1400px;
  }

  .me-quote-frame {
    background: #fff;
    border-radius: 20px;
    box-shadow:
      0 15px 40px rgba(0, 0, 0, 0.08),
      inset 0 0 0 1px rgba(255, 255, 255, 0.9),
      inset 0 0 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 40px;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to bottom right, #ffffff, #f8f4ee);
  }

  .me-quote-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .me-quote-content {
    padding: 0;
    position: relative;
    text-align: center;
  }

  .me-quote-icon {
    font-size: 120px;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: -1;
  }

  .me-artist-quote {
    font-size: 28px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    font-weight: 300;
    letter-spacing: 0.5px;
    quotes: "“" "”" "‘" "’";
  }

  .me-artist-quote:before {
    content: open-quote;
    font-size: 60px;
    line-height: 0;
    vertical-align: -20px;
    color: rgba(0, 0, 0, 0.1);
    margin-right: 10px;
  }

  .me-artist-quote:after {
    content: close-quote;
    font-size: 60px;
    line-height: 0;
    vertical-align: -20px;
    color: rgba(0, 0, 0, 0.1);
    margin-left: 10px;
  }

  .me-artist-signature {
    font-size: 22px;
    color: #666;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 30px;
    position: relative;
    display: inline-block;
  }

  .me-artist-signature:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
  }

  /* İletişim Banner Stilleri */
  .me-iletisim-banner {
    height: 300px; /* Diğer bannerlardan daha kısa */
    margin-top: 40px;
  }

  .me-iletisim-banner .me-eserler-banner-overlay {
    background: rgba(0, 0, 0, 0.5);
  }

  .me-iletisim-banner:hover .me-eserler-banner-overlay {
    background: rgba(0, 0, 0, 0.7);
  }

  .me-iletisim-banner img {
    height: 300px;
    object-fit: cover;
  }

  /* Biyografi Bölümü Stilleri */
  .me-bio-section {
    padding: 60px 0px;
    position: relative;
    margin: 60px auto;
    max-width: 1400px;
  }

  .me-bio-frame {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    position: relative;
  }

  .me-bio-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .me-artist-portrait {
    flex: 0 0 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .me-artist-portrait img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }

  .me-artist-portrait:hover img {
    transform: scale(1.05);
  }

  .me-bio-text {
    flex: 1;
    min-width: 300px;
  }

  .me-bio-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
  }

  .me-bio-video {
    flex: 0 0 100%;
    text-align: center;
  }

  .me-bio-btn-container {
    margin-top: 30px;
  }

  .me-bio-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #333;
  }

  .me-bio-btn:hover {
    background-color: transparent;
    color: #333;
  }

  /* Eserler Banner Stilleri */
  .me-eserler-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin: 60px auto;
    max-width: 1400px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  .me-eserler-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .me-eserler-banner:hover img {
    transform: scale(1.03);
  }

  .me-eserler-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 40px;
    transition: all 0.3s ease;
  }

  .me-eserler-banner:hover .me-eserler-banner-overlay {
    background: rgba(0, 0, 0, 0.6);
  }

  .me-eserler-banner-title {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 600;
    color: white;
  }

  .me-eserler-banner-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    max-width: 700px;
    line-height: 1.6;
  }

  .me-eserler-banner-link {
    padding: 12px 30px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .me-eserler-banner:hover .me-eserler-banner-link {
    background-color: white;
    transform: translateY(-5px);
  }

  /* Dual Banner Stilleri */
  .me-dual-banner-section {
    padding: 0 0px;
    margin: 60px auto;
    max-width: 1400px;
  }

  .me-dual-banner-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }

  .me-half-banner-container {
    flex: 1;
    min-width: 300px;
  }

  .me-half-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .me-half-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .me-half-banner:hover img {
    transform: scale(1.05);
  }

  .me-half-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
  }

  .me-half-banner:hover .me-half-banner-overlay {
    background: rgba(0, 0, 0, 0.6);
  }

  .me-half-banner-title {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 600;
    color: white;
  }

  .me-half-banner-text {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 400px;
    line-height: 1.6;
  }

  .me-half-banner-link {
    padding: 10px 25px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .me-half-banner:hover .me-half-banner-link {
    background-color: white;
    transform: translateY(-3px);
  }

  @media (max-width: 768px) {
    .me-artwork-card {
      width: 200px;
      height: 250px;
    }

    .me-sliding-track {
      gap: 15px;
      animation-duration: 80s;
    }

    .me-modal-content {
      width: 95%;
      padding: 10px;
    }

    .me-expanded-artwork {
      max-height: 70vh;
    }

    .me-close-modal {
      top: 10px;
      right: 10px;
      font-size: 30px;
      width: 40px;
      height: 40px;
    }

    .me-artwork-info h3 {
      font-size: 18px;
    }

    .me-artist-quote {
      font-size: 20px;
      padding: 0 15px;
    }

    .me-artist-signature {
      font-size: 16px;
    }

    .me-artist-quote-section {
      padding: 40px 0px;
      margin: 30px auto;
    }

    .me-quote-frame {
      padding: 40px 20px;
      border-radius: 16px;
    }

    .me-quote-icon {
      font-size: 80px;
      top: -20px;
    }

    .me-sliding-artworks-section {
      border-radius: 12px;
      padding: 30px 0;
    }

    .me-sliding-container {
      padding: 0 20px;
    }

    /* Mobilde iletişim bannerı */
    .me-iletisim-banner {
      height: 200px;
    }

    .me-iletisim-banner img {
      height: 200px;
    }

    .me-iletisim-banner .me-eserler-banner-title {
      font-size: 24px;
    }

    .me-iletisim-banner .me-eserler-banner-subtitle {
      font-size: 14px;
    }

    .me-bio-content {
      flex-direction: column;
      gap: 30px;
    }

    .me-artist-portrait {
      flex: 0 0 auto;
      width: 100%;
      max-width: 300px;
    }

    .me-bio-text {
      min-width: auto;
    }

    .me-bio-description {
      font-size: 16px;
    }

    .me-eserler-banner {
      height: 300px;
    }

    .me-eserler-banner-title {
      font-size: 36px;
    }

    .me-eserler-banner-subtitle {
      font-size: 16px;
    }

    .me-half-banner {
      height: 250px;
    }

    .me-half-banner-title {
      font-size: 28px;
    }
  }
    





    