* {
	    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: #2c3e50;
    background-color: #f8f9fa;


}

.navbar {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding   : 1rem 0;
   position: sticky;
   top: 0;
   z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container

{
    max-width:       1200px;
  margin: 0 auto;
  padding: 0 2rem;
    display :      flex;
   justify-content: space-between;
  align-items :        center;
}

.logo-section {
       display: flex;
   align-items  :       center;
}

.logo-img {

   height: 50px;
                    cursor :        pointer;
	transition: transform 0.3s ease;
	


}

.logo-img:hover {

	  transform: scale(1.05);


}

.burger-menu {
  display: none;
   flex-direction: column;
  background: none;
  border: none;
	 cursor: pointer;
	 padding :    0.5rem;
}

.burger-line {
  width: 25px;
  height: 3px;
    background: white;
   margin :    5px 0;
       transition: all 0.3s ease;
   border-radius: 2px;
}

.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, -8px);
}

.nav-menu {
  display: flex; 
	   list-style: none; 
	   gap    :     2rem;
}

.nav-link {
    color: white;
  text-decoration: none;
   font-weight: 500;
   transition: all 0.3s ease;
      padding: 0.5rem 1rem;
    border-radius: 4px; 

}

.nav-link:hover {
	  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);


}  

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 6rem 2rem;
       text-align: center;
  min-height: 60vh;
    display: flex;
	 align-items: center;
    justify-content: center;
}

.hero-content {
   max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing    :      -1px;}

.hero-content p {
   margin-bottom    :        2rem;
	 font-size: 1.2rem;
    opacity: 0.95;
  line-height: 1.8;
}

.cta-button    {

		display: inline-block;
               background: white;
  color: #667eea;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     }

.cta-button:hover {
	  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);

}

.services-preview {
    max-width: 1200px;
  margin :    4rem auto;
   padding: 0 2rem;
}

.services-header {
  text-align: center;
   margin-bottom: 3rem;
}

.services-header h2 {
  font-size: 2.5rem;
        color: #1e3c72;
   margin-bottom: 1rem;
}

.services-header p {
   font-size: 1.1rem;
    color   :   #7f8c8d;
}



.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}  

.service-card {
	background: white;
    border-radius   :        12px;
          overflow  :        hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	 transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 220px;
     object-fit: cover;
}

.service-card h3 {
   font-size: 1.4rem;
    color: #1e3c72;
  padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    padding   : 0 1.5rem 1.5rem;
   color   :      #555;
  line-height: 1.7;
}

.advantages-section  {

	  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding: 4rem 2rem;
  margin: 4rem 0; 
}

.advantages-container {
   max-width: 1200px;
  margin: 0 auto;
}

.advantages-section h2 {
   font-size: 2.5rem;
  text-align: center;
   color: #1e3c72;
  margin-bottom: 3rem;
}

.advantages-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.advantage-item {
  background: white;
     padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
       transition: all 0.3s ease;


}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.advantage-number {
   display :      inline-flex;
  align-items: center;
       justify-content: center;
  width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color     : white;
  border-radius: 50%;
    font-weight: 700;
   font-size: 1.5rem;
   margin-bottom: 1rem;
}

.advantage-item h3 {
          font-size: 1.3rem;

		 color: #1e3c72;

	    margin-bottom   :        0.5rem;
}

.advantage-item p {
  color: #666;
    line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 4rem 2rem;
   text-align: center;
  margin: 4rem 0; 

}

.cta-content     {
      max-width: 800px;
		 margin:      0 auto;


}

.cta-content h2	{
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
   font-size: 1.1rem;
 opacity: 0.95;
    margin-bottom: 2rem;
} 

.cta-button-secondary {
    display: inline-block;
   background: white;
  color: #667eea;
    padding: 1rem 2.5rem;
   border-radius:     50px;
  text-decoration: none;
    font-weight: 600;
  transition  :  all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3); 
	
}

.contact-section {
     max-width: 1200px;
    margin: 4rem auto;
	 padding: 0 2rem;}

.contact-container {
	  background: white;
  padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-container h2

{
  font-size    :2rem;
          color: #1e3c72;
   text-align: center;
    margin-bottom: 0.5rem;
}

.contact-container > p {
         text-align: center;
  color: #7f8c8d;
    margin-bottom: 2rem;
     }

.contact-form {
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
   display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {

	padding: 1rem;
               border: 2px solid #ecf0f1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;


}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus    {
   outline: none;
   border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
	          grid-column: 1 / -1;
  resize: vertical;


}

.submit-btn {
   grid-column    :   1 / -1;
          padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color     :    white;
   border: none;
	border-radius : 8px;
   font-size: 1rem;
  font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.footer {
   	background: #2c3e50;

	  color: white;

	               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 h3		{
	font-size: 1.2rem;

   margin-bottom: 1rem;

   color: #ecf0f1;
}

.footer-section ul {
  list-style     :   none;
}

.footer-section ul li   {
    margin-bottom: 0.5rem;
}

.footer-section a {
   color     :  #bdc3c7; 
	   text-decoration: none; 
	   transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
} 

.footer-section p

{
	color: #bdc3c7;
    line-height: 1.8;
}

.footer-logo {
	   width: 150px;
   margin-bottom     :1rem;
	}

.footer-bottom

{
	text-align: center;
   padding-top   : 2rem;
    border-top :        1px solid #34495e;
 color: #95a5a6;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #1e3c72;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-link {
        padding: 1rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 4rem 1rem;
        min-height: 50vh;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .advantages-section h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .contact-container {
        padding: 2rem 1rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        border-bottom: 1px solid #34495e;
        padding-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button,
    .cta-button-secondary {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .advantages-list {
        grid-template-columns: 1fr;
    }
}.services-hero {
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
  padding: 5rem 2rem;
   text-align:center;
    min-height: 40vh;
   display    :      flex;
  align-items: center;
  justify-content: center;
}

.services-hero-content h1 {
    font-weight   :       700;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.services-hero-content p {
               font-size: 1.2rem;
      opacity: 0.95;
    max-width: 600px;
  margin: 0 auto; 
	
}

.services-detailed {

  max-width   :        1200px;
    margin:   4rem auto;
  padding: 0 2rem;
	}

.services-container {


  display: flex;
   flex-direction: column;
    gap: 3rem;
     }

.service-detailed-card
{
	background: white;
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   display: grid;
  grid-template-columns: 1fr 1fr;
    transition: all 0.3s ease;
}

.service-detailed-card:hover {
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.service-detailed-card:nth-child(even)   {
 grid-template-columns: 1fr 1fr;
  direction: rtl;
	
}

.service-detailed-card:nth-child(even) .service-content  
  {
    direction: ltr;
	
}

.service-image-wrapper {
   position: relative;
  overflow: hidden;
  height :      100%;
   min-height: 400px;
}

.service-image-wrapper img {
   width: 100%;
  height: 100%;
    object-fit: cover;
  transition: transform 0.3s ease;
}  

.service-detailed-card:hover .service-image-wrapper img {
  transform: scale(1.05);
	
}

.service-badge {
    position: absolute;
  top  :15px;
    right: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
	padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
   font-weight: 600;
}

.service-content {
   padding: 2.5rem;
      display: flex;
    flex-direction: column;
  justify-content: center;
}

.service-content h2 {
      font-size: 2rem;
  color: #1e3c72;
  margin-bottom: 1rem;
}

.service-description {
    color: #555;
    line-height: 1.8;
  margin-bottom  :     1.5rem;
   font-size: 1rem;
}

/* Minified version */


/* Browser compatibility */
.service-features {
  margin: 1.5rem 0;
}

.service-features h3 {
   font-size     :1.1rem; 
  color:    #1e3c72; 
    margin-bottom: 1rem;
}

.service-features ul     {
   list-style: none;
        padding:      0;
}

.service-features li {
  color: #666;
    padding: 0.6rem 0;
    padding-left: 1.5rem;
   position:      relative;
}
/* Third-party styles */



/* TODO: optimize for mobile */


/* Auto-generated CSS */

.service-features li::before


{
  content: "✓";

               position: absolute;

    left: 0;

  color : #667eea;

   font-weight: bold;

      font-size: 1.1rem;
}

.service-meta {
    display: flex;

	 gap: 2rem;

    margin: 1.5rem 0;

    font-size: 0.95rem;

    color     :       #7f8c8d;
}

.service-cta {
   display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 0.8rem 2rem;
         border-radius: 50px;
   text-decoration: none;
   font-weight  :  600;
   transition: all 0.3s ease;
   align-self: flex-start;
  margin-top: 1rem;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.services-additional 
 {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding: 4rem 2rem;
  margin: 4rem 0;
}

.additional-container    {
  max-width: 1200px;
    margin     :       0 auto;
}

.services-additional h2 {
  font-size: 2.5rem;
   text-align: center;
	 color: #1e3c72;
  margin-bottom: 3rem;
}

/* Colors and backgrounds */

.additional-services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;

}

.additional-card {
               background :white;
   padding:2rem;
    border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition   :        all 0.3s ease;
         text-align: center;
}

.additional-card:hover {

	  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); 
	}
	/* Component styles */
	/* Custom modifications */


	/* Animation and transitions */
.additional-card h3 {
   font-size: 1.3rem;
               color: #1e3c72;
    margin-bottom: 1rem;

}

.additional-card p    {
       color: #666;
   line-height: 1.6; 
}

.pricing-section {
  max-width: 1200px;
    margin: 4rem auto;
  padding  :    0 2rem;
}  

.pricing-container h2 
 {
    font-size     :2.5rem;
    text-align    :     center;
  color: #1e3c72;
    margin-bottom: 3rem;
}


.pricing-grid {
                  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap  :       2rem;




}


.pricing-card {
     background: white;
    border-radius: 12px;
    padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
   text-align: center;
  position: relative;
    border: 2px solid transparent;
	}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured   {
    border-color: #667eea;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

/* Build system output */



/* NOTE: keep for legacy support */



/* Third-party styles */
.featured-badge {
   position :absolute;
   top: -15px;
    left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color     :    white;
  padding     :   0.5rem 1.5rem;
    border-radius: 50px;
          font-size: 0.85rem;
  font-weight: 600;

}

.pricing-card h3{
 font-size :        1.5rem;
    color: #1e3c72;
   margin-bottom     :      1rem;
   margin-top: 0.5rem;
}

.price {
  font-size: 2.5rem; 
   color: #667eea; 
  font-weight: 700; 
   margin: 1rem 0; 

}

.price-desc{
    color: #7f8c8d;
                    font-size: 0.95rem;
 margin-bottom: 2rem;
}

.pricing-features {
   list-style: none;
        padding: 0;
               margin: 2rem 0;
  text-align: left;
}
	/* Animation and transitions */

.pricing-features li {

	color: #666;
    padding: 0.8rem 0;
 border-bottom: 1px solid #ecf0f1;
   padding-left: 1.5rem;
   position: relative; 

     }

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
   left: 0;
    color   :     #667eea;
   font-weight: bold;
} 

.pricing-btn {
  display: inline-block;
       background: #ecf0f1;
     color: #1e3c72;
     padding: 0.8rem 2rem;
             border-radius: 50px;
     text-decoration :      none;
     font-weight  :600;
      transition: all 0.3s ease;
       margin-top: 1.5rem;
}

.pricing-btn:hover

{
  -webkit-transform: translateY(-2px);
  background: #1e3c72;
        color: white;
  transform: translateY(-2px);
} 

.pricing-btn.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               color: white;
}

.pricing-btn.primary:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}  

.thankyou-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding: 4rem 2rem;
	min-height    :    70vh;
   display: flex;
    align-items: center;
  justify-content: center;
}

.thankyou-container {
   width: 100%;

  max-width: 700px;
}



.thankyou-content {
  background: white;
    border-radius: 16px;
    padding: 3rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
   text-align: center;
}

.success-icon    {


   width: 100px;
	height: 100px;
   margin:        0 auto 2rem;}

/* Typography */

.success-icon svg		{
   width: 100%;
    height: 100%;
  animation: scaleIn 0.6s ease-out;
}
@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1    {
    font-size: 2.5rem;
  color: #1e3c72;
   margin-bottom     :   1rem;
}

.thank-you-message {
   font-size: 1.2rem;
	color: #666;
    margin-bottom :2rem;
    line-height: 1.6;
}

.confirmation-details {
  background    :#f0f4f8;
    padding: 1.5rem;
   border-radius: 10px;
    margin: 2rem 0;
  color: #555;
   line-height: 1.8;
} 

.next-steps {
   margin: 2.5rem 0;
}  

.next-steps h2 {
		 font-size: 1.5rem;
  color: #1e3c72;
   margin-bottom: 2rem;
  text-align: left;
}

.steps-list


{
  display: flex;
   flex-direction: column;
    gap:       1.5rem;
}

.step {
  display: flex;
  gap: 1.5rem;
   text-align: left;
  align-items  :       flex-start;
}

.step-number {
   display: flex;

   align-items: center;

  justify-content: center;

	width: 50px;

   height: 50px;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

   color: white;

	 border-radius: 50%;

    font-weight: 700;

  flex-shrink    :       0;
}

.step-content h3 {
   color:#1e3c72;
   margin-bottom: 0.5rem;
}

.step-content p {
   color: #666;
  font-size: 0.95rem;
  line-height: 1.6; 
	
}

.contact-info-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
        padding: 2rem;
   border-radius: 10px;
   margin: 2rem 0;
}

.contact-info-box h3 
 {
  margin-bottom:       1rem; 
	   font-size: 1.2rem;
}

.contact-info-box p {

	 margin: 0.5rem 0;
   line-height     :    1.6;}

.action-buttons {


   display: flex;
               gap: 1rem;
   justify-content     :     center;
    margin-top: 2rem;
   flex-wrap: wrap;}

.btn-primary,
.btn-secondary {
   display: inline-block;
    padding: 0.9rem 2.2rem;
  border-radius: 50px;
     text-decoration: none;
    font-weight: 600;
  transition  :       all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.btn-primary:hover

{

  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);

	}

.btn-secondary {
   background: white;
   color: #667eea;
    border: 2px solid #667eea;
	
}

.btn-secondary:hover {
   background: #667eea;

  color: white;

  transform: translateY(-3px);
}

.additional-info {

    background: #f8f9fa;
   padding  :        3rem 2rem;
		margin-top: 3rem;
}

.additional-info-container {
	 max-width:       1200px;
    margin: 0 auto;
    display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap :       2rem;
}

.info-card {
  background:    white;
   padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
   font-size  :1.2rem;
    color: #1e3c72;
  margin-bottom: 1rem;
}



.info-card p	{
				 color  :    #666;
	 line-height: 1.7;
}@media (max-width: 1024px) {
    .service-detailed-card {
        grid-template-columns: 1fr;
    }

    .service-detailed-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-image-wrapper {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-content {
        padding: 2rem;
    }

    .service-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .steps-list {
        align-items: center;
        text-align: center;
    }

    .step {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detailed-card {
        grid-template-columns: 1fr;
    }

    .service-image-wrapper {
        min-height: 250px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-section {
        padding: 2rem 1rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }
}.policySection {
  padding: 80px 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   min-height     : 80vh;
}

.policyContainer {
    max-width: 800px;
  margin: 0 auto;
    text-align: left;
    background   :        white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
  font-size: 2.8rem;
  color: #1e3c72;
    margin-bottom: 2rem;
      font-weight     :     700;
  padding-bottom: 1rem;
  border-bottom: 3px solid linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.policyContainer h2 {
    font-size: 1.6rem;
               color: #2c3e50;
 margin-top: 2rem;
    margin-bottom: 1rem;
  font-weight: 600;

}

.policyContainer h2:first-of-type {
	margin-top: 0;
}

.policyContainer p  {


    color: #555;
   margin-bottom:   1.2rem;
  line-height: 1.8;
   font-size: 1rem;
	}

.policyContainer p strong{
  color: #1e3c72;
	font-weight: 600;
}

.policyContainer h2 {
  padding-left: 1rem;
    border-left: 4px solid #667eea;
}@media (max-width: 1024px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 50px 1rem;
        min-height: auto;
    }

    .policyContainer {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }
}@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.75rem;
    }

    .policyContainer {
        padding: 1rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.policyContainer		{

	  -webkit-animation: slideInFromTop 0.6s ease-out;
                    -moz-animation    : slideInFromTop 0.6s ease-out;
  animation  :        slideInFromTop 0.6s ease-out;}

.policyContainer h2 {
	 transition :   all 0.3s ease; 

}

.policyContainer h2:hover   {
   padding-left  :   1.5rem;
       color: #667eea;
}@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        box-shadow: none;
        max-width: 100%;
    }

    .policyContainer h1,
    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        orphans: 3;
        widows: 3;
    }
}