 /* Root değişkenlerini güncelle */
    :root {
      --primary-gold: #9c8b7a;    /* Daha soft bir bej tonu */
      --secondary-gold: #7d6e5d;  /* Daha koyu bej */
      --gradient-gold: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
      --white: #fff;
      --text-dark: #2c2c2c;
      --text-medium: #565656;
      --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
      --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.06);
      --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.08);
      --hover-gold: #b5a696;
      --cream: #faf8f6;
    }

    /* Genel yumuşatmalar */
    body {
      letter-spacing: -0.01em;
    }

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

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--cream);
      color: var(--text-dark);
      line-height: 1.8;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    /* Smooth scroll ve animasyonlar için */
    html {
      scroll-behavior: smooth;
    }

    /* Performans optimizasyonu */
    * {
      -webkit-tap-highlight-color: transparent;
    }

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

    /* Header Styles */
    header {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 20px 5%;
      box-shadow: var(--shadow-soft);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 700;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.8px;
    }

    nav {
      display: flex;
      gap: 40px;
    }

    nav a {
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 500;
      font-size: 15px;
      position: relative;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 10px 0;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-gold);
      transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 2px;
    }

    nav a:hover {
      color: var(--secondary-gold);
      transform: translateY(-1px);
    }

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

    /* Hero Section */
    .hero {
      height: 100vh;
      background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                  url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?auto=format&fit=crop&w=1920&q=80') center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at center bottom, rgba(156, 139, 122, 0.2), transparent 70%);
      animation: pulse 4s ease-in-out infinite;
    }

    .hero-content {
      max-width: 1000px;
      padding: 0 30px;
      position: relative;
      z-index: 2;
      animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 5.5rem;
      font-weight: 600;
      margin-bottom: 30px;
      line-height: 1.1;
      text-shadow: 2px 4px 8px rgba(0,0,0,0.4);
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      letter-spacing: -1px;
      opacity: 0;
      animation: fadeInSlideUp 1s ease-out forwards;
    }

    .hero-subtitle {
      font-size: 1.5rem;
      font-weight: 300;
      margin-bottom: 50px;
      opacity: 0;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
      animation: fadeInSlideUp 1s ease-out 0.3s forwards;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(156, 139, 122, 0.9);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 30px;
      padding: 20px 40px;
      font-size: 1.2rem;
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      text-decoration: none;
      backdrop-filter: blur(10px);
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      opacity: 0;
      animation: fadeInSlideUp 1s ease-out 0.6s forwards;
    }

    .cta-button:hover {
      background: rgba(156, 139, 122, 1);
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    /* Yeni animasyonlar */
    @keyframes fadeInSlideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {
      0% {
        opacity: 0.6;
      }
      50% {
        opacity: 0.8;
      }
      100% {
        opacity: 0.6;
      }
    }

    /* Section Styles */
    section {
      padding: 120px 30px;
      max-width: 1400px;
      margin: auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 100px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .section-header.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 600;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 25px;
      position: relative;
    }

    .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: var(--gradient-gold);
      border-radius: 3px;
    }

    .section-subtitle {
      font-size: 1.3rem;
      color: var(--text-medium);
      max-width: 750px;
      margin: 25px auto 0;
      line-height: 1.7;
      font-weight: 400;
    }

    /* Image Gallery Section */
    .image-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 30px;
      margin: 100px 0;
      padding: 0 30px;
    }

    .gallery-item {
      position: relative;
      height: 350px;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: var(--shadow-medium);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      border: 1px solid rgba(139, 115, 85, 0.1);
    }

    .gallery-item:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-heavy);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(184, 148, 26, 0.9));
      opacity: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      color: white;
      text-align: center;
      transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 30px;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .gallery-overlay p {
      font-size: 1rem;
      line-height: 1.6;
    }

    /* Card Grid */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 60px;
      padding: 0 15px;
    }

    .card {
      background: var(--white);
      padding: 40px;
      border-radius: 16px;
      border: 1px solid rgba(0,0,0,0.04);
      background: linear-gradient(145deg, #ffffff, #fefefe);
      transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
      will-change: transform, box-shadow, background;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(40px);
    }

    .card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: var(--gradient-gold);
      transform: scaleX(0);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .card:hover {
      transform: translateY(-8px);
    }

    .card:hover::before {
      transform: scaleX(1);
    }

    .card-icon {
      width: 80px;
      height: 80px;
      border-radius: 14px;
      background: linear-gradient(145deg, var(--primary-gold), var(--secondary-gold));
      opacity: 0.9;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 30px;
      box-shadow: var(--shadow-soft);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .card:hover .card-icon {
      transform: scale(1.1) rotate(5deg);
    }

    .card-icon i {
      font-size: 32px;
      color: white;
    }

    .card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 20px;
      line-height: 1.4;
    }

    .card p {
      font-size: 16px;
      color: var(--text-medium);
      line-height: 1.8;
    }

    /* Stats Section */
    .stats-section {
      background: linear-gradient(135deg, var(--white), #f8f9fa);
      padding: 100px 50px;
      margin: 120px auto;
      max-width: 1300px;
      position: relative;
      border-radius: 30px;
      box-shadow: var(--shadow-soft);
    }

    .stats-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(156, 139, 122, 0.05), rgba(156, 139, 122, 0.1));
      border-radius: 30px;
      z-index: 1;
    }

    .stats-header {
      text-align: center;
      margin-bottom: 80px;
      position: relative;
      z-index: 2;
    }

    .stats-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 3.2rem;
      color: var(--text-dark);
      margin-bottom: 20px;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      position: relative;
      z-index: 2;
    }

    .stat-item {
      background: var(--white);
      padding: 40px 30px;
      border-radius: 20px;
      text-align: center;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.04);
      border: 1px solid rgba(156, 139, 122, 0.1);
    }

    .stat-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-gold);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .stat-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(156, 139, 122, 0.1);
    }

    .stat-item:hover::before {
      transform: scaleX(1);
    }

    .stat-item h3 {
      font-size: 3.5rem;
      font-weight: 700;
      font-family: 'Playfair Display', serif;
      color: var(--primary-gold);
      margin-bottom: 15px;
      line-height: 1;
    }

    .stat-item p {
      font-size: 1.1rem;
      color: var(--text-medium);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Responsive düzenlemeler */
    @media (max-width: 1024px) {
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }
    }

    @media (max-width: 768px) {
      .stats-section {
        padding: 60px 30px;
        margin: 60px 20px;
      }
      
      .stats-header h2 {
        font-size: 2.5rem;
      }
      
      .stat-item h3 {
        font-size: 3rem;
      }
      
      .stat-item p {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .stats-section {
        padding: 50px 20px;
      }
    }

    /* Manifesto Section */
    .manifesto-section {
      background: var(--white);
      padding: 120px 80px;
      margin: 100px 0;
      border-radius: 35px;
      box-shadow: var(--shadow-soft);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .manifesto-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03), transparent 70%);
    }

    .manifesto-content {
      max-width: 950px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .manifesto-quote {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-style: italic;
      color: var(--secondary-gold);
      line-height: 1.7;
      margin-bottom: 40px;
      position: relative;
      padding: 40px 60px;
      background: linear-gradient(145deg, rgba(250,249,246,0.5), rgba(255,255,255,0.8));
      border-radius: 15px;
      box-shadow: 0 8px 32px rgba(139, 115, 85, 0.08);
    }

    .manifesto-quote::before,
    .manifesto-quote::after {
      content: '"';
      font-size: 5rem;
      color: var(--primary-gold);
      opacity: 0.2;
      position: absolute;
      font-family: 'Playfair Display', serif;
    }

    .manifesto-quote::before {
      top: -10px;
      left: 10px;
    }

    .manifesto-quote::after {
      bottom: -40px;
      right: 10px;
    }

    /* Contact Section */
    .contact-section {
      background: linear-gradient(145deg, #f8f8f8, #ffffff);
      color: var(--text-dark);
      padding: 120px 50px;
      margin-top: 120px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(0,0,0,0.03);
    }

    .contact-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at center, rgba(156, 139, 122, 0.03), transparent 70%);
    }

    .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 60px auto 0;
      position: relative;
      z-index: 2;
      padding: 15px;
    }

    .contact-item {
      padding: 35px 25px;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      border-radius: 16px;
      border: 1px solid rgba(156, 139, 122, 0.1);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
      position: relative;
      overflow: hidden;
    }

    .contact-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-gold);
      transform: scaleX(0);
      transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .contact-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .contact-item:hover::before {
      transform: scaleX(1);
    }

    .contact-item i {
      font-size: 32px;
      color: var(--primary-gold);
      margin-bottom: 25px;
      transition: all 0.4s ease;
      opacity: 0.9;
    }

    .contact-item:hover i {
      transform: scale(1.1) translateY(-5px);
      opacity: 1;
    }

    .contact-item h4 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      color: var(--text-dark);
    }

    .contact-item p {
      font-size: 1.1rem;
      color: var(--text-medium);
      line-height: 1.6;
    }

    /* İletişim başlık stilini güncelle */
    .contact-section .section-header h2 {
      color: var(--text-dark);
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .contact-section .section-subtitle {
      color: var(--text-medium);
      max-width: 600px;
      margin: 0 auto;
      font-size: 1.2rem;
      line-height: 1.8;
      opacity: 0.9;
    }

    /* Footer */
    footer {
      background: var(--cream);
      color: var(--text-medium);
      padding: 80px 30px;
      border-top: 1px solid rgba(0,0,0,0.05);
      display: grid;
      gap: 40px;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 50px;
      padding: 0 20px;
    }

    .footer-section {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .footer-section h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .footer-section p {
      font-size: 0.95rem;
      line-height: 1.8;
      color: var(--text-medium);
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      color: var(--text-medium);
      text-decoration: none;
      transition: color 0.3s ease;
    }

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

    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-links a {
      color: var(--text-medium);
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      color: var(--primary-gold);
      transform: translateY(-2px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(0,0,0,0.05);
      font-size: 0.9rem;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(60px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    /* Mobil menü butonu stilini ekle */
    .mobile-menu-button {
     
      background: none;
     
      display: none;
      color: var(--primary-gold);
     
      border: none;
      font-size: 24px;
      color: var(--text-dark);
      cursor: pointer;
      z-index: 1001;
    }

    /* Overlay stili */
    .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    /* Gallery Section Styles */
    .gallery-section {
      background: var(--cream);
      padding: 120px 30px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      padding: 20px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .gallery-item {
      position: relative;
      height: 300px;
      border-radius: 15px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .gallery-zoom {
      color: white;
      font-size: 2rem;
      transform: scale(0.8);
      transition: transform 0.3s ease;
    }

    .gallery-item:hover {
      transform: translateY(-5px);
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-item:hover .gallery-zoom {
      transform: scale(1);
    }

    /* Lightbox Styles */
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      z-index: 1000;
      padding: 40px;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 90vh;
      margin: auto;
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 8px;
    }

    .close-lightbox {
      position: absolute;
      top: 20px;
      right: 30px;
      color: white;
      font-size: 40px;
      cursor: pointer;
      z-index: 1001;
    }

    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      font-size: 30px;
      cursor: pointer;
      padding: 20px;
      user-select: none;
      transition: background 0.3s ease;
    }

    .lightbox-prev {
      left: 0;
    }

    .lightbox-next {
      right: 0;
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      /* Header düzenlemeleri */
      header {
        padding: 15px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 70px;
      }

      .logo {
        font-size: 28px;
      }

      nav {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: none;
        padding: 80px 30px;
      }

      nav a {
        width: auto;
        padding: 12px 20px;
        border-radius: 8px;
      }

      nav a:hover {
        background: var(--cream);
      }

      /* Hero section düzenlemeleri */
      .hero {
        height: 90vh;
        padding: 0 20px;
      }

      .hero h1 {
        font-size: 3rem;
        padding: 0 15px;
      }

      .hero-subtitle {
        padding: 0 20px;
        font-size: 1.1rem;
      }

      .cta-button {
        padding: 18px 35px;
        font-size: 1.1rem;
      }

      /* Card Grid düzenlemeleri */
      .card-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
        padding: 0 10px;
      }

      .card {
        padding: 30px 25px;
      }

      /* Image Gallery düzenlemeleri */
      .image-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 50px 0;
        padding: 0 20px;
      }

      .gallery-item {
        height: 250px;
      }

      /* Stats section düzenlemeleri */
      .stats-section {
        padding: 60px 20px;
        margin: 60px 0;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 10px;
      }

      .stat-item h3 {
        font-size: 2.5rem;
      }

      .stat-item p {
        font-size: 1rem;
      }

      /* Contact section düzenlemeleri */
      .contact-section {
        padding: 60px 20px;
      }

      .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
      }

      .contact-item {
        padding: 30px 25px;
      }

      /* Section header düzenlemeleri */
      .section-header {
        margin-bottom: 40px;
      }

      .section-header h2 {
        font-size: 2.2rem;
      }

      .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
      }

      /* Manifesto section düzenlemeleri */
      .manifesto-section {
        padding: 60px 20px;
        margin: 50px 0;
      }

      .manifesto-quote {
        font-size: 1.4rem;
        padding: 25px 30px;
      }
    }

    /* Daha küçük ekranlar için ek düzenlemeler */
    @media (max-width: 480px) {
      .hero h1 {
        font-size: 2rem;
      }

      .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .section-header h2 {
        font-size: 2rem;
      }

      /* Footer düzenlemeleri */
      .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
      }

      .social-links {
        justify-content: center;
      }

      .footer-links {
        align-items: center;
      }
    }

    /* Navigation menüsü düzenlemeleri */
    @media (max-width: 768px) {
      .mobile-menu-button {
        display: flex;
        color: var(--secondary-gold);
      }
      nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(1000px);
        
       
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 30px;
        transition: right 0.3s ease-in-out;
      }

      nav.active {
        right: 0;
      }

      nav a {
        font-size: 1.1rem;
        padding: 15px 0;
        width: 100%;
        text-align: center;
        margin: 5px 0;
        color: var(--primary-gold);
      }

      .hero {
        padding: 120px 20px 60px;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .section-header h2 {
        font-size: 2.2rem;
      }

      .image-gallery {
        grid-template-columns: 1fr;
      }

      .card-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }

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

      .contact-info {
        grid-template-columns: 1fr;
      }
    }

    /* Küçük ekranlar için ek düzenlemeler */
    @media (max-width: 480px) {
      .hero h1 {
        font-size: 2rem;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .social-links {
        justify-content: center;
      }
    }

    /* Genel performans iyileştirmeleri */
    * {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Safari için düzeltmeler */
    @supports (-webkit-touch-callout: none) {
      .hero {
        background-attachment: scroll;
      }
    }