/* General Styling */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5dc;
  color: #5c4033;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 120px;
  width: auto;
}

.logo h1 {
  color: #d4a373;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin: 0;
  font-weight: 700;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #5c4033;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

nav a:hover {
  color: #d4a373;
}

nav a.cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #d4a373;
  color: #ffffff;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

nav a.cta-button:hover {
  background-color: #b22222;
  color: #ffffff;
}

/* Free Listing Banner */
.free-listing-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f0ebe4;
  border-left: 4px solid #d4a373;
  padding: 18px 22px;
  border-radius: 8px;
  margin-bottom: 28px;
}
.free-listing-banner i {
  color: #d4a373;
  font-size: 1.5rem;
  margin-top: 2px;
}
.free-listing-banner strong {
  color: #5c4033;
  font-size: 1.05rem;
}
.free-listing-banner p {
  margin: 4px 0 0;
  font-size: 0.92rem;
  color: #5c4033;
}

/* Main Content Styling */
.main-title {
  color: #d4a373;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

main section {
  margin-bottom: 3rem;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

main section h2 {
  color: #d4a373;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 1.2rem;
}

main section p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Benefits List Styling */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: flex-start;
  gap: 1rem;
}

.benefits-list i {
  font-size: 1.5rem;
  color: #d4a373;
  min-width: 30px;
  text-align: center;
  margin-top: 0.2rem;
}

.benefits-list div {
  flex: 1;
}

.benefits-list strong {
  font-weight: 600;
  color: #5c4033;
}

/* Fee Split Section */
.split-container {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.split-box {
  flex: 1;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.client-split {
  background-color: #f2e9e4;
  border: 2px solid #d4a373;
}

.braider-split {
  background-color: #f2e9e4;
  border: 2px solid #5c4033;
}

.split-box h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.client-split h3 {
  color: #d4a373;
}

.braider-split h3 {
  color: #5c4033;
}

/* FAQ Section */
.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item h3 {
  color: #5c4033;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-item p {
  margin: 0;
}

/* Fee Table */
.fee-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.fee-table th, .fee-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.fee-table th {
  background-color: #f2e9e4;
  color: #5c4033;
  font-weight: 600;
}

.fee-table tr:last-child td {
  font-weight: 600;
  color: #d4a373;
  background-color: #f2e9e4;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin: 4rem 0;
  background: none;
  box-shadow: none;
  padding: 0;
}

.cta-section h2 {
  color: #d4a373;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.client-cta {
  background-color: #d4a373;
  color: #ffffff;
}

.braider-cta {
  background-color: #5c4033;
  color: #ffffff;
}

.client-cta:hover {
  opacity: 0.9;
  transform: scale(1.05);
  background-color: #c39366;
}

.braider-cta:hover {
  opacity: 0.9;
  transform: scale(1.05);
  background-color: #4a3328;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  color: #5c4033;
}

/* Responsive Design */
@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
  }
  
  .page-container {
    padding: 1rem;
  }
  
  .main-title {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .logo h1 {
    font-size: 3rem;
  }
  
  .logo img {
    height: 80px;
  }
}

/* Payment Process Section */
.payment-process {
  margin-bottom: 40px;
  background-color: #f9f7f0;
  padding: 30px;
  border-radius: 10px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.process-card {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.process-card h3 {
  margin-bottom: 20px;
  color: #5c4033;
  font-size: 22px;
  text-align: center;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

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

.step i {
  background-color: #d4a373;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 5px;
  color: #5c4033;
}

.step-content p {
  font-size: 14px;
  color: #666;
}

.highlight-box {
  background-color: #f0f7ff;
  border-left: 4px solid #6772e5;
  padding: 15px 20px;
  margin-top: 25px;
  border-radius: 0 5px 5px 0;
}

/* Fee Breakdown */
.fee-breakdown {
  margin-bottom: 40px;
}

.breakdown-box {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.breakdown-box h3 {
  margin-bottom: 10px;
  color: #5c4033;
  text-align: center;
}

.breakdown-box p {
  margin-bottom: 20px;
  text-align: center;
  font-size: 0.95rem;
  color: #666;
}

.breakdown-box table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}

.breakdown-box table th,
.breakdown-box table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e6e6e6;
}

.breakdown-box table th {
  background-color: #f5f5f5;
  font-weight: 600;
  color: #5c4033;
}

.separator-row td {
  padding: 8px 0;
}

.separator-row hr {
  border: none;
  height: 1px;
  background-color: #d4a373;
  opacity: 0.5;
}

.tax-note {
  background-color: #f9f7f0;
  border-left: 4px solid #d4a373;
  padding: 15px 20px;
  border-radius: 0 8px 8px 0;
  margin-top: 20px;
}

.tax-note h4 {
  color: #5c4033;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.tax-note p {
  margin-bottom: 10px;
  text-align: left;
  font-size: 0.9rem;
  color: #5c4033;
}

.tax-note p:last-child {
  margin-bottom: 0;
}

/* Refund Policy */
.refund-policy {
  margin-bottom: 40px;
}

.policy-box {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.policy-item {
  margin-bottom: 25px;
}

.policy-item:last-child {
  margin-bottom: 0;
}

.policy-item h3 {
  margin-bottom: 10px;
  color: #5c4033;
  font-size: 18px;
}

.policy-item ul {
  margin-left: 20px;
  margin-top: 10px;
}

.policy-item li {
  margin-bottom: 8px;
}

/* Client FAQ */
.client-faq {
  margin-bottom: 40px;
}

.client-faq h2 {
  margin-bottom: 25px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step i {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* Tax Considerations Section */
.tax-considerations {
  margin-bottom: 40px;
}

.consideration-box {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.consideration-box > p {
  margin-bottom: 25px;
  font-size: 1rem;
  text-align: center;
  color: #5c4033;
}

.consideration-item {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px dashed #d4a373;
}

.consideration-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.consideration-item h3 {
  color: #d4a373;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.consideration-item p {
  margin-bottom: 15px;
  color: #5c4033;
}

.consideration-item ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.consideration-item li {
  margin-bottom: 10px;
  color: #5c4033;
}

.consideration-item li:last-child {
  margin-bottom: 0;
} 