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

body {
  font-family: La;
  line-height: 1.8;
  color: #333;
  background: #008489;
  padding: 20px;
  min-height: 100vh;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  background: white;
  /*border-radius: 16px;*/
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: fadeIn 0.8s ease-in-out;
}

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

.header {
  background: linear-gradient(135deg, #008489 0%, #00a0a5 100%);
  color: white;
  padding: 40px 30px;
  text-align: center;
}

.header h1 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.header .subtitle {
  font-size: 18px;
  opacity: 0.95;
  font-weight: 300;
}

.content {
  padding: 40px 30px;
}

@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .header {
    padding: 30px 20px;
  }

  .header h1 {
    font-size: 22px;
  }

  .header .subtitle {
    font-size: 16px;
  }

  .content {
    padding: 30px 20px;
  }
}

.section {
  margin-bottom: 40px;
}

.section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 24px;
  color: #008489;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #008489;
  font-weight: 600;
  position: relative;
}

.section-title::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffaa00;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.text-content {
  font-size: 16px;
  line-height: 2;
  color: #444;
  text-align: justify;
}

@media (max-width: 768px) {
  .text-content {
    font-size: 15px;
    line-height: 1.8;
  }
}

.subsection {
  margin-top: 20px;
  margin-bottom: 15px;
}

.subsection-title {
  font-size: 18px;
  color: #ffaa00;
  margin-bottom: 12px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .subsection-title {
    font-size: 16px;
  }
}

.list {
  list-style: none;
  padding-left: 0;
}

.list li {
  padding: 11px 0 8px 30px;
  position: relative;
  line-height: 1.8;
}

.list li::before {
  content: '•';
  color: #008489;
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  left: 8px;
  top: 6px;
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  /*border-radius: 8px;*/
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  /*border-radius: 8px;*/
  overflow: hidden;
}

thead {
  background: linear-gradient(135deg, #008489 0%, #00a0a5 100%);
}

.table-wrapper th {
  color: white;
  font-weight: 600;
  padding: 16px 12px;
  text-align: center;
  font-size: 15px;
  height: 40px;
}

.table-wrapper td {
  padding: 14px 12px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  height: 30px;
  text-align: center;
}

tbody tr:hover {
  background: #f0f7f7;
}

tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  th, td {
    padding: 12px 10px;
    font-size: 14px;
  }

  table {
    font-size: 14px;
  }
}

.highlight-box {
  background: linear-gradient(135deg, #f0f7f7 0%, #fff 100%);
  border-left: 4px solid #008489;
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.contact-grid {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.contact-item {
  background: #f0f7f7;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 132, 137, 0.15);
}

.contact-label {
  font-weight: 600;
  color: #008489;
  margin-bottom: 5px;
  font-size: 14px;
}

.contact-value {
  color: #333;
  font-size: 15px;
  word-break: break-all;
}

.footer-gcc {
  background: linear-gradient(135deg, #008489 0%, #00a0a5 100%);
  color: white;
  text-align: center;
  padding: 30px;
  font-size: 16px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .footer-gcc {
    padding: 25px 20px;
    font-size: 15px;
  }
}

.process-flow {
  background: #f0f7f7;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  line-height: 2.2;
  text-align: left;
  word-spacing: 5px;
}

@media (max-width: 768px) {
  .process-flow {
    padding: 15px;
    font-size: 14px;
    word-spacing: 2px;
    line-height: 2.5;
  }
}

.emoji-icon {
  display: inline-block;
  margin-right: 8px;
}