* {
   margin: 0;
    padding: 0;
    box-sizing  :       border-box;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
   line-height: 1.6;
  color: #2c3e50;
   background: #fafbfc;
}@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}.nav-wrapper {
    position: sticky;
   top: 0;
   z-index: 100;
    background: #fff;
   border-bottom:1px solid #e8eef5;
  transition: box-shadow 0.3s ease;
}

.nav-container {


   max-width: 1200px;
          margin: 0 auto;
          padding: 1rem 2rem;
   display: flex;
    justify-content: space-between;
   align-items: center;
}

.nav-logo-section {
    display: flex;
  align-items: center;


}

.nav-logo {


    max-height: 45px;
    width: auto;
}

.burger-menu {
  display: none;
	flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.burger-line {
    width: 28px;
      height: 3px;
  background: #2c3e50;
   border-radius: 2px;
   transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .burger-line:nth-child(2)
	{
	 opacity  :      0;
}

.burger-menu.active .burger-line:nth-child(3) {

  transform: rotate(-45deg) translate(8px, -7px);}

/* FIXME: IE11 compatibility */

.nav-menu {
    display: flex;
    list-style: none;
  gap: 2rem;
    align-items: center;
}

.nav-link

{
	               font-size     :      1rem;
    font-weight  :    500;
   text-decoration    :none;
   transition: color 0.3s ease;
                    position: relative;
  color: #2c3e50;
	}

.nav-link:hover {
      color: #3498db;}

.nav-link::after {
  content: '';
  position: absolute;
    bottom: -5px;
   left: 0;
  width:   0;
    height: 2px;
   background: #3498db;
 transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid #e8eef5;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    .nav-link::after {
        display: none;
    }
}.hero-section {
    max-width:     1200px;
   margin     :  0 auto;
   padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;
}

.hero-content h1 {

	    font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
   margin-bottom: 1.5rem;
    color: #1a2a3a;
	}

.hero-subtitle   {
  font-size: 1.1rem;
   color: #555;
  margin-bottom  :     2rem;
    line-height: 1.8; 

}

.cta-button {
  display   :inline-block;
	background: #3498db;
    color:   #fff;
    padding: 0.875rem 2rem;
  border-radius     : 6px;
  text-decoration :  none;
	font-weight: 600;
  transition  :       all 0.3s ease;
   border :        2px solid #3498db;
}

.cta-button:hover {
  background: #2980b9;
    border-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);


}

.hero-image img {
   width:100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.8s ease;
}@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }
}.intro-section    {
  background: linear-gradient(135deg, #ecf0f1 0%, #f5f7fa 100%);
   padding: 3rem 2rem;
  text-align    :       center;
}

.intro-container {
   max-width: 800px;
  margin: 0 auto;
}


.intro-container h2 {
    font-size: 2.2rem;
  margin-bottom: 1.5rem;
                    color  :   #1a2a3a;
}

.section-intro  
  {
                    font-size    :  1.05rem;
    color: #555;
    line-height: 1.8;
}

.benefits-grid {
  max-width: 1200px;
   margin: 3rem auto;
    padding: 0 2rem;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
       gap: 2rem;
}

.benefit-card {
    background: #fff;
  padding  : 2rem;
   border-radius: 10px;
  text-align: center;
   border :       1px solid #e8eef5;
   transition    : all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover
{
	  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
   border-color: #3498db;
	}

.benefit-icon {
    margin-bottom: 1.5rem;
  height:        60px;
    display: flex;
    justify-content   :     center;
    align-items : center;
}

.benefit-icon img {
	    width: 50px;
    height: 50px;
  filter: drop-shadow(0 2px 4px rgba(52, 152, 219, 0.2));
  transition: all 0.3s ease;
     }

.benefit-card:hover .benefit-icon img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(52, 152, 219, 0.4));
}

.benefit-card h3 {
  font-size: 1.3rem;
	   margin-bottom: 1rem;
				color: #1a2a3a;
}

.benefit-card p {
   color: #666;
    font-size: 0.95rem;
  line-height: 1.6;
}

.consultation-section {
	          max-width: 1200px;
   margin: 4rem auto;
   padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
     }

.consultation-content h2 {
  font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2a3a;

} 

.consultation-content p {
   font-size  :    1rem;
         color: #555;
   margin-bottom: 2rem;
  line-height: 1.8;


}

.cta-button-secondary
	{

	border: 2px solid #3498db;
  background: transparent;
	border-radius: 6px;
   padding   :  0.875rem 2rem;
  font-weight: 600;
	 transition  :        all 0.3s ease;
   color: #3498db;
  text-decoration: none;
        display: inline-block;
     }

.cta-button-secondary:hover
	{
   background: #3498db; 
  color: #fff;
}

.consultation-image img {

	    width: 100%;
          height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     }@media (max-width: 768px) {
    .consultation-section {
        grid-template-columns: 1fr;
    }

    .consultation-content h2 {
        font-size: 1.8rem;
    }
}.process-section {
  background: #fafbfc;
   padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
         text-align: center;
}

.process-section h2   {
 color: #1a2a3a;
  margin-bottom: 3rem;
 font-size: 2.2rem;
} 

.process-steps {
    display : grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-item {
   background: #fff;
  padding: 2rem;
                    border-radius :     10px;
  border-left: 4px solid #3498db;
   text-align: left;
    transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); 

}  

.step-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
	  transform: translateY(-4px);
}

.step-number {
  font-size   :  2.5rem;
    font-weight: 700;
   color: #3498db;
    margin-bottom :      1rem;
}

.step-item h3 {
    font-size: 1.2rem;
   margin-bottom: 0.8rem;
      color: #1a2a3a;
}



.step-item p {


  font-size: 0.95rem;

   color:      #666;

    line-height: 1.6;
     }

.offer-section {
  padding: 3rem 2rem;
  max-width: 1200px;
    margin     :      0 auto;
}

.offer-wrapper h2 {
	   font-size :  2.2rem;
    text-align  :    center;
   color: #1a2a3a;
    margin-bottom: 2.5rem;


}

.service-cards {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;


}

.service-item


{
   background: #fff;
   border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-item img {
   width: 100%;
	 height: 240px;
     object-fit: cover;
  transition:transform 0.3s ease;
}

.service-item:hover img {
  transform: scale(1.05);
}

.service-item h3     {
	font-size: 1.25rem; 
	  padding: 1.5rem 1.5rem 0.5rem; 
	    color: #1a2a3a;
}

.service-item p {
	padding     :0 1.5rem 1.5rem;
   color: #666;
   font-size: 0.95rem;
       line-height    :    1.6;
}

.contact-section {
   padding  :     3rem 2rem;
    background: #ecf0f1;
      border-top: 2px solid #bdc3c7;
   border-bottom: 2px solid #bdc3c7;
}

.contact-wrapper {
   max-width   :  700px;
  margin: 0 auto;
}

.contact-section h2 {
    text-align: center;
   font-size: 2.2rem;
   margin-bottom: 1rem;
   color: #1a2a3a;
}

.contact-intro {
   text-align: center;
   font-size: 1rem;
   color: #555;
  margin-bottom: 2.5rem;
    line-height: 1.8;


}

.contact-form {
  background: #fff; 
		padding: 2rem; 
	   border-radius: 10px; 
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
	 margin-bottom: 0.5rem;
   font-weight: 600;
	color: #2c3e50;
               font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea 
 {
    width: 100%;
   padding: 0.875rem 1rem;
  border: 1px solid #bdc3c7;
   border-radius    :  6px;
   font-size: 0.95rem;
    font-family: inherit;
  transition: all 0.3s ease;
	
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline   :  none;
    border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}


.form-group textarea {
  resize: vertical;
		min-height: 120px;
}

.form-submit {
    width :       100%;
    padding: 1rem;
  background: #3498db;
  color: #fff;
    border: none;
	border-radius     :    6px;
    font-size: 1rem;
    font-weight: 600;
    cursor   :    pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
		 background    : #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
     }

.form-submit:active {
  transform: translateY(0);
	
}

.footer-wrapper {


  background: #2c3e50;
                    color: #ecf0f1;
          padding: 3rem 2rem 1rem;
   margin-top: 4rem;


}

.footer-container {
  max-width: 1200px;
	margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap :     2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
  flex-direction     :       column;

}

.footer-logo {

   max-height: 50px;
	width :     auto;
   margin-bottom: 1rem;}

.footer-section h4 {
    font-size: 1.1rem;
	margin-bottom    :1rem;
  color: #fff;
}

.footer-links {
      list-style: none;
     }

.footer-links li {
   margin-bottom: 0.7rem;
}

.footer-links a
{
  color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
  color: #3498db;
}  

.footer-contact p {
    color  :     #bdc3c7;
	font-size: 0.95rem;
   line-height: 1.8;
      margin-bottom: 0.5rem;
}

.footer-contact a    {
      color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;

}

.footer-contact a:hover


{
  color: #3498db;
}

.footer-bottom {
  text-align: center;
   padding-top :    2rem;
   border-top: 1px solid #34495e;
     color   :      #95a5a6;
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-section {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .process-section h2,
    .offer-wrapper h2,
    .intro-container h2 {
        font-size: 1.6rem;
    }

    .contact-section h2 {
        font-size: 1.6rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
	text-align :   center;
          color: #fff;
    margin-top: 0;
}

.services-hero-content h1     {
   font-size: 2.8rem;
  margin-bottom    :  1rem;
    font-weight: 700;
   line-height: 1.2;
}

.services-hero-content p {
  font-size: 1.1rem;

	  opacity: 0.95;

		 max-width: 700px;

	   margin: 0 auto;

	   line-height: 1.8;
}@media (max-width: 768px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 0.95rem;
    }
}.services-overview {

     padding   :      3rem 2rem;
  background: #fafbfc;
  text-align: center;


	}

.services-container {

	    max-width :  1200px; 
	  margin: 0 auto;
     }

.services-container h2 {
   color: #1a2a3a;
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
}

.overview-intro {


       font-size: 1rem;
         color: #555;
    line-height: 1.8;
  max-width    :       800px;
      margin: 0 auto;
	}

.services-detailed {
	max-width: 1200px;
	 margin: 0 auto;
   padding: 3rem 2rem;
}

.services-wrapper {
   display    :     flex;
  flex-direction: column;
  gap: 4rem;
}

.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
    padding: 2rem;
   background: #fff;
   border-radius: 12px;
   border: 1px solid #e8eef5;
	 transition:     all 0.3s ease;
}

.service-detail-item:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
        border-color: #667eea;
}

.service-detail-reverse
{
  direction: rtl;
}

.service-detail-reverse > * {
  direction: ltr;
}

.service-detail-image img {
  width: 100%;
    height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-detail-content h3 {
       font-size: 1.8rem;
   margin-bottom: 1.2rem;
    color  : #1a2a3a;
}

.service-detail-content p {
  font-size: 0.95rem;
    color     :   #555;
    line-height: 1.8;
  margin-bottom: 1.5rem;
}

.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   :        #555;
    font-size :    0.95rem;
  line-height  :      1.6;
}


.service-features li::before {
  content: '';
    position: absolute;
   left: 0;
  top: 0.8rem;
  width: 6px;
  height: 6px;
    background: #667eea;
  border-radius: 50%;
}

.service-duration		{
  color: #667eea;
    font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}@media (max-width: 768px) {
    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .service-detail-reverse {
        direction: ltr;
    }

    .service-detail-content h3 {
        font-size: 1.4rem;
    }
}.service-packages {
  background: linear-gradient(135deg, #ecf0f1 0%, #f5f7fa 100%);
  padding  :   4rem 2rem;
}

.packages-container {
    max-width: 1200px; 
   text-align: center; 
   margin: 0 auto;
}

.packages-container h2 {

   font-size: 2.2rem;
   margin-bottom: 1rem;
  color: #1a2a3a;
	}

.packages-intro {
  font-size: 1rem;
   color :   #555;
	margin-bottom:        3rem;
}

.packages-grid {
          display    :  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 2rem;
}

.package-card {
      background: #fff;
      border-radius: 12px;
     padding :2rem;
       border: 1px solid #e8eef5;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     position: relative;
     display: flex;
       flex-direction: column;
	}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.package-featured {
	border: 2px solid #667eea;
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}



.package-featured:hover {
	  transform: translateY(-12px) scale(1.02);
     }

.package-badge {
  transform: translateX(-50%);
    position   :        absolute;
    font-size: 0.85rem;
  border-radius: 20px;
    color: #fff;
    left: 50%;
  top: -12px;
  background: #667eea;
	font-weight  :    600;
   padding: 0.4rem 1.2rem;
}

.package-header {
	 margin-bottom: 1.5rem;
   border-bottom: 1px solid #e8eef5;
  padding-bottom    : 1.5rem;
}

.package-header h3 {
  font-size:    1.5rem;
   color     :    #1a2a3a;
  margin-bottom: 0.5rem;
}

.package-price {
   font-size: 1.8rem;
	 font-weight     :       700;
    color: #667eea;
}

.package-list {
   list-style: none;
    margin: 0 0 2rem 0;
  padding  :       0;
	 flex-grow: 1;
}

.package-list li {
   border-bottom: 1px solid #ecf0f1;
  padding: 0.7rem 0;
         color: #555;
  font-size: 0.95rem;
}

.package-list li:last-child {
   border-bottom: none;
}

.package-button {
  display: inline-block;
   background: #667eea;
   color: #fff;
  padding: 0.875rem 2rem;
   border-radius: 6px;
    text-decoration: none;
	 font-weight: 600;
    transition: all 0.3s ease;
  border: 2px solid #667eea;
    text-align: center;
}

.package-button:hover    {
  background: #5568d3; 
	     border-color: #5568d3;
}

.package-button-featured {
  background: #667eea;
	color: #fff;
}

.package-button-featured:hover {
	background: #764ba2;
	border-color: #764ba2;
}

.service-faq {
               margin: 0 auto;
	 padding     :        4rem 2rem;
	max-width: 1200px;
}

.faq-container   {
       text-align: center;


}  

.faq-container h2 {
   font-size: 2.2rem;
         margin-bottom: 3rem;
  color: #1a2a3a; 

}

.faq-grid {

  display :     grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
	}

.faq-item {
  background: #fff;
	  border-radius: 10px;
	    border: 1px solid #e8eef5;
	    overflow: hidden;
	  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-header {


   padding: 1.5rem;
    background: #fafbfc;
      cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  transition: all 0.3s ease;
  user-select: none;
	}

.faq-header:hover {
   background   :     #f0f4f8;
}

.faq-header h3
	{
     font-size: 1.05rem;
   color: #1a2a3a;
   margin: 0;
	text-align: left;
   flex   :     1;
	}

.faq-icon {
	 width: 24px;
   height     :      24px;
  filter: drop-shadow(0 0 0px rgba(102, 126, 234, 0.3));
	 transition: all 0.3s ease;
   flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
     padding: 0;
                    max-height: 0;
   overflow: hidden;
  transition: max-height 0.3s ease;
    background:#fff;
}

.faq-item.active .faq-content 
 {
    max-height: 500px;
  padding: 1.5rem;
   border-top: 1px solid #e8eef5;
}

.faq-content p {
  color: #555;
  font-size:    0.95rem;
					line-height:     1.8;
    margin: 0;
}@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .service-packages {
        padding: 3rem 1rem;
    }

    .packages-grid {
        gap: 1.5rem;
    }

    .package-featured {
        transform: scale(1);
    }

    .package-featured:hover {
        transform: translateY(-8px);
    }
}.thankyou-section {
	min-height:       60vh;
    display: flex;
		 align-items: center;
   justify-content: center;
    padding     :  3rem 2rem;
  background: linear-gradient(135deg, #ecf0f1 0%, #f5f7fa 100%);
}

.thankyou-container
{
               background:  #fff;
    border-radius: 15px;
   padding: 3rem 2rem;
	max-width :   600px;
         text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-icon {
   margin-bottom: 1.5rem;
}

.thankyou-icon img   {
	 width    :      80px;
  height: 80px;
  filter: drop-shadow(0 4px 10px rgba(102, 126, 234, 0.3));
   animation: bounceIn 0.6s ease;
}@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}.thankyou-title {
	font-weight: 700;
    font-size :   2.2rem;
  color   :      #1a2a3a;
                    margin-bottom: 0.5rem;
}

.thankyou-subtitle {
    font-size: 1.1rem;
	 color: #667eea;
  margin-bottom: 2rem;
    font-weight: 600;
}

.thankyou-info {

		text-align:       left;
	  background: #fafbfc;
	  padding: 2rem;
	  border-radius: 10px;
	  margin: 2rem 0;

}

.thankyou-info p {
  color: #555;
  font-size   :       0.95rem;
    line-height: 1.8;
                    margin: 0 0 1rem 0;
}

.thankyou-info p:first-child {
    font-weight: 600;
	   color    :#1a2a3a;
}

.info-details {
   background: #fff;
	padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
                    border-left: 4px solid #667eea;
}

.info-row
{
	display: flex;
    justify-content: space-between;
    padding  :        0.8rem 0;
   border-bottom: 1px solid #ecf0f1;
}

.info-row:last-child {
    border-bottom :none;
}

.info-label {
  font-weight: 600;
    color: #1a2a3a;
   font-size: 0.9rem;
}

.info-value {
  font-size: 0.9rem;
   color: #555;
}

.thankyou-message {
   font-weight: 500;
  color: #1a2a3a;
}

.thankyou-contact {
    margin-top: 1.5rem;
 padding-top: 1.5rem;
  border-top: 1px solid #ecf0f1;
}

.contact-link {
	    color: #667eea;
    text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover	{
	text-decoration: underline;
  color: #764ba2;
}

.thankyou-buttons {
    display: flex;
   gap: 1rem;
  margin-top: 2rem;
   flex-wrap: wrap;
}

.button-primary,
.button-secondary {
    padding: 0.875rem 1.5rem;
	border-radius: 6px;
  transition: all 0.3s ease;
   font-size: 0.95rem;
    display: inline-block;
  flex: 1;
  text-decoration: none;
  font-weight: 600;
    text-align: center;
   min-width :  140px;
}

.button-primary {

   background: #667eea;
    color: #fff;
   border: 2px solid #667eea;

}

.button-primary:hover	{
	background : #5568d3;
	 border-color: #5568d3;
  transform: translateY(-2px);
}

.button-secondary {
  background: transparent;
  color: #667eea;
	 border: 2px solid #667eea;
}

.button-secondary:hover {
               background: #667eea;
   color: #fff;
  transform: translateY(-2px);
}

.next-steps {
  padding: 3rem 2rem;
    background: #fafbfc;
}

.steps-container {
    max-width: 1000px;
  margin  :      0 auto;
}

.steps-container h2 {
  text-align: center;
    font-size    :        2rem;
  margin-bottom    :        2.5rem;
	 color: #1a2a3a;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;


}

.step-box 
 {
  background: #fff;
  padding: 2rem;
   border-radius: 10px;
    border: 1px solid #e8eef5;
  text-align: center;
  transition     :  all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
   border-color: #667eea;
}

.step-num {
   font-size: 2.5rem;
      font-weight: 700;
     color: #667eea;
   	margin-bottom: 0.8rem;
}

.step-box h3 {
  font-size: 1.2rem;
	color: #1a2a3a;
  margin-bottom: 0.8rem;
}

.step-box p {
   color :#555;
   font-size: 0.95rem;
       line-height     :1.6;
}@media (max-width: 768px) {
    .thankyou-container {
        padding: 2rem 1.5rem;
    }

    .thankyou-title {
        font-size: 1.8rem;
    }

    .thankyou-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        min-width: 100%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .steps-container h2 {
        font-size: 1.6rem;
    }
}.policySection {

	  padding: 80px 2rem;

  background: #f8f9fa;
	
     }

.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 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;
    }
}