/* Warranty Policy Page Styles */

/* Main Content */
.main-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Page Header */
.page-header {
  text-align: center;
}

.page-title {
  font-size: 24px;
  font-weight: bold;
  color: #111827;
  height: auto;
  line-height: 1.2;
}

/* Warranty Policy Content */
.warranty-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Warranty Section */
.warranty-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.warranty-text {
    color: rgba(28, 28, 28, 0.70);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.section-title {
  font-size: 18px;
  font-weight: bold;
  color: #111827;
  line-height: 1.3;
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-content p {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.5;
}

.highlight-text {
  color: #1C1C1C;
  font-weight: 600;
}

/* Warranty List */
.warranty-list {
  list-style-type: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Ordered Warranty List */
ol.warranty-list {
  list-style-type: decimal;
}

/* Table Container */
.table-container {
  margin: 20px 0;
  overflow-x: auto;
}

/* Wear and Tear Table */
.wear-tear-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e7eb;
  table-layout: fixed;
}

/* Warranty Table */
.warranty-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e7eb;
  table-layout: fixed;
}

/* Responsive Table */
@media (max-width: 768px) {
  .warranty-table,
  .wear-tear-table {
    width: 100%;
    min-width: 100%;
  }
  
  .warranty-table td,
  .wear-tear-table td {
    padding: 10px 15px;
    font-size: 14px;
  }
}

.wear-tear-table td {
    padding: 12px 30px;
    border: 1px solid #e5e7eb;
    color: rgba(28, 28, 28, 0.70);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.warranty-table td {
    padding: 12px 30px;
    border: 1px solid #e5e7eb;
    color: rgba(28, 28, 28, 0.70);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.warranty-table tr:first-child td {
    color: #1C1C1C;
    font-weight: 600;
}

.warranty-table tr:nth-child(even) {
    background-color: #F4F4F4;
}

.warranty-list li {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (min-width: 640px) {
  .main-content {
    padding: 48px 24px 64px;
    gap: 32px;
  }
  
  .page-title {
    font-size: 32px;
  }
  
  .warranty-content {
    gap: 28px;
  }
  
  .warranty-section {
    gap: 14px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .section-content p {
    font-size: 14px;
  }
  
  .warranty-list li {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .main-content {
    padding: 64px 40px 64px;
  }
  
  .page-title {
    font-size: 40px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .section-content p {
    font-size: 16px;
  }
  
  .warranty-list li {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .main-content {
    padding: 64px 80px 64px;
  }
  
  .page-title {
    font-size: 48px;
  }
}

@media (min-width: 1280px) {
  .main-content {
    padding: 64px 120px 64px;
  }
  
  .page-title {
    font-size: 50px;
  }
}