* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #ffffff;
}

.navbar-container {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffd700;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.burger-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
}

.burger-line {
  width: 24px;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  min-height: 600px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #1a365d;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 35px;
  line-height: 1.5;
}

.hero-button {
  display: inline-block;
  padding: 16px 42px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.expertise-section {
  background: linear-gradient(180deg, #f7fafc 0%, #edf2f7 100%);
  padding: 80px 20px;
}

.expertise-section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #1a365d;
  margin-bottom: 60px;
  font-weight: 700;
}

.expertise-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.expertise-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #e2e8f0;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #cbd5e0;
}

.expertise-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.expertise-card h3 {
  padding: 25px 25px 12px;
  font-size: 1.4rem;
  color: #1a365d;
  font-weight: 600;
}

.expertise-card p {
  padding: 0 25px 25px;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
}

.services-overview-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.services-overview-section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #1a365d;
  margin-bottom: 60px;
  font-weight: 700;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.service-item {
  padding: 35px;
  background: #ffffff;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateX(5px);
}

.service-header h3 {
  color: #1a365d;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-item p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-main-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 70px 20px;
  color: #ffffff;
  border-radius: 16px;
  margin: 60px 20px;
  max-width: calc(100% - 40px);
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-inner p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  line-height: 1.7;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  padding: 16px 45px;
  background: #ffffff;
  color: #667eea;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.benefits-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.benefits-section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #1a365d;
  margin-bottom: 60px;
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.benefit-item {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
  border-radius: 12px;
  border: 1px solid #cbd5e0;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
  transform: scale(1.05);
}

.benefit-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #2d3748;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}

.contact-section {
  background: linear-gradient(180deg, #f7fafc 0%, #edf2f7 100%);
  padding: 80px 20px;
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2.4rem;
  color: #1a365d;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-subtitle {
  text-align: center;
  color: #4a5568;
  margin-bottom: 50px;
  font-size: 1.05rem;
}

.contact-form {
  background: #ffffff;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #cbd5e0;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #ffffff;
  color: #2d3748;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%232d3748' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.submit-button {
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.submit-button:active {
  transform: translateY(0);
}

.footer-section {
  background: #1a365d;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-logo-block {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-info-block h3,
.footer-contact-block h3,
.footer-links-block h3 {
  font-size: 1.15rem;
  margin-bottom: 18px;
  font-weight: 600;
  color: #ffd700;
}

.footer-info-block p,
.footer-contact-block p,
.footer-links-block a {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #cbd5e0;
}

.footer-contact-block p strong {
  color: #ffffff;
  display: block;
  margin-top: 12px;
  margin-bottom: 6px;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a0aec0;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #1a365d;
    gap: 0;
    padding: 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .burger-toggle {
    display: flex;
  }

  .burger-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .burger-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .expertise-section h2,
  .services-overview-section h2,
  .benefits-section h2,
  .contact-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .expertise-grid,
  .services-list,
  .benefits-grid {
    gap: 25px;
  }

  .expertise-card h3 {
    font-size: 1.15rem;
  }

  .cta-main-section {
    margin: 40px 15px;
  }

  .cta-inner h2 {
    font-size: 1.8rem;
  }

  .cta-inner p {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 30px;
  }

  .footer-content {
    gap: 35px;
  }
}

@media (max-width: 480px) {
  .navbar-inner {
    height: 60px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-card {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .submit-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}.policySection {
    padding: 80px 2rem;
    background: #f8f9fa; 
	
}

.policyContainer {
	 max-width: 800px;
    margin: 0 auto;
  text-align: left;
}

.policyContainer h2 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
   font-size: 2.5rem;
    font-weight: 700;


}


.policyContainer p {
   color: #7f8c8d;
   margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.1rem;
}@media (max-width: 768px) {
  .policyContainer h2 {
    font-size: 2rem;
  }

  .policyContainer p {
    font-size: 1rem;
  }

  .policySection {
    padding: 60px 1rem;
  }
}.services-hero {
  background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
  color: #ffffff;
    padding: 80px 20px;
     text-align: center;
}

.services-hero-content h1 {

		font-size: 3rem;
  font-weight: 700;
    margin-bottom    :       20px;
  line-height: 1.2;}

.services-hero-content p
	{
     font-size: 1.25rem;
  opacity: 0.95;
   line-height: 1.5;
  max-width: 700px;
    margin :       0 auto;
}

.services-main {
     padding: 80px 20px;
  background: #ffffff;

}

.services-container {
        max-width: 1200px;
  margin: 0 auto;
    display  :    grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.service-detailed-card
	{
    border: 1px solid #e2e8f0;
    border-radius: 12px;
       overflow    : hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition  :  all 0.4s ease;
  background:     #ffffff;
}

.service-detailed-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.service-card-header {
		padding: 35px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
   border-bottom: 2px solid #e2e8f0;
    display: flex;
  justify-content    :     space-between;
   align-items: center;

}

.service-card-header h2 {
       margin: 0;
   font-weight: 700;
  color: #1a365d;
			font-size: 1.8rem;
}

.service-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: #ffffff;
  padding  :  8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
    font-weight :    600;
  white-space: nowrap;
}

.service-card-body {
    display     :      grid;
    grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.service-card-image {
  width: 100%;
   height: 400px;
         object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-description
	{
  display: flex;
   flex-direction     :       column;
}

.service-description > p:first-child {
    font-size: 1.05rem;
    color: #4a5568;
	margin-bottom: 20px;
  line-height: 1.6;
     font-weight: 500;
}

.service-description h3 {
          font-size: 1.2rem;
    color: #2d3748;
               margin: 25px 0 15px 0;
   font-weight: 600;
}

.service-features {
   list-style     :    none;
	margin-bottom   : 30px;
    flex-grow: 1;
}

.service-features li {
    padding:        10px 0;
    padding-left: 25px;
               position: relative;
    color: #4a5568;
   font-size: 0.95rem;
    line-height:      1.5;
}

.service-features li::before {
  content: '';
    position: absolute;
  left    :   0;
  top: 50%;
  transform: translateY(-50%);
  width :        6px;
  height:     6px;
       background: #2563eb;
  border-radius: 50%;
}

.service-pricing {
    background: #f7fafc;
    padding: 18px;
  border-radius: 8px;
      margin-bottom: 20px;
    border-left: 4px solid #2563eb;
   display: flex;
    justify-content: space-between;
                    align-items    :        center;
}



.price-label {
    font-weight: 600;
  color: #2d3748;
   font-size: 0.95rem;

}

.price-value {
  font-size: 1.4rem;
   font-weight: 700;
  color: #2563eb;
}

.service-cta-button {
   display: inline-block; 
   padding: 14px 32px; 
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%); 
    color: #ffffff; 
   text-decoration: none; 
   border-radius: 6px; 
    font-weight: 600; 
   transition: all 0.3s ease; 
	text-align: center;
}

.service-cta-button:hover {

  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);

}

.comparison-section

{

	  max-width: 1200px;

	    margin: 0 auto;

	  padding    :        80px 20px;

	   background: #f7fafc;
}



.comparison-section h2 {
   text-align: center;
    font-size: 2.4rem;
    color    :  #1a365d;
  margin-bottom: 50px;
   font-weight :        700;
}


.comparison-table-wrapper {
    overflow-x   :auto;
    border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table   {
     width: 100%;
    border-collapse: collapse;
    background: #ffffff;
     } 

.comparison-table thead {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
      color: #ffffff;
}

.comparison-table th {
    padding: 20px;
     text-align    :       left;
      font-weight: 600;
      font-size: 0.95rem;
}

.comparison-table td {
   padding: 18px 20px;
  border-bottom: 1px solid #e2e8f0;
    color     :   #4a5568;
  font-size: 0.9rem;
}

.comparison-table tbody tr:hover {
    background: #f7fafc;
}

.comparison-table tbody tr:nth-child(even) {
	background    : #ffffff;
}

.check-mark {
  color: #2ecc71;
   font-weight: 700;
       font-size: 1.1rem;
}

.faq-services-section {
    max-width: 1000px;

	  margin: 0 auto;

	    padding: 80px 20px;
}

.faq-services-section h2 {
   text-align: center;
    font-size: 2.4rem;
   color: #1a365d;
  margin-bottom  :50px;
    font-weight: 700;
} 

.faq-container {
   display  :       grid;
   grid-template-columns: 1fr;
    gap:        15px; 

}

.faq-item	{
      background: #ffffff;

  border: 1px solid #e2e8f0;

        border-radius: 8px;

   overflow    :       hidden;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

         transition   : all 0.3s ease;
     }

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
	width: 100%;
   padding: 20px;
  background: #ffffff;
   border: none;
  cursor:pointer;
    font-size: 1rem;
   font-weight: 600;
    color: #2d3748;
                    display: flex;
    justify-content: space-between;
  align-items: center;
   transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f7fafc;
    color: #2563eb;
}

.faq-icon {
   font-size  :      1.3rem;
    color: #2563eb;
   transition    :transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
	padding    :  0 20px;

    max-height: 0;

   overflow: hidden;

   transition: all 0.3s ease;
}

.faq-answer.active	{
  max-height: 500px;
   	padding: 20px;
}

.faq-answer p {
    color: #4a5568;
	line-height: 1.7;
   margin: 0;
    font-size: 0.95rem;
}

.contact-cta-section {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
  color: #ffffff; 
  padding :     60px 20px; 
    text-align: center; 
	border-radius: 16px; 
    margin: 60px 20px;


}

.contact-cta-section h2 {
   font-size: 2.2rem;
   margin-bottom :        15px;
  font-weight: 700;
}

.contact-cta-section p {
  font-size: 1.05rem;
    margin-bottom    :        30px;
  opacity: 0.95;
}

.contact-cta-button {
   display     :        inline-block;
    padding: 14px 40px;
  background: #ffffff;
   color: #667eea;
  text-decoration  :      none;
    border-radius: 6px;
	font-weight: 600;
  transition: all 0.3s ease;
}

.contact-cta-button:hover {
	  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

}

.thankyou-hero {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);

	  color   :      #ffffff;

	  padding: 100px 20px;

	     text-align: center;

	  min-height  :400px;

	   display: flex;

	  align-items: center;

	    justify-content     :   center;
}

.thankyou-container    {
  max-width: 600px;
}

.success-icon {

    justify-content: center;
	color: #ffffff;
    display    :      flex;
	margin-bottom: 25px;
     }

.success-icon svg {
    -moz-animation: checkmark-pop 0.6s ease-out;
   animation    :       checkmark-pop 0.6s ease-out; 

}@keyframes checkmark-pop {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.15) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}.thankyou-hero h1 {
  font-size: 2.8rem;
   margin-bottom: 12px;
    font-weight: 700;
}

.thankyou-subtitle {
  font-size: 1.15rem;
  opacity: 0.95;
	
}

.confirmation-section {

	   max-width: 1100px;
  margin    :       -60px auto 0;
	padding: 60px 20px 80px;
    background:      #ffffff;
 position: relative;
    z-index: 10;

}

.confirmation-container {
    display: grid;
  grid-template-columns    :2fr 1fr;
    gap: 50px;
}



.confirmation-content {
  background: #ffffff; 
	    padding  :     40px; 
	   border-radius :        12px; 
	  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1); 
		 border: 1px solid #e2e8f0;
}

.confirmation-content h2 {
    font-size: 2rem;
    color     :      #1a365d;
  margin-bottom: 20px;
   font-weight: 700;
} 

.confirmation-content > p:first-of-type {
    line-height: 1.7;
   margin-bottom: 35px;
    font-size: 0.95rem;
                    color: #4a5568;
}

.confirmation-details {
   background   :    #f7fafc;
	padding: 25px;
  border-radius   :        8px;
  margin-bottom: 35px;
  border-left: 4px solid #2563eb;


}

.confirmation-details h3 {
   color: #2d3748;
    font-size: 1.1rem;
      margin-bottom: 15px;
          font-weight: 600;
}

.details-box {
   display: flex;
  flex-direction: column;
    gap: 10px;
}

.details-box p

{
   color: #4a5568;
				 font-size: 0.9rem;
   margin: 0;
}

.details-box strong {
     color: #2d3748;

}

.next-steps h3


{
   color: #2d3748;
   font-size: 1.1rem;
 margin: 30px 0 20px 0;
    font-weight: 600;
}

.steps-list {
        list-style  :        none;
    display : flex;
    flex-direction: column;
   gap: 18px;
  margin-bottom    :   35px;
}

.steps-list li {
      display: flex;

   gap: 20px;

    align-items: flex-start;}

.step-number {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
      color: #ffffff;
  width  :    40px;
         height: 40px;
	border-radius:   50%;
   display: flex;
   align-items: center;
   justify-content: center;
  font-weight: 700;
   flex-shrink: 0;
}

.step-content h4 {
	 color: #2d3748;
   font-size: 0.95rem;
    margin: 0 0 5px 0;
  font-weight: 600;
}

.step-content p {
		color: #4a5568;
    font-size: 0.85rem;
    margin: 0;
    line-height    :    1.5;
     }

.contact-info-box	{
  background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
	 padding: 25px;
	 border-radius: 8px;
   border-left: 4px solid #0ea5e9;
	margin-bottom: 35px;
}

.contact-info-box h3 {
  color: #0c4a6e;
  font-size: 1.05rem;
	margin-bottom: 12px;
 font-weight: 600;
} 

.contact-info-box p {
    color : #0c4a6e;
  font-size: 0.9rem;
    margin: 8px 0;
}

.contact-phone {
    font-size: 1.3rem;
	font-weight: 700;
	 color: #0284c7;
}

.contact-time {
  font-size: 0.85rem;
    opacity: 0.85;
}

.next-action		{
   background : #f7fafc;
	 padding:     25px;
    border-radius: 8px;
  text-align: center;
}

.next-action p    {
	  color: #4a5568;
    margin-bottom: 20px;
  font-size: 0.95rem;
}

.action-buttons {
  display: flex;
  gap: 15px;
  justify-content  :       center;
   flex-wrap: wrap;
	
}

.action-button {

    display   :  inline-block;
     padding: 12px 28px;
					border-radius: 6px;
   text-decoration: none;
   font-weight: 600;
  font-size: 0.9rem;
 transition: all 0.3s ease;
     }

.action-button.primary     {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color     :        #ffffff;
}

.action-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.action-button.secondary {
  background: #e2e8f0;
  color: #2d3748;
     border: 1px solid #cbd5e0;}

.action-button.secondary:hover {
      background   :        #cbd5e0;
  transform: translateY(-2px);}  

.benefit-aside {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: 30px;
   border-radius: 12px;
      border: 1px solid #e2e8f0;
  height: fit-content;
    position: sticky;
   top: 100px;
}

.benefit-aside h3 {
    color: #2d3748;
     font-size: 1.2rem;
  margin-bottom: 20px;
	font-weight: 700;
}

.bonus-list 
 {
    list-style: none;
  display     :  flex;
    flex-direction     :        column;
   gap: 12px;
}

.bonus-list li {
      color: #4a5568;
    font-size :     0.9rem;
  padding-left: 20px;
    position: relative;
  line-height  :    1.5;}

.bonus-list li::before {
  content: '';
    position: absolute;
    left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
    height: 5px;
    background: #2563eb;
  border-radius: 50%;
}

.testimonials-thankyou {
    max-width: 1200px;
  margin:        0 auto;
    padding    :        60px 20px;
}

.testimonials-thankyou h2 {
	 text-align   :center;
  font-size:2.2rem;
   color     :       #1a365d;
  margin-bottom: 40px;
   font-weight: 700;
}

.testimonials-grid {
    display:     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
   border-left: 4px solid #fbbf24;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px); 
	
}

.testimonial-text 
 {
	color: #4a5568;
	font-size: 0.95rem;
   line-height: 1.7;
    margin-bottom :       15px;
   font-style: italic;
}

.testimonial-author    {
    color: #2d3748;
 font-weight :      600;
    font-size    :   0.9rem;
    margin    :  0;
}@media (max-width: 1024px) {
  .service-card-body {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .confirmation-container {
    grid-template-columns: 1fr;
  }

  .benefit-aside {
    position: static;
    top: auto;
  }

  .service-card-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}@media (max-width: 768px) {
  .services-hero-content h1 {
    font-size: 2rem;
  }

  .service-card-header h2 {
    font-size: 1.4rem;
  }

  .service-card-image {
    height: 250px;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
  }

  .thankyou-hero h1 {
    font-size: 1.8rem;
  }

  .steps-list li {
    gap: 12px;
  }

  .action-buttons {
    flex-direction: column;
  }

  .action-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding: 50px 15px;
  }

  .services-main {
    padding: 40px 15px;
  }

  .service-card-body {
    padding: 20px;
  }

  .service-card-header {
    padding: 20px;
  }

  .confirmation-content {
    padding: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}