*,
*::before,
*::after {
    margin: 0;
          padding: 0;
   box-sizing: border-box;
}

:root {
  --primary-color: #1e3a8a;
  --accent-color: #f59e0b;
  --secondary-bg: #f3f4f6;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --border-color: #e5e7eb;
  --white: #ffffff;
}

/* Temporary fix */

html {

	       scroll-behavior: smooth;
	}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 line-height  : 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}
	/* Debug styles */


.container {
    max-width: 1200px;
	 margin: 0 auto;
  padding:        0 20px; 
	
}

navigation-header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
  top: 0;
   z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
	    margin:      0 auto;
	       padding     : 1rem 20px;
	    display: flex;
	   justify-content: space-between;
	   align-items: center;


}

.nav-brand {
  display: flex;
         align-items: center;
    min-width: 150px;
} 

.brand-logo {
	height: 48px;
	width: auto;
  filter: brightness(0) invert(0);
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

.burger-toggle {
   display: none;
  flex-direction    :    column;
    background: none;
  border: none;
  cursor: pointer;
    padding: 8px;
   gap: 6px;
}
/* NOTE: keep for legacy support */
	/* Browser compatibility */

/* Debug styles */
.burger-line {
    width: 24px;
   height: 3px;
  background: var(--text-dark);
    border-radius: 2px;
	transition: all 0.3s ease;

} 

.burger-toggle.active .burger-line:nth-child(1)	{
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-toggle.active .burger-line:nth-child(2) {
  opacity: 0;


}
/* TODO: optimize for mobile */


.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
	/* Animation and transitions */

.nav-links  {
	  display: flex;
	 list-style: none;
  gap: 2rem;
  align-items: center;}

.nav-link {
    text-decoration: none; 
	  color: var(--text-dark); 
	                    font-weight: 500; 
	   transition: color 0.3s ease, border-bottom 0.3s ease; 
	    position: relative; 
	  padding-bottom: 4px; 
	   border-bottom: 2px solid transparent;
}  

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
}

.hero-section {
	display: grid;
                    grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
   padding: 4rem 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
  color: var(--white);
  min-height: 600px;
}
	/* State modifiers */
.hero-content {
    padding     :     2rem;
}

.hero-section h1 {
   font-size: 2.75rem;
       font-weight: 800;
   margin-bottom: 1rem;
  line-height: 1.2;
   letter-spacing: -0.5px;
}

.hero-subtitle {
    opacity: 0.95;
    font-size: 1.2rem;
  margin-bottom: 2rem;
    font-weight: 300; 

}

.hero-buttons {
  display    :   flex;
   gap: 1rem;
   flex-wrap:   wrap;
}

/* FIXME: IE11 compatibility */

.cta-primary,
.cta-secondary {

	    cursor: pointer;
   font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;
    padding: 14px 32px;
   border: none;
   font-size: 1rem;
	text-decoration: none;
   border-radius: 6px;
}

.cta-primary {
  background: var(--accent-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);

}

.cta-primary:hover {

   background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);

}

.cta-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}
/* FIXME: IE11 compatibility */

.hero-visual {
	display: flex;
    justify-content: center;
   align-items: center;
  min-height: 400px;
}

.hero-image {
    max-width: 100%;
     height   :     auto;
	 border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;

}

.intro-section {
  padding: 5rem 20px;
  background: var(--secondary-bg);
}


.intro-section h2    {
    font-size :      2.2rem;
    margin-bottom    :       1.5rem;
  color: var(--primary-color);
  font-weight     : 700;
}  

.intro-section > .container > p {
    font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom  :     3rem;
	 max-width: 700px;
  line-height   :  1.8;
}

.features-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 2rem;
    margin-top   :      3rem;
}

.feature-card {
  background: var(--white); 
    padding: 2rem; 
	border-radius: 10px; 
  border-left: 4px solid var(--accent-color); 
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); 
			transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* State modifiers */

.feature-card h3 {
  color: var(--primary-color);

       margin-bottom: 1rem;

    font-size   :    1.3rem;
} 

.feature-card p {
     color: var(--text-light);
	 line-height: 1.7;
	}

.services-preview {

  padding: 5rem 20px;
  background: var(--white);
}

.services-preview h2   {

   font-size: 2.2rem;

 margin-bottom: 1rem;

  color: var(--primary-color);

  text-align: center;

  font-weight: 700;

}

.section-description {


   text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size  :  1.1rem;
}

.services-showcase  
  {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 2rem;
}

.service-item {
  background: var(--white);
   border-radius: 10px;
          overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-image {

         width: 100%;
   height: 220px;
     object-fit: cover;
  display: block;
} 

.service-item h3 {
  color: var(--primary-color);
    padding: 1.5rem 1.5rem 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.service-item p {
  padding: 0.75rem 1.5rem;
  color: var(--text-light);
		font-size: 0.95rem;
	line-height: 1.6;
}

.service-badge  
  {
   display: inline-block;
  background: var(--accent-color);
  color: var(--white);
  padding: 6px 14px;
   border-radius: 20px;
   font-size     :       0.8rem;
  font-weight: 600;
  margin: 1rem 1.5rem 1.5rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, #d97706 100%);
  color: var(--white);
   padding: 4rem 20px;
  text-align: center;
}

.cta-container
	{
    max-width: 600px;
	 margin: 0 auto;
} 

.cta-section h2 {

		font-size   :       2.2rem;
    margin-bottom    :  1rem;
   font-weight  :   700;


}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
   opacity: 0.98;
   line-height: 1.7;
}

.cta-button-large {


  background: var(--white);
  color: var(--accent-color);
   padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
	 font-weight: 700;
    display: inline-block;
  transition :       all 0.3s ease;
 font-size: 1.05rem;
    border  :  none;
   cursor  :pointer;
}

.cta-button-large:hover {

	  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);


}
/* Vendor-specific */
.contact-section {
   padding   :    5rem 20px;
  background: var(--secondary-bg);
}

.contact-section h2 {
  font-size   :       2.2rem;
    margin-bottom: 0.5rem;
  color: var(--primary-color);
  text-align: center;
   font-weight: 700;
	
}

.contact-form		{
  max-width: 600px;
	margin: 3rem auto;
  background: var(--white);
  padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
      margin-bottom: 1.5rem;
     }

.form-group label {
  display: block;
    margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea

{
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
     border-radius: 6px;
 font-size: 0.95rem;
  font-family: inherit;
    transition: all 0.3s ease;
  background: var(--white);
}

/* Cross-browser fix */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
/* Component styles */


.form-group textarea {
  resize: vertical;
}

.form-submit {
      width: 100%;
  padding :    14px 24px;
  background: var(--accent-color);
  color: var(--white);
  border: none;
	border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
    cursor: pointer;
  transition  :    all 0.3s ease;
}

.form-submit:hover {
   background: #d97706;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.site-footer{
     background: var(--primary-color);
  color: var(--white);
  padding: 3rem 20px 1.5rem;
     }

.footer-content    {
         max-width: 1200px;
  margin: 0 auto;
    display : grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
   font-weight: 700;
  color: var(--accent-color);
}
	/* Experimental feature */

/* Development only */

.footer-brand {
    margin-bottom: 1rem;
}
/* Third-party styles */
	/* State modifiers */
.footer-logo {
    height: 42px;
	   width: auto;
	  filter: brightness(0) invert(1);
	     transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-description {
          font-size: 0.95rem;
  line-height: 1.6;
   opacity: 0.9;
               margin-top: 0.5rem;
     }

.footer-links
	{
   list-style  :     none;
	
}

.footer-links li {
          margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--white);
   text-decoration: none;
    transition  :  color 0.3s ease;
    opacity: 0.85;
}  

.footer-links a:hover {
  color: var(--accent-color);
   opacity: 1;
}

.footer-contact {
	 font-size     :     0.95rem;
  line-height: 1.7;
 margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-contact strong {
  color: var(--accent-color);
    display  :       block;
   margin-bottom: 0.3rem; 

}

.social-icons {
  display: flex;
	gap:    1.2rem;
}

.social-link {
   display: flex;
                    align-items: center;
   justify-content: center;
  width: 44px;
   height: 44px;
  border-radius:      50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {

	  background: var(--accent-color); 
  transform: translateY(-2px); 



}

.social-icon {
	width: 22px;
          height:      22px;
  filter: brightness(0) invert(1);
}

/* Cross-browser fix */
.footer-bottom {

  max-width: 1200px;
   margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   text-align: center;
   font-size: 0.9rem;
    opacity: 0.75;
}
@media (max-width: 768px) {
  .burger-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.active {
    max-height: 300px;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .nav-link:hover,
  .nav-link.active {
    border-left: 3px solid var(--accent-color);
    border-bottom: none;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding: 2.5rem 20px;
    gap: 2rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-image {
    height: 300px;
  }

  .services-showcase {
    grid-template-columns: 1fr;
  }

  .service-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    border-radius: 8px;
  }

  .service-image {
    height: 150px;
    width: 150px;
  }

  .service-item h3 {
    padding: 1rem;
    margin: 0;
  }

  .service-item p {
    padding: 0 1rem 0.5rem;
    font-size: 0.9rem;
  }

  .service-badge {
    margin: 0.5rem 1rem 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .intro-section h2,
  .services-preview h2,
  .contact-section h2,
  .cta-section h2 {
    font-size: 1.75rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .cta-primary,
  .cta-secondary {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 180px;
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form {
    padding: 1.2rem;
  }

  .form-submit {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}.policySection {
   background: #f8f9fa;
  padding: 80px 2rem;
}


.policyContainer {
  max-width: 800px;
	    margin:    0 auto;
	   text-align     :      left;
}

.policyContainer h2 {
  font-size   :  2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
    font-weight: 700;
} 

.policyContainer h3{
      font-size: 1.5rem;
  color: var(--primary-color);
   margin    :       2rem 0 1rem;
   font-weight: 600;
}

.policyContainer p

{
  color: #7f8c8d;
  margin-bottom: 1.5rem;
                    line-height: 1.7;
  font-size: 1.1rem;
}

.policyContainer ul {
	 margin: 1rem 0 1.5rem 2rem;
        color: #7f8c8d;
}

.policyContainer ul li {
    margin-bottom: 0.5rem;
    line-height  :   1.6;
}

.policyContainer strong {
  color: var(--primary-color);
}@media (max-width: 768px) {
  .policyContainer h2 {
    font-size: 2rem;
  }

  .policyContainer h3 {
    font-size: 1.3rem;
  }

  .policyContainer p {
    font-size: 1rem;
  }

  .policySection {
    padding: 60px 1rem;
  }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
  color: var(--white);
   padding: 4rem 20px;
		text-align  :       center;
  min-height: 300px;
    display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero-content h1 {
   font-size: 2.5rem;
    font-weight: 800;
	 margin-bottom: 1rem;
  line-height    :   1.2;
}

.services-hero-content p {
  font-size   : 1.2rem;
  font-weight: 300;
    opacity  :    0.95;
}

.services-full {

	    padding: 5rem 20px;
  background: var(--white);

}

.services-full > .container > h2 {
   font-size   :2.2rem;
  text-align: center;
  color: var(--primary-color);
    margin-bottom     : 1rem;
   font-weight: 700;
}

.intro-text {

  text-align: center;
  color: var(--text-light);
  max-width     :    700px;
	margin: 0 auto 3rem;
                    font-size: 1.05rem;
  line-height    :     1.8;
}

.services-detailed {
  display: flex;
               margin-top: 3rem;
  flex-direction  :     column;
    gap: 4rem;
}

.service-detailed-item {
   display: grid;
	 grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
    padding: 2.5rem;
  background: var(--secondary-bg);
    border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition     :        all 0.3s ease;
}

.service-detailed-item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.service-detailed-item.reverse


{

	  grid-template-columns: 1fr 1fr;}

.service-detailed-item.reverse .service-detail-image {
    order: 2;
}

.service-detailed-item.reverse .service-detail-content {
   order: 1;
}

.service-detail-image {
 display: flex;
  justify-content: center;
   align-items: center;
  height: 350px;
}

.detail-image,
.service-image-alt {
  max-width: 100%;
  height: 100%;
       object-fit: cover;
	border-radius :       10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}



.service-detail-content h3 {
   font-size: 1.8rem;
  color: var(--primary-color);
   margin-bottom: 0.5rem;
		 font-weight:       700;
}

.service-meta
{
  color: var(--accent-color);
	font-weight     :    600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-detail-content p {
  color: var(--text-light); 
	         margin-bottom: 1.5rem; 
		line-height: 1.8;
}

.service-features 
 {
    list-style: none;
   margin: 1.5rem 0;
     padding: 0;
}

.service-features li {
    padding: 0.6rem 0;
          padding-left: 1.8rem;
   position: relative;
  color: var(--text-dark);
  font-weight: 500;
}

.service-features li::before {
  content: '✓';
    position    : absolute;
    left: 0;
  color: var(--accent-color);
    font-weight: 700;
   font-size  :   1.1rem;
}

.service-pricing {
    font-size: 1.3rem;
     font-weight: 700;
  color: var(--accent-color);
    margin-top: 1.5rem;
   padding-top:  1rem;
  border-top: 2px solid var(--border-color);
}

.comparison-section {
    padding: 5rem 20px;
  background: var(--secondary-bg);
}

.comparison-section h2 {
    text-align: center;
  font-size: 2.2rem;
  color: var(--primary-color);
   margin-bottom: 2rem;
   font-weight: 700;


     }

.comparison-table     {
	  background: var(--white);
   border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.comparison-row {
  display    :   grid;
  grid-template-columns: repeat(5, 1fr);
   gap: 0;
  border-bottom: 1px solid var(--border-color);
}  

.comparison-row:last-child {
	    border-bottom: none;


} 

.comparison-cell {
    padding    :      1.2rem;
    text-align: center;
   font-size: 0.95rem;
}

.header-row .header-cell {
  background: var(--primary-color);
  color: var(--white);
 font-weight: 700;
    padding: 1.5rem 1.2rem;
	
}

.label-cell {
  text-align: left;
 font-weight: 600;
  color: var(--primary-color);
}

.comparison-cell.check {
  color: #10b981;
   font-weight: 700;

}

.faq-section  
  {
   padding: 5rem 20px;
  background: var(--white);
}

.faq-section h2 {
  text-align: center;
   font-size: 2.2rem;
  color: var(--primary-color);
	 margin-bottom: 3rem;
   font-weight: 700;
}

.faq-items {
                    max-width: 800px;
      margin : 0 auto;
}

.faq-item {
       margin-bottom: 1rem;
               border-radius: 8px;
   overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--white);
    transition  :     all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
   width: 100%;
   padding: 1.5rem;
  background: var(--secondary-bg);
   border: none;
  cursor:        pointer;
		 display: flex;
   justify-content: space-between;
  align-items  :       center;
	 font-size: 1rem;
    font-weight     :    600;
  color: var(--primary-color);
    transition: all 0.3s ease;
  text-align: left;
}

.faq-question:hover {
   background: #e0e7ff;
  color: var(--accent-color);
}

.faq-question span:first-child {

   flex: 1;
     }

.faq-icon
	{
   font-size: 1.5rem;
	 transition   :       transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
    width :        30px;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
   max-height: 0;
   overflow: hidden;
               transition: max-height 0.3s ease;
  background: var(--white);
}

.faq-answer.show {


  max-height: 500px;
    padding  :    0 1.5rem 1.5rem;

}

.faq-answer p


{
  color: var(--text-light);
	 line-height: 1.8;
  margin     :    0;
}

.special-offer

{
  background: linear-gradient(135deg, var(--accent-color) 0%, #d97706 100%);
  color: var(--white);
   padding: 3rem 20px;
  text-align: center;


}

.special-offer .container {
        max-width: 600px;
}

.special-offer h3 {
        font-size: 1.8rem;
	margin-bottom:      1rem;
    font-weight:    700;
}

.special-offer p {
  font-size: 1rem; 
	    margin-bottom: 1.5rem; 
	    opacity   :    0.98; 
	    line-height: 1.6;

}

.offer-button {
  background: var(--white);
  color: var(--accent-color);
  padding: 14px 32px;
	border-radius: 6px;
     text-decoration: none;
   font-weight: 700;
    display: inline-block;
	transition: all 0.3s ease;
  font-size: 1rem;

}

.offer-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.thank-you-section
	{
    padding: 4rem 20px;
  background: var(--secondary-bg);
 min-height: 600px;
                    display: flex;
  align-items :    center;
   justify-content: center;
}

.thank-you-container {
	max-width:700px;
   width  :  100%;
  background: var(--white);
  padding:   3rem;
    border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thank-you-icon    {
   margin-bottom: 2rem;
    display :   flex;
   justify-content: center;
}

.thank-you-container h1	{
  color: var(--primary-color);
	font-size   : 2rem;
               margin-bottom: 1.5rem;
 font-weight: 800;
}

.thank-you-message


{
   -moz-border-radius: 8px;
         background: #f0fdf4;
 padding   :   1.5rem;
	border-radius: 8px;
   margin-bottom: 2rem;
	border-left: 4px solid #10b981;
}

.thank-you-message p     {
  color: var(--text-dark);

	   line-height: 1.7;

	   margin: 0.5rem 0;
}

.thank-you-details {
	        margin: 2rem 0; 
    text-align     :   left; 
  background: var(--secondary-bg); 
  padding   :        1.5rem; 
  border-radius: 8px;
	}

.thank-you-details h3 {
  color: var(--primary-color); 
	 margin-bottom: 1.2rem; 
  text-align: center; 
   font-size: 1.1rem;
}

.details-box {

   display: flex;
  flex-direction: column;
    gap: 1rem;}

.detail-row {
	    display: grid;
    grid-template-columns: 150px 1fr;
	gap: 1rem;
   padding     :  0.8rem;
  background: var(--white);
  border-radius: 6px; 


}

.detail-label

{
    font-weight: 600;

  color: var(--primary-color);
	
}

.detail-value {
  color: var(--text-dark);

	word-break: break-word;
}

.thank-you-next-steps {
    margin: 2rem 0;
  text-align: left;
}

.thank-you-next-steps h3 {
  color: var(--primary-color);
   margin-bottom: 1.5rem;
	text-align    : center;
   font-size: 1.2rem;}

.steps-list {
    display: flex;
    flex-direction:    column;
  gap: 1.5rem;
}

.step {
   display: grid; 
   grid-template-columns     : 50px 1fr; 
   gap: 1.5rem; 
    padding:      1rem; 
  background: var(--secondary-bg); 
   border-radius   :8px;
}

.step-number {
  background: var(--accent-color);
	  color: var(--white);
	  width: 50px;
	   height: 50px;
	         border-radius :     50%;
	  display: flex;
		align-items: center;
	  justify-content :  center;
	  font-weight: 700;
	  font-size     :     1.2rem;
}

.step-content h4 {
  color: var(--primary-color);
	 margin-bottom: 0.5rem;
   font-weight: 600;
}

.step-content p
	{
  color: var(--text-light);
  font-size: 0.95rem;
		line-height: 1.6;
}

.thank-you-bonus     {
  background: linear-gradient(135deg, var(--accent-color) 0%, #d97706 100%);
  color: var(--white);
   padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thank-you-bonus h4 {
   font-size: 1.1rem;
               margin-bottom: 0.5rem;
}

.thank-you-bonus p {
    margin: 0.5rem 0;
	 line-height: 1.6;
}

.bonus-access {
	    font-size   :  0.9rem;
  opacity: 0.9;
   font-style:     italic;
     }

.thank-you-actions 
 {
    display :   flex;
	 gap   :  1rem;
  margin   :     2.5rem 0;
	 flex-wrap: wrap;
}

.action-button {
   flex : 1;
    min-width  :150px;
   padding: 12px 24px;
   border-radius: 6px;
   text-decoration: none;
  font-weight  :   600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
       font-size: 0.95rem;
}

.action-button.primary {
  background: var(--accent-color);
  color: var(--white);
}

.action-button.primary:hover {
  background : #d97706;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.action-button.secondary {
  background: var(--primary-color);
  color: var(--white);
}

.action-button.secondary:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.thank-you-contact {

	  border-top: 1px solid var(--border-color);
   padding-top: 1.5rem;
  margin-top: 1.5rem;

}

.thank-you-contact p 
 {

	  color: var(--text-dark);
    margin    :      0.5rem 0;
   font-size: 0.95rem;
	}

.thank-you-contact strong {
  color: var(--primary-color);
}@media (max-width: 768px) {
  .services-hero-content h1 {
    font-size: 1.8rem;
  }

  .services-hero-content p {
    font-size: 1rem;
  }

  .service-detailed-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .service-detailed-item.reverse .service-detail-image,
  .service-detailed-item.reverse .service-detail-content {
    order: initial;
  }

  .service-detail-image {
    height: 250px;
  }

  .service-detail-content h3 {
    font-size: 1.4rem;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .comparison-cell {
    padding: 0.8rem 1rem;
    text-align: left;
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
  }

  .header-row .header-cell {
    display: none;
  }

  .label-cell {
    grid-column: 1 / -1;
    font-weight: 700;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
  }

  .label-cell::after {
    content: '';
  }

  .faq-question {
    padding: 1.2rem;
    font-size: 0.95rem;
  }

  .detail-row {
    grid-template-columns: 120px 1fr;
  }

  .step {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .thank-you-container {
    padding: 1.5rem;
  }

  .thank-you-container h1 {
    font-size: 1.5rem;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .action-button {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .services-hero-content h1 {
    font-size: 1.4rem;
  }

  .services-full > .container > h2 {
    font-size: 1.5rem;
  }

  .service-detail-image {
    height: 180px;
  }

  .service-detail-content h3 {
    font-size: 1.2rem;
  }

  .detail-row {
    grid-template-columns: 1fr;
  }

  .detail-label {
    margin-bottom: 0.3rem;
    display: block;
  }

  .faq-question {
    padding: 1rem;
  }

  .step {
    grid-template-columns: 35px 1fr;
  }

  .thank-you-container {
    padding: 1.2rem;
  }

  .thank-you-message {
    padding: 1rem;
  }
}