section.content {
  padding: 60px 0;
}
section.content .container {
  display: flex;
  flex-direction: column;
}
section.content .container .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  section.content .container .gallery {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  section.content .container .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.content .container .gallery img {
  border-radius: 1em;
  width: 100%;
}
section.content .container .gallery h4 {
  margin: 0.5rem 0;
}

/* Temel tablo stilleri */
.content-area table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  border: 1px solid #ddd;
  table-layout: auto;
}

.content-area table td,
.content-area table th {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
  word-wrap: normal;
  white-space: nowrap;
}

.content-area table td:last-child {
  white-space: normal;
  word-wrap: break-word;
}

.content-area table th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.content-area table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Mobil responsive tasarım */
@media screen and (max-width: 767px) {
    .content-area {
        margin: 0 -15px;
        padding: 0 15px;
        width: calc(100% + 30px);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .content-area table {
        width: 100%;
        min-width: max-content;
        margin: 15px 0;
        white-space: normal;
        table-layout: auto;
    }
    
    .content-area table td,
    .content-area table th {
        min-width: 120px;
        font-size: 14px;
        padding: 8px 10px;
        white-space: normal;
        word-break: break-word;
        word-wrap: break-word;
    }
    
    .content-area table td[colspan] {
        text-align: center;
        font-weight: bold;
        background-color: #f5f5f5;
        white-space: normal;
    }
    
    .content-area table tr td:first-child {
        position: sticky;
        left: 0;
        background: #fff;
        z-index: 1;
        border-right: 2px solid #ddd;
        min-width: 50px;
        white-space: nowrap;
    }
}

/* Tablo içeriği için ek stiller */
.content-area table caption {
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-bottom: none;
}

/* Genel tablo ayarları */
.content-area table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
}

.content-area table td, 
.content-area table th {
    word-break: break-word;
    vertical-align: top;
}