/* Service Page Specific Styles */

/* Service hero section */
.service-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #2a4a73 100%);
}

/* Service content styling */
.service-content {
  max-width: 100%;
}

/* Service cards */
.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Service list items */
.service-list li {
  position: relative;
  padding-left: 1.5rem;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #F97316;
  font-weight: bold;
}

/* Service pricing */
.service-pricing {
  background: linear-gradient(135deg, #F97316 0%, #f59e0b 100%);
  border-radius: 1.5rem;
  padding: 2rem;
}

/* Service CTA */
.service-cta {
  background: linear-gradient(135deg, #1e3a5f 0%, #3b5998 100%);
}

/* Responsive adjustments for service pages */
@media (max-width: 768px) {
  .service-hero {
    padding: 3rem 1rem;
  }
  
  .service-content {
    padding: 1rem;
  }

  form {
    flex-direction: column!important;
  }

  #btns {
    flex-direction: column;
  }
}

/* Prose styles for service pages */

.prose { 
  color: #475569; 
  line-height: 1.8; 
}

.prose h2 { 
  color: #1e3a5f; 
  font-size: 1.75rem; 
  font-weight: 700; 
  margin-top: 2.5rem; 
  margin-bottom: 1rem; 
}

.prose h3 { 
  color: #1e3a5f; 
  font-size: 1.25rem; 
  font-weight: 600; 
  margin-top: 2rem; 
  margin-bottom: 0.75rem; 
}

.prose p { 
  margin-bottom: 1.25rem; 
}

.prose ul, 
.prose ol { 
  margin-bottom: 1.25rem; 
  padding-left: 1.5rem; 
}

.prose li { 
  margin-bottom: 0.5rem; 
}

.prose ul li { 
  list-style-type: disc; 
}

.prose ol li { 
  list-style-type: decimal; 
}

.prose strong { 
  color: #1e3a5f; 
  font-weight: 600; 
}


.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #3b5998;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-price {
  font-size: 20px;
  font-weight: 700;
  color: #3b5998;
}

.service-note {
  font-size: 14px;
  color: #6b7280;
  margin-top: 6px;
}

.intro-block {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 28px;
  background: #ffffff;
  border-left: 6px solid #3b5998;
}

.intro-block h1 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 18px;
  color: #3b5998;
  font-weight: 700;
}

.intro-text {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 22px;
}

.intro-text strong {
  color: #3b5998;
  font-weight: 600;
}

.intro-highlight {
  background: rgba(59, 89, 152, 0.08);
  padding: 18px 22px;
  border-radius: 6px;
  font-size: 17px;
  line-height: 1.6;
  color: #222;
}

.intro-highlight strong {
  color: #3b5998;
}

.accounting-block {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    max-width: 720px;
    margin: 40px auto;
    border-left: 6px solid #3b5998;
}

.accounting-title {
    font-size: 24px;
    font-weight: 700;
    color: #3b5998;
    margin-bottom: 20px;
}

.accounting-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accounting-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 14px;
    line-height: 1.6;
}

.accounting-list li::before {
    content: "✔";
    color: #3b5998;
    font-weight: 700;
    font-size: 16px;
    margin-top: 2px;
}

.accounting-footer {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.accounting-note {
    font-size: 14px;
    color: #6b7280;
}

.info-lists {
    width: 100%;
}

.info-block {
    max-width: 1100px;
    margin: 0 auto 56px auto;
    padding: 0 24px;
}


.info-block span {
    position: relative;
    padding: 14px 16px 14px 44px;
    margin-bottom: 14px;
    background-color: #f5f7fb;
    border-left: 4px solid #3b5998;
    border-radius: 4px;
    font-size: 17px;
    line-height: 1.5;
    color: #222;
    display: block;
}

.info-block span::before {
    content: "✔";
    position: absolute;
    left: 14px;
    top: 14px;
    color: #3b5998;
    font-weight: 700;
}

.faq-block {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-item {
  border-bottom: 1px solid #e5e8f0;
  padding: 18px 0;
}

.faq-question {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  position: relative;
  padding-left: 22px;
}

.faq-question::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #3b5998;
  font-size: 24px;
  line-height: 1;
}

.faq-answer {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin: 40px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.pricing-table thead th {
    background-color: #3b5998;
    color: #ffffff;
    text-align: left;
    padding: 16px 20px;
    font-size: 16px;
}

.pricing-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid #e5e9f2;
    font-size: 15px;
    color: #333333;
}

.pricing-table tbody tr:nth-child(even) {
    background-color: #f5f7fb;
}

.pricing-table tbody tr:hover {
    background-color: #eef2ff;
}

.pricing-table td.price {
    font-weight: 600;
    color: #3b5998;
    
}

.pricing-note {
    background-color: #f0f3fa;
    color: #333333;
    font-size: 14px;
    padding: 16px 20px;
    border-left: 4px solid #3b5998;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin: 40px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.services-table thead th {
    background-color: #3b5998;
    color: #ffffff;
    text-align: left;
    padding: 16px 20px;
    font-size: 16px;
}

.services-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid #e5e9f2;
    font-size: 15px;
    color: #333333;
}

.services-table tbody tr:nth-child(even) {
    background-color: #f5f7fb;
}

.services-table tbody tr:hover {
    background-color: #eef2ff;
}

.services-table td.category {
    font-weight: 600;
    color: #3b5998;
    
}

.services-table td.price {
    font-weight: 600;
    color: #3b5998;
    
}


/* Equal height service cards */
.services-grid {
  display: grid;
  grid-auto-rows: 1fr;
}

.services-grid > a {
  display: flex;
  flex-direction: column;
}

.services-grid > a > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
