/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
/* Gợi ý CSS cơ bản cho trang dịch vụ */
:root {
  --primary-color: #0056b3; /* Màu xanh chủ đạo của DECC */
  --secondary-color: #f0ad4e; /* Màu cam/vàng cho CTA */
  --text-color: #333;
  --bg-color: #f9f9f9;
}

.service-landing-page {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  max-width: 900px; /* Giới hạn chiều rộng để dễ đọc */
  margin: 0 auto;
  padding: 20px;
}

/* Thẻ H chuẩn SEO */
h1, h2, h3 {
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.3;
}
h1 { font-size: 2.2em; text-align: center; }
h2 { font-size: 1.8em; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 30px; }
h3 { font-size: 1.3em; color: #004a99; }

/* Phần Hero và Cam kết */
.hero-section { text-align: center; border-bottom: 1px solid #eee; padding-bottom: 20px; }

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Tự động xuống hàng trên mobile */
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.commitment-grid li {
  background: var(--bg-color);
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.commitment-grid li strong {
  display: block;
  font-size: 1.1em;
  color: var(--primary-color);
}

/* Nút CTA */
.cta-buttons { margin: 20px 0; display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.cta-button {
  text-decoration: none;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
}
.cta-button.primary { background-color: var(--secondary-color); border: 2px solid var(--secondary-color); }
.cta-button.primary:hover { background-color: #e69500; }
.cta-button.secondary { background-color: #fff; color: var(--primary-color); border: 2px solid var(--primary-color); }
.cta-button.secondary:hover { background-color: #f0f8ff; }
.cta-button.large { padding: 15px 30px; font-size: 1.3em; }
.cta-button.large span { display: block; font-size: 0.7em; font-weight: 400; }

/* Phần USP */
.slogan-box {
  background: #e6f7ff;
  border-left: 5px solid var(--primary-color);
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}
.slogan-box h3 { margin: 0; }
.usp-list { list-style: none; padding-left: 0; }
.usp-list li { margin-bottom: 15px; }
.usp-list li strong { font-size: 1.2em; }

/* Phần Bảng giá */
.pricing-table-section { background: var(--bg-color); padding: 20px; border-radius: 8px; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.pricing-table th, .pricing-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}
.pricing-table th { background-color: var(--primary-color); color: #fff; }
.pricing-table tbody tr:nth-child(even) { background-color: #fff; }
.note { font-style: italic; font-size: 0.9em; }

/* Phần Quy trình */
.process-steps { list-style-type: decimal; padding-left: 30px; }
.process-steps li { margin-bottom: 15px; }
.process-steps p { margin-top: 5px; }

/* Phần Khu vực */
.area-list {
  list-style: none;
  padding: 0;
  column-count: 2; /* Chia 2 cột */
}
.area-list li a { text-decoration: none; color: var(--primary-color); }
.area-list li a:hover { text-decoration: underline; }

/* Phần FAQ */
.faq-container details {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
}
.faq-container summary {
  padding: 15px;
  cursor: pointer;
  font-weight: 700;
  position: relative;
}
.faq-container summary h3 { display: inline; margin: 0; }
.faq-container summary::-webkit-details-marker { display: none; } /* Ẩn mũi tên mặc định */
.faq-container summary::after { /* Tạo mũi tên tùy chỉnh */
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.5em;
  color: var(--primary-color);
}
.faq-container details[open] summary::after { content: '−'; }
.faq-container details p {
  padding: 0 15px 15px 15px;
  margin: 0;
  border-top: 1px dashed #ddd;
}

/* CTA Cuối trang */
.final-cta-section {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  margin-top: 30px;
}
a.cta-button.primary{color: black;}
.final-cta-section h2 { color: #fff; }
.final-cta-section .cta-button.primary { background-color: var(--secondary-color); color: #fff; }
.footer-contact-info { margin-top: 20px; line-height: 1.4; }
.footer-contact-info p { margin: 5px 0; }