/* Basic Reset & Defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #007bff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

hr {
  border: 0;
  height: 1px;
  background: #ddd;
  margin: 20px 0;
}

/* Wayback Toolbar Styling (Minimal, to separate it) */
.wayback-toolbar {
  background-color: #222;
  color: #eee;
  padding: 10px;
  font-size: 0.8em;
}
.wayback-toolbar a { color: #7af; }
.wayback-toolbar table { margin: 5px 0; border-collapse: collapse; }
.wayback-toolbar td { border: 1px solid #555; padding: 2px 5px; }
.wayback-collection-info { font-size: 0.9em; margin-top: 5px; opacity: 0.7; }


/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #007bff;
  color: white;
  padding: 8px;
  z-index: 100;
}
.skip-link:focus {
  top: 0;
}

/* Header */
.site-header .header-top-bar {
  background-color: #333;
  color: #fff;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
}
.header-top-bar .header-phone-icon-white img {
  height: 20px;
  vertical-align: middle;
}

.site-header .header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}
.header-main .logo img {
  height: 40px; /* Adjust as needed */
}
.main-nav ul {
  display: flex;
}
.main-nav li {
  margin-left: 20px;
}
.main-nav a {
  color: #333;
  font-weight: bold;
}
.header-contact-actions {
  display: flex;
  align-items: center;
}
.header-contact-actions > * {
  margin-left: 15px;
  font-size: 0.9em;
}
.header-contact-actions img {
  height: 16px;
  vertical-align: middle;
  margin-right: 5px;
}
.header-phone img {
  filter: invert(0.5); /* Example to make it visible on white bg */
}


/* Main Content & Sections */
.main-content {
  padding: 20px;
}
.main-content section {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}
.main-content h1, .main-content h2, .main-content h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}
.main-content h1 { font-size: 2.5em; text-align: center; }
.main-content h2 { font-size: 1.8em; }
.main-content h3 { font-size: 1.4em; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 5px;
}
.btn-buy { background-color: #28a745; }
.btn-buy:hover { background-color: #218838; }
.btn-payment-plan { background-color: #007bff; }
.btn-payment-plan:hover { background-color: #0056b3; }
.btn-more {
  background-color: #6c757d;
  font-size: 0.9em;
}
.btn-more:hover { background-color: #545b62; }
.btn-see-domain {
    background-color: #17a2b8;
    padding: 5px 10px;
    font-size: 0.9em;
}
.btn-see-domain:hover { background-color: #117a8b; }


/* Domain Hero Section */
.domain-hero {
  text-align: center;
  background-color: #e9ecef;
}
.domain-hero .price-tag {
  font-size: 1.5em;
  font-weight: bold;
  color: #dc3545;
  margin: 10px 0 20px;
}
.purchase-options {
  margin-top: 10px;
  margin-bottom: 10px;
}
.purchase-options .processing-text {
  font-size: 0.8em;
  color: #6c757d;
  margin-left: 5px;
}
.purchase-options .or-divider {
  margin: 0 10px;
  font-weight: bold;
}
.payment-plan-details {
  font-size: 0.9em;
  margin-top: 10px;
}
.payment-plan-details a { font-weight: bold; }

/* Guarantees / Features (shared style) */
.guarantees ul, .financing-features ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
}
.guarantees li, .financing-features li {
  flex-basis: 30%; /* Adjust for number of items */
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.guarantees img, .financing-features img {
  height: 40px; /* Adjust as needed */
  margin-bottom: 10px;
}

/* Domain Info Repeat */
.domain-info-repeat { text-align: center; }
.domain-info-repeat .payment-plan-fineprint p {
    font-size: 0.85em;
    color: #555;
    margin: 5px 0;
}
.favorite-action { font-weight: bold; margin: 10px 0; cursor: pointer; } /* Make it look clickable */
.contact-expert { font-size: 1.1em; margin-top: 15px; }


/* Testimonials */
.testimonials .testimonial-item {
  border-left: 3px solid #007bff;
  padding-left: 15px;
  margin-bottom: 20px;
}
.testimonial-item .testimonial-initial {
  font-size: 1.5em;
  font-weight: bold;
  color: #007bff;
  float: left;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #e7f3ff;
  border-radius: 50%;
}
.testimonial-item p { margin-bottom: 5px; }
.testimonial-author {
  font-style: italic;
  color: #555;
  font-size: 0.9em;
  clear:both; /* if initial is floated */
}

/* Customer Stories */
.customer-stories .story-item {
  display: flex;
  align-items: center;
  gap: 20px; /* space between image and text */
  margin-bottom: 20px;
}
.customer-stories .story-item img[alt="sucses-item-4"] {
  max-width: 150px; /* Control image size */
  border-radius: 5px;
}
.customer-stories .story-item p { margin-bottom: 5px; }
.story-author { font-weight: bold; }
.read-story-link img {
    height: 1em; /* Small arrow */
    vertical-align: middle;
    margin-left: 3px;
}

/* Our Promise */
.our-promise .promise-item { margin-bottom: 15px; }

/* FAQs */
.faq-section .faq-item {
  margin-bottom: 15px;
}
.faq-question {
  display: block;
  padding: 10px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  cursor: pointer;
  font-weight: bold;
}
.faq-question:hover {
  background-color: #e9e9e9;
}
.faq-answer {
  padding: 10px;
  border: 1px solid #ddd;
  border-top: none;
  background-color: #fdfdfd;
}
.faq-answer p { margin-bottom: 10px; }
/* Initially hide answers - JS will control this */
.faq-answer {
  display: none;
}

/* Video Explainer */
.video-explainer { text-align: center; }
.video-placeholder {
    background-image: url(images/maxresdefault.jpg);
    background-size: 1000px 250px; /* Adjust as needed */
    background-color: #333;
    color: #fff;
    height: 200px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    font-size: 1.2em;
}

/* Other Domains */
.other-domains .other-domain-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.other-domain-item:last-child { border-bottom: none; }
.other-domain-item .domain-price { font-weight: bold; color: #28a745; }

/* Quick Stats */
.quick-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.quick-stats .stat-item {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #eee;
}
.stat-item .stat-label { font-weight: bold; color: #555; }
.stat-item .stat-value { font-size: 1.1em; }

/* Final CTA */
.final-cta {
    background-color: #007bff;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
}
.final-cta .btn { margin: 0 10px; }
.final-cta .btn-buy { background-color: #28a745; }
.final-cta .btn-payment-plan { background-color: #ffc107; color: #333; }


/* Footer */
.site-footer-bottom {
  background-color: #343a40;
  color: #adb5bd;
  padding: 30px 20px;
  font-size: 0.9em;
}
.footer-contact-banner {
    text-align: center;
    padding: 15px;
    background-color: #495057;
    margin-bottom: 20px;
}
.footer-contact-banner img { height: 30px; }

.footer-links-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-column {
  flex-basis: 22%; /* Adjust for 4 columns */
  margin-bottom: 20px;
}
.footer-column h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.1em;
}
.footer-column ul li a {
  color: #adb5bd;
  display: block;
  padding: 3px 0;
}
.footer-column ul li a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-logos {
  text-align: center;
  margin-bottom: 20px;
}
.footer-logos img {
  height: 30px; /* Adjust */
  margin: 0 10px;
  opacity: 0.8;
}
.footer-logos a:hover img { opacity: 1; }

.footer-contact-info, .footer-copyright {
  text-align: center;
  margin-top: 10px;
}
.footer-contact-info a { color: #fff; font-weight: bold; }
.footer-copyright p { font-size: 0.85em; }

/* Responsive Adjustments (Basic) */
@media (max-width: 992px) {
    .site-header .header-main {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }
    .main-nav li { margin: 5px 0; }
    .header-contact-actions { margin-top: 10px; }

    .guarantees li, .financing-features li {
        flex-basis: 45%;
    }
    .customer-stories .story-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
  .footer-links-container {
    flex-direction: column;
  }
  .footer-column {
    flex-basis: 100%;
    text-align: center;
  }
  .guarantees li, .financing-features li {
    flex-basis: 100%;
  }
  .other-domains .other-domain-item {
      flex-direction: column;
      align-items: flex-start;
  }
  .other-domain-item > * { margin-bottom: 5px; }
  .quick-stats .stats-grid {
    grid-template-columns: 1fr; /* Stack stats */
  }
}