*		{

	box-sizing: border-box;
  margin: 0;
  padding: 0;
     }

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5a7b;
    --accent-color: #4a8fc7;
    --light-bg: #f5f7fa;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-light: #e5e7eb;
}

html {
               scroll-behavior: smooth;
	}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
   background-color: #fff;
  color: var(--text-dark);
  line-height : 1.6;
}

.navbar-main {
  background-color: var(--primary-color);
    padding  :  0;
    position :sticky;
    top: 0;
       z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1200px;
  margin    :    0 auto;
	display: flex;
	justify-content :  space-between;
    align-items: center;
  padding     :    0.8rem 2rem;
}

.navbar-logo-section {

	   align-items: center;
    display     :  flex;
	}



.navbar-logo
{
       height: 45px;
    width: auto;
  filter: brightness(0) invert(1);

}

.navbar-menu {
  display: flex;
  list-style: none;
    gap: 0;
	 align-items: center;
}

.navbar-item {
	position: relative;
}

.navbar-link {
	 display: block;
      padding: 1rem 1.5rem;
     color: #fff;
     text-decoration: none;
      font-size: 0.95rem;
       font-weight:     500;
        transition:       background-color 0.3s ease;
}

.navbar-link:hover {

  background-color: var(--secondary-color);
	


} 

.burger-menu-trigger {
    display: none;
   flex-direction:   column;
  cursor: pointer;
    gap: 6px;
}

.burger-menu-trigger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu-trigger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu-trigger.active span:nth-child(2)     {
    opacity: 0;
}

.burger-menu-trigger.active span:nth-child(3) {


  transform: rotate(-45deg) translate(7px, -7px);
}@media (max-width: 768px) {
    .burger-menu-trigger {
        display: flex;
    }

    .navbar-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    }

    .navbar-menu.active {
        max-height: 300px;
    }

    .navbar-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-link {
        padding: 1rem 1.5rem;
    }

    .navbar-container {
        padding: 0.8rem 1rem;
    }
}.hero-section {
    display   :   flex;
    align-items: center;
   justify-content: space-between;
		max-width: 1200px;
  margin     :   0 auto;
    padding: 4rem 2rem;
    gap: 3rem;
}

.hero-content {
   flex: 1;
   max-width: 550px;
}

.hero-content h1 {
   font-size: 3rem;
  color: var(--primary-color);
    margin-bottom: 1.5rem;
  line-height: 1.2;
 font-weight: 700;
}

.hero-subtitle {
         font-size: 1.1rem;
  color: var(--text-light);
    margin-bottom:     2rem;
               line-height: 1.8;
}

.hero-image {
  flex: 1;
   min-height: 400px;
}

.hero-image img {
      width: 100%;
   height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-button {
	 display     :       inline-block;
    padding    :     1rem 2.5rem;
  background-color: var(--accent-color);
   color: white;
  text-decoration: none;
   border-radius: 8px;
        font-weight: 600;
  font-size: 1rem;
   transition: background-color 0.3s ease, transform 0.3s ease;
	border :none;
   cursor    :pointer;
}

.cta-button:hover {
   background-color: #3a7ab0; 
  transform: translateY(-2px);
}

.services-intro {
  background-color: var(--light-bg);
   padding: 4rem 2rem;
}

.services-wrapper {
     max-width: 1200px;
  margin: 0 auto;
     }

.services-wrapper h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
	text-align: center;
  margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
  text-align: center;
  color: var(--text-light);
   font-size    :   1.05rem;
	margin-bottom: 3rem;
	max-width: 600px;
          margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap    : 2rem;
}

.service-card {
  background-color: white;
    padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--accent-color);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-icon  {
   display     :  flex;
    align-items   : center;
    height: 60px;
   justify-content: center;
   width: 60px;
   margin-bottom   :     1.5rem;
}

.service-icon img {

	    width: 100%;
       height: 100%;
  stroke: var(--accent-color);
   fill: none;
   stroke-width: 2;
    stroke-linecap     :round;
    stroke-linejoin: round;}

.service-card h3
	{
  font-size:      1.35rem;
  color: var(--primary-color);
   margin-bottom: 1rem;
  font-weight    :      600;
}

.service-card p {
  color: var(--text-light);

	    font-size     :        0.95rem;

	   line-height: 1.7;
}

.success-stories {
    padding: 4rem 2rem;


}

.stories-wrapper {
       max-width: 1200px;
   margin: 0 auto;


}

.stories-wrapper h2		{
   font-size: 2.5rem;
  color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
   font-weight: 700;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap     :        2.5rem;
	margin-top: 3rem;
}

.story-item   {
  background-color: var(--light-bg);
  border-radius    :        12px;
	overflow    :   hidden;
    transition    :       transform 0.3s ease;
} 

.story-item:hover {
  transform: scale(1.02);
}



.story-image {
   width: 100%;
  height: 250px;
    overflow: hidden;
}

.story-image img {
  width: 100%;
   height:        100%;
	object-fit: cover;
}

.story-item h3 {
  font-size:1.4rem;
  color: var(--primary-color);
        padding: 1.5rem 1.5rem 0.5rem;
   font-weight: 600;
}

.story-item p {
  color: var(--text-light);

	padding: 0.5rem 1.5rem 1.5rem;

       font-size  :   0.95rem;

    line-height    :      1.7; 

}

.process-section {
	  background-color: var(--primary-color);
   padding: 4rem 2rem;
    color: white;
     }

.process-wrapper {
   max-width: 1200px;
  margin: 0 auto; 
	
}

.process-wrapper h2 {
                    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
   font-weight: 700;
}

.process-wrapper .section-description {
  color: rgba(255, 255, 255, 0.8);
}



.process-steps {
               display  :   grid; 
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 2rem; 
 margin-top: 3rem;
}

.step-block {
  text-align    :    center;
   padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius  :        12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {


    display:  inline-flex;
  align-items: center;
   justify-content   :        center;
    width: 60px;
    height:     60px;
  background-color: var(--accent-color);
    border-radius: 50%;
					font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
	}

.step-block h3 {
  font-size: 1.25rem;
  margin-bottom:    1rem;
  font-weight: 600;
	
}

.step-block p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
   line-height: 1.6;
}

.cta-section   {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
      padding: 4rem 2rem;
    text-align: center;
  color: white;
}

.cta-wrapper {
   max-width: 800px;
  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;

  color: rgba(255, 255, 255, 0.95);
	}

.cta-button-primary {
    display: inline-block; 
	  padding: 1.2rem 3rem; 
	   background-color: white; 
	  color: var(--primary-color); 
	   text-decoration: none; 
	    border-radius: 8px; 
	    font-weight: 700; 
	   font-size: 1.05rem; 
	   transition: transform 0.3s ease, box-shadow 0.3s ease; 
		 border: none; 
	  cursor: pointer; 
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-section    {
   padding: 4rem 2rem;
  background-color: var(--light-bg);
}

.contact-wrapper {
	    max-width: 700px;
   margin: 0 auto;
	}

.contact-wrapper h2 {
    font-size: 2.2rem;

  color: var(--primary-color);

  text-align: center;

   margin-bottom: 1rem;

 font-weight: 700;
}

.contact-form {
    background-color: white;
  padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);


}

.form-group {
  margin-bottom: 1.5rem;
}

.form-input, .form-textarea {


   width: 100%;
  padding  :   0.9rem 1rem;
  border: 1px solid var(--border-light);
    border-radius :8px;
   font-size: 0.95rem;
    font-family: inherit;
   transition: border-color 0.3s ease, box-shadow 0.3s ease;
	}

.form-input:focus, .form-textarea:focus {
	  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(74, 143, 199, 0.1);
     }

.form-textarea {
  resize: vertical;
    min-height: 120px;
}

.form-submit {
  width: 100%;
  padding:     1rem;
  background-color: var(--accent-color);
   color: white;
    border: none;
    border-radius: 8px;
   font-size: 1rem;
   font-weight: 600;
               cursor    :      pointer;
                    transition :        background-color 0.3s ease, transform 0.3s ease;
}

.form-submit:hover {
  background-color: #3a7ab0;
  transform: translateY(-2px);
} 

.footer-main {
  background-color: var(--primary-color);
	 color: white;
   padding: 3rem 2rem;
   margin-top: 4rem; 
	
}

.footer-wrapper {

   max-width: 1200px;
    margin: 0 auto;
     }

.footer-content {
      display :       grid;
   grid-template-columns: 1fr 2fr;
               gap: 3rem;
   margin-bottom: 3rem;
  padding-bottom   :       2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-section {
   align-items    :      flex-start;
   display     :     flex;
}

.footer-logo {
	height: 50px;
	 width :auto;
  filter: brightness(0) invert(1);


}

.footer-info {
    display: grid;
   grid-template-columns: 1fr 1fr;
     gap: 2rem;
}

.footer-address, .footer-phone {
   font-size: 0.95rem;
}

.footer-address p, .footer-phone p {
        margin: 0.3rem 0;
}


.footer-navigation {
   margin-bottom    :   2rem;
}

.footer-navigation h4 {
   font-size: 1rem;
    margin-bottom: 1rem;
  font-weight    :  600;
}

.footer-links {
	   list-style   :     none;
  display: flex;
    flex-wrap: wrap;
   gap     :        1.5rem; 


} 

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
    text-decoration   :none;
	font-size: 0.9rem;
   transition: color 0.3s ease;
}

.footer-links a:hover {

	  color: white;


}

.footer-bottom {
   text-align: center;
   font-size:0.85rem;
  color: rgba(255, 255, 255, 0.7);
	padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 2.5rem 1rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image {
        min-height: 300px;
    }

    .services-wrapper h2, 
    .stories-wrapper h2, 
    .process-wrapper h2,
    .cta-section h2,
    .contact-wrapper h2 {
        font-size: 1.8rem;
    }

    .services-grid, .stories-grid, .process-steps {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}.services-header {
  background: linear-gradient(135deg, #1a3a52, #2d5a7b);
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.services-header-content h1 {
    font-size: 2.8rem; 
    margin-bottom:       1rem; 
    font-weight: 700;

}

.services-header-content p {
                    font-size: 1.15rem; 
	  color: rgba(255, 255, 255, 0.9); 
		 max-width: 600px; 
	    margin-left    :   auto; 
	   margin-right: auto;
}

.service-detailed {
  padding: 3rem 2rem;
	 background-color: #fff;
}

.services-container {
    max-width: 1200px;
 margin: 0 auto;
	display: grid;
    gap: 4rem;
}

.service-detail-item {
    border-left:     5px solid #4a8fc7;
	  background-color: #f5f7fa;
	    border-radius     :       12px;
	 overflow: hidden;
	   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-detail-header {
  display: flex;
  align-items: center;
	 gap: 2rem;
    padding: 2rem;
   background-color: white;
    border-bottom: 1px solid #e5e7eb;
}

.service-detail-icon {
  width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items  : center;
  justify-content: center;
}

.service-detail-icon img {
      width:      100%;

	  height     : 100%;

		 stroke: #4a8fc7;

	  fill     :  none;

	  stroke-width: 2;

	  stroke-linecap: round;

	    stroke-linejoin: round;
	}

.service-detail-header h2 {
   font-size: 1.8rem;
 color: #1a3a52;
    font-weight: 700; 
	
}

.service-detail-content {
   padding: 2rem;
}

.service-detail-content h3 {

   font-size: 1.25rem;
	color: #1a3a52;
    margin: 1.5rem 0 1rem;
  font-weight: 600;
}


.service-detail-content p {
   color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1rem;

}

.service-features-list {
  list-style: none;
  padding: 0;
    margin: 1rem 0 2rem;
    display :     grid;
   gap: 0.8rem;
} 

.service-features-list li    {
  display: flex;
  align-items: flex-start;
	color: #6b7280;
    font-size: 0.95rem;
	line-height   :       1.6;
   padding-left: 1.5rem;
      position: relative;
}

.service-features-list li:before {
  content: "✓";
       position: absolute;
  left: 0;
    color :        #4a8fc7;
                    font-weight     :     700;
    font-size:   1.1rem; 

}

.service-cta-inline {
  margin-top: 2rem;
   padding-top: 2rem;
	 border-top: 1px solid #e5e7eb;
}

.cta-link  {
    border-radius     :       8px;
	 padding: 0.8rem 2rem;
  background-color: #4a8fc7;
   display: inline-block;
    color: white;
   font-size : 0.95rem;
  font-weight: 600;
   text-decoration   : none;
   transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-link:hover {
   background-color: #3a7ab0;
  transform: translateY(-2px);
}

.service-packages {
   background-color: #f5f7fa;
   padding: 4rem 2rem;
}

.packages-wrapper {
    max-width  :    1200px;
    margin    :     0 auto;
}

.packages-wrapper h2 {
  font-size: 2.5rem;
  color: #1a3a52;
  text-align: center;
    margin-bottom: 1rem;
  font-weight: 700;
}

.packages-grid{
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
   margin-top: 3rem;


}



.package-card {
	background-color: white;
  padding: 2.5rem 1.5rem;
       border-radius: 12px;
   text-align: center;
  position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   border: 1px solid #e5e7eb;
}

.package-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.package-card.package-featured		{
         border     :  2px solid #4a8fc7;

	  box-shadow: 0 8px 25px rgba(74, 143, 199, 0.15);
}

.featured-badge {

	  position: absolute;
  -ms-transform: translateX(-50%);
   top: -12px;
	 left :50%;
  transform: translateX(-50%);
    background-color: #4a8fc7;
  color: white;
  padding: 0.4rem 1rem;
   border-radius: 20px;
 font-size: 0.8rem;
    font-weight: 600;


}

.package-card h3 {
               font-size: 1.5rem;
  color: #1a3a52;
   margin-bottom: 0.5rem;
  font-weight: 700;
}

.package-subtitle {
  color: #6b7280; 
	  font-size: 0.9rem; 
	    margin-bottom :       1.5rem;
}

.package-features

{
   list-style: none;
    padding: 2rem 0;
  text-align: left;
   border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.package-features li

{
  padding: 0.6rem 0; 
  color: #6b7280; 
	 font-size: 0.9rem; 
   display: flex; 
  align-items: center;
}

.package-features li:before {
  content: "•";
  color: #4a8fc7;
    font-weight   :     700;
   margin-right   : 0.8rem;
}

.package-price
	{

	   font-size: 1.2rem;
   color: #1a3a52;
   font-weight: 600;
   margin: 1.5rem 0;


}

.package-cta {
	display: block;
  width: 100%;
    padding: 0.9rem;
    background-color: #4a8fc7;
       color: white;
   text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
  transition: background-color 0.3s ease;
  border: none;
    cursor: pointer;
}

.package-cta:hover {
         background-color     :  #3a7ab0;
}

.comparison-section {
     padding: 4rem 2rem;
	 background-color:   white;}

.comparison-wrapper {
		max-width :1200px;
   margin    :0 auto;

}

.comparison-wrapper h2 {
    font-size    :    2.5rem;
  color :    #1a3a52;
  text-align:  center;
    margin-bottom: 3rem;
   font-weight: 700;
}

.comparison-table-wrapper {
	   overflow-x: auto;
  border-radius  :  12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);}

.comparison-table {

	    background-color: white;
		 width: 100%;
	   border-collapse:    collapse;


}

.comparison-table thead {
       background-color: #1a3a52;
   color:    white;
}

.comparison-table th {
  padding: 1.2rem;
    text-align: left;
      font-weight: 600;
                    font-size: 0.95rem; 
	
}

.comparison-table td {
  padding: 1.2rem;
          border-bottom: 1px solid #e5e7eb;
   color  :       #6b7280;
   font-size: 0.9rem;
}

.comparison-table tbody tr:hover {

   background-color: #f5f7fa;
}

.comparison-table td.highlight {
   background-color: #e3f2fd;

		color: #1a3a52;

	    font-weight: 600;
}

.faq-section {
    background-color  :      #f5f7fa;
    padding: 4rem 2rem;
}

.faq-wrapper {
    max-width: 1000px;
  margin: 0 auto;
}

.faq-wrapper h2 {
    font-size   :       2.5rem;
     color: #1a3a52;
       text-align: center;
      margin-bottom: 3rem;
       font-weight: 700;
}

.faq-grid{
   display: grid;
    gap: 1.5rem;
}

.faq-item{
 background-color: white;
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display   :    flex;
		 justify-content: space-between;
		align-items: center;
	    padding: 1.5rem;
	  cursor: pointer;
	      transition: background-color 0.3s ease;
	    background-color: #f9fafb;
	  border-bottom: 1px solid #e5e7eb;
}

.faq-question:hover {
          background-color: #f0f3f7;


}

.faq-question h4 {
	 font-size: 1rem;
    color: #1a3a52;
	margin     :  0;
  font-weight: 600;
	}

.faq-toggle     {

	   font-size: 1.5rem;
  color: #4a8fc7;
   font-weight: 700;
  transition:     transform 0.3s ease;}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
   padding     :0 1.5rem;
    max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer    {
     max-height: 500px;
    padding: 1.5rem;
}


.faq-answer p {
    color: #6b7280;
   line-height: 1.8;
   margin: 0;
}

.cta-final {
  background: linear-gradient(135deg, #2d5a7b, #1a3a52);
    color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-final-wrapper {
   max-width :800px;
	 margin  :      0 auto;
}

.cta-final h2 {

   font-size   :    2.2rem;
       margin-bottom: 1rem;
   font-weight: 700;
	}

.cta-final p {


       font-size: 1.1rem;
       margin-bottom: 2rem;
     color: rgba(255, 255, 255, 0.95);


}

.cta-button-final {
	 display: inline-block;
	 padding: 1.2rem 3rem;
	background-color     :        white;
	color: #1a3a52;
   text-decoration   :    none;
   border-radius: 8px;
  font-weight: 700;
   font-size: 1.05rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-final:hover
{
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.thankyou-container {
   min-height    :       100vh;
  display: flex;
   align-items: center;
     justify-content: center;
    padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa, #e8ecf1);
}

.thankyou-wrapper {
    background-color: white;
    border-radius     :    16px;
   padding :     3rem;
   max-width  :     700px;
   width   :    100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.success-icon {
    justify-content: center;
   margin:       0 auto 2rem;
   display: flex;
   align-items: center;
    height:     100px;
    width: 100px;
}

.success-icon img  {
    width: 100%;
   height   :       100%;
      stroke: #4a8fc7;
    fill: none;
    stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: scaleInAnimation 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}@keyframes scaleInAnimation {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-wrapper h1 {
    font-size: 2rem;
  color: #1a3a52;
    margin-bottom: 1rem;
  font-weight: 700;
}

.success-message {
  background-color: #e3f2fd;
       padding: 1.5rem;
   border-radius: 12px;
   margin-bottom: 2rem;
    border-left: 4px solid #4a8fc7;
}

.success-message p {

	 color: #1a3a52;

  margin: 0.5rem 0;

    line-height: 1.6;

    font-size: 0.95rem;

}

.confirmation-details {

	  background-color    :        #f5f7fa;

		padding: 2rem;

	    border-radius   :    12px;

	   margin-bottom   :     2rem;

	   text-align: left;
     }

.confirmation-details h2 {
    font-size: 1.3rem;
  color: #1a3a52;
  margin-bottom    : 1.5rem;
  text-align: center;
                    font-weight: 600;
}

.details-grid {
    display: grid;
	 gap: 1rem;
}

.detail-item {
  display: flex;
    justify-content: space-between;
   align-items: center;
       padding: 0.8rem;
  background-color: white;
          border-radius: 8px;
	
}

.detail-label {
      font-weight: 600;
    color: #1a3a52;
  font-size: 0.9rem;
}

.detail-value {
   color: #6b7280;
	font-size: 0.9rem; 

}

.next-steps {
  margin-bottom: 2rem;
} 

.next-steps h2 {
    font-size: 1.3rem;
  color: #1a3a52;
    margin-bottom: 1.5rem;
	font-weight    :     600;
}

.steps-list {
	display :    grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap   :     1.5rem;
   text-align: center;
}

.step {
   border-radius: 12px;
   padding: 1.5rem;
   background-color: #f5f7fa;
}

.step-icon
	{


   display     :  flex;
    align-items: center;
       justify-content: center;
  width: 50px;
  height: 50px;
    background-color: #4a8fc7;
    color: white;
    border-radius: 50%;
  font-weight  :     700;
    font-size: 1.5rem;
   margin: 0 auto 1rem;

}

.step h3 {
  font-size: 1rem;
   color: #1a3a52;
    margin-bottom: 0.5rem;
   font-weight   :        600;
}

.step p {
    font-size: 0.85rem;
   color:  #6b7280;
   line-height: 1.5;
}

.additional-info {
   margin-bottom: 2rem;
}

.additional-info h2 {

	   font-size: 1.3rem;
    color: #1a3a52;
   margin-bottom: 1.5rem;
  font-weight: 600;
}



.info-cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap  :       1.5rem;
    text-align: center;

}

.info-card  
  {
        padding     :       1.5rem;
   border-radius: 12px;
   background-color: #f5f7fa;
}

.info-card h3 {
   font-size   :1rem;
  color: #1a3a52;
  margin-bottom: 0.8rem;
   font-weight: 600;
}

.info-card p {
         font-size :   0.85rem;
  color: #6b7280;
   line-height: 1.6;
}

.thankyou-actions     {
       display: grid;
  grid-template-columns: 1fr 1fr;
               gap: 1rem;
   margin-bottom: 2rem;}

.action-button {
  padding: 0.9rem 1.5rem;
	text-decoration: none;
  border-radius:8px;
   font-weight: 600;
   font-size    :   0.95rem;
  transition: all 0.3s ease;
    border: 2px solid #4a8fc7;

}

.action-button.primary {
          background-color: #4a8fc7;
    color: white;
}

.action-button.primary:hover {
 background-color: #3a7ab0;
  transform: translateY(-2px);
}

.action-button.secondary
	{
	    background-color: transparent;
                    color: #4a8fc7;
	}

.action-button.secondary:hover  {
   background-color: #e3f2fd; 
	  transform: translateY(-2px);
} 

.contact-reminder

{
   background-color: #e3f2fd;
    padding: 1.5rem;
   border-radius: 12px;
	 border-left: 4px solid #4a8fc7;
}

.contact-reminder p {


  margin: 0.5rem 0;
	 color: #1a3a52;
	    font-size: 0.9rem;
	  font-weight: 500;

}@media (max-width: 768px) {
    .services-header-content h1 {
        font-size: 2rem;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .service-detail-header h2 {
        font-size: 1.4rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }

    .steps-list {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
    }

    .thankyou-wrapper {
        padding: 2rem 1.5rem;
    }

    .action-button {
        width: 100%;
    }

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}.policySection {
   padding: 80px 2rem;
  background  :      #f8f9fa;
}

.policyContainer {
    max-width: 800px;
  margin: 0 auto;
    text-align: left;
}

.policyContainer h2 {
  margin-bottom     :1.5rem;
    font-weight: 700;
	 font-size: 2.5rem;
   color: #2c3e50;
}



.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;
    }
}