* {
  margin: 0;
   padding: 0;
          box-sizing: border-box;
}

html {


    scroll-behavior: smooth;

}

body {


  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height     :      1.6;
  color: #2c3e50;
   background-color: #ffffff;
	}  

.navbar		{
  background-color: #f8f9fa;
    padding: 1rem 0;
   position: sticky;
   top: 0;
	z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-container {
   max-width: 1200px;
     margin: 0 auto;
               padding: 0 2rem;
	 display: flex;
    justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 74px;
  width: auto;
   display: block;
}

.nav-menu {
   display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
	   text-decoration: none;
                    color: #2c3e50;
  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: #3498db;

	transition :    width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
      display:      none;
	flex-direction: column;
  cursor:     pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
   height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
          border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
	  transform: rotate(45deg) translate(8px, 8px);
     }


.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero
	{
  margin: 0 auto;
          justify-content: space-between;
  min-height: 600px;
          display: flex;
    gap  :3rem;
   padding: 4rem 2rem;
	align-items: center;
   max-width: 1200px;
     }

.hero-content {
 flex: 1;

}

.hero-content h1 {
  font-size    :      3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #1a252f;
}

.hero-content p {
          margin-bottom: 2rem;

   color: #555;

		 font-size: 1.1rem;

    max-width     : 500px;
}

.cta-button {
   display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding   :        1rem 2.5rem;
   text-decoration: none;
    border-radius     :     50px;
	 font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {

  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);

}

.hero-image {

	   flex: 1;


}


.hero-image img {
    width: 100%;
         height  :auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.section-expertise {
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
   padding: 5rem 2rem;

}

.expertise-container {

  max-width: 1200px;
    margin: 0 auto;
	}

.section-expertise h2 {
	font-size: 2.5rem;
   text-align: center;
  margin-bottom: 1rem;
	 color: #1a252f;
}

.section-intro {

     font-size: 1.1rem;
  text-align: center;
	 margin-bottom: 3rem;
     color :   #34495e;
   max-width: 700px;
    margin-left: auto;
    margin-right:  auto;
}

.expertise-grid     {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap  :  2rem;
     }

.expertise-card {
 background     : white;
    padding: 2.5rem;
	border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-number {
    font-size :     3rem;
   font-weight: 700;
   color: #3498db;
  margin-bottom: 1rem;
	opacity: 0.3;
}

.expertise-card h3 {
	font-size: 1.5rem;
    margin-bottom   : 1rem;
               color: #1a252f;
}

.expertise-card p {
  color: #555;
   line-height: 1.8;
}

.section-approach {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.approach-wrapper
	{
   max-width: 1200px;
   margin   :  0 auto;
   display: flex;
    align-items: center;
   gap: 3rem;
}

.approach-text {
    flex:    1;
}

.section-approach h2 {
   	font-size: 2.5rem;
      margin-bottom: 1.5rem;
       color:      #1a252f;

}  

.section-approach p {
    font-size: 1.05rem; 
	  color: #555; 
	                    margin-bottom: 1.5rem; 
	    line-height: 1.8;
	
}

.approach-list {
     list-style: none; 
    margin-bottom  :      2rem;

}



.approach-list li {
   	padding: 0.8rem 0 0.8rem 2rem;
  position  :    relative;
  color   :        #555;
    font-size: 1rem;


}

.approach-list li::before  
  {

  content: '→';
    position: absolute;
  left: 0;
   color: #3498db;
	font-weight: bold;
      font-size: 1.2rem;}

.approach-image {
    flex: 1;
	width: 100%;
        height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	
}

.section-services-preview {


    padding    :      5rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

}

.section-services-preview h2 {
   font-size  : 2.5rem;
  margin-bottom  :  3rem;
    color: #1a252f;
	 text-align: center;
}

.services-grid {
   max-width:   1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;


}

.service-box {
   background    :  white;
       padding: 2rem;
	 border-radius   :       12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   border-left  :    4px solid #3498db;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-3px);
}

.service-box h3 {
    font-size: 1.4rem; 
  color: #1a252f; 
          margin-bottom     :        1rem;
}

.service-box p{
  color   :       #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link     {
  color: #3498db;
  text-decoration: none;
       font-weight: 600;
    transition: color 0.3s ease; 
	
}

.service-link:hover {
    color: #2980b9;
}

.section-workshop {
	 padding: 5rem 2rem;
  background-color: #ffffff;
}

.workshop-layout
{
	   max-width: 1200px;

	  margin: 0 auto;

	    display: flex;

	   align-items: center;

	       gap: 3rem;
     }

.workshop-img {
        flex: 1;
    width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.workshop-content {
    flex: 1;
     }

.workshop-content h2 {
  font-size   :   2.5rem;
   margin-bottom: 1.5rem;
  color: #1a252f;
}

.workshop-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom:    1.5rem;
    line-height     :    1.8;
}

.section-restructuring	{
	padding: 5rem 2rem;
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);


}

.section-restructuring h2 {
	    font-size: 2.5rem;
	margin-bottom     :3rem;
	 color   :    #1a252f;
  text-align:     center;
     }

.restructuring-content {
   max-width: 1200px;
  margin: 0 auto;
}

.restructuring-item {
  display: flex;
   align-items: center;
  gap: 3rem;
    margin-bottom: 3rem;
}

.restructuring-item:nth-child(2) {
    flex-direction   :      row-reverse;
}


.restructuring-item img
{
      flex: 1;
    width: 100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.restructuring-text {
         flex: 1;
     }

.restructuring-text h3 {
   font-size: 1.6rem;
   color: #1a252f;
		 margin-bottom: 1rem;
}

.restructuring-text p {
                       font-size: 1.05rem;
   color: #555;
    line-height: 1.8;}

.section-cta {
	padding: 5rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
                    text-align: center;
    color: white;
}

.section-cta h2 {
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.section-cta p {

	    font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
	}

.cta-primary-button{
   display: inline-block;
    background :white;
  color :        #2980b9;
       padding     :     1rem 2.5rem;
    text-decoration: none;
   border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);


}

.cta-primary-button:hover {


  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
     }

.section-contact {
    padding: 5rem 2rem;
	 background-color: #f8f9fa;
}

.contact-container {
   max-width: 600px;
    margin: 0 auto;
}

.section-contact h2 {
   font-size   :      2.5rem;
      margin-bottom: 3rem;
		 color: #1a252f;
   text-align: center;
}

.contact-form{
    background: white;
   padding: 3rem;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {

    margin-bottom: 1.5rem;


}

.contact-form input,
.contact-form select,
.contact-form textarea {
   width: 100%;
				 padding: 1rem;
	 border: 1px solid #ddd;
	 border-radius: 8px;
                    font-size: 1rem;
       font-family    :       inherit;
	transition: border-color 0.3s ease;
    background-color: #f9f9f9;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
   outline: none;
    border-color: #3498db;
    background-color: white;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-submit {
   width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
   border: none;
  border-radius: 8px;
    font-size   :    1rem;
   font-weight: 600;
   cursor: pointer;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.form-submit:hover  {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.form-submit:active {

	  transform: translateY(0);
	}

.cookies-container {
   position:    fixed;
    bottom: 20px;
               left: 20px;
  right: 20px;
  background: white;
   border-radius: 12px;
	 padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	z-index: 999;
   max-width: 400px;
    margin: 0 auto;
  left: 20px;
    right:     20px;
    display:        none;

}

.cookies-container.show  
  {
	    display :   block;
      animation: slideUp 0.4s ease;

}
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.cookies-content p {
   margin-bottom: 1.5rem;
    color: #555;
    font-size: 0.95rem;
          line-height:       1.6;


}

.cookies-buttons {
	  display: flex;
  gap: 1rem;
  align-items: center;
     }

.cookie-btn-accept,
.cookie-btn-reject  {
   border: none;
    transition: all 0.3s ease;
  font-weight: 600;
    font-size: 0.95rem;
    padding :       0.8rem;
    flex: 1;
  cursor: pointer;
  border-radius: 6px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cookie-btn-reject {

    background: #ecf0f1;
  color: #2c3e50;
   border: 1px solid #bdc3c7;
     }

.cookie-btn-reject:hover    {
   background     :#bdc3c7;
}

.cookie-settings {
    font-size: 0.9rem;
  text-decoration: none;
   color: #3498db;
    white-space: nowrap;
}

.cookie-settings:hover {
    text-decoration: underline;
}

.footer {
  background: #2c3e50;
  color  :   white;
    padding: 4rem 2rem;
  margin-top: 0;
}

.footer-container {
     max-width: 1200px;
    margin: 0 auto;
   display    :      grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  align-items: start;}

.footer-logo-section {
   display: flex;
  align-items: center;
}

.footer-logo {
	height: 96px;
   width: auto;
  filter: brightness(0) invert(1);
	 display: block;
}

.footer-section h4 {
     font-size    :        1.2rem;
    margin-bottom:  1.5rem;
   color: white;}  

.footer-contact-section p {
   margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links-section ul {
    list-style: none;
}

.footer-links-section li {
     margin-bottom: 0.8rem;
}

.footer-links-section a {

  color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
    transition  :  color 0.3s ease;
	}

.footer-links-section a:hover {
  color: white;
}

.footer-bottom {
	    grid-column   :  1 / -1;
  text-align: center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #f8f9fa;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:active {
        color: #3498db;
    }

    .hero {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .approach-wrapper,
    .workshop-layout,
    .restructuring-item {
        flex-direction: column;
        gap: 2rem;
    }

    .restructuring-item:nth-child(2) {
        flex-direction: column;
    }

    .section-expertise,
    .section-approach,
    .section-services-preview,
    .section-workshop,
    .section-restructuring,
    .section-cta,
    .section-contact {
        padding: 3rem 1.5rem;
    }

    .section-expertise h2,
    .section-approach h2,
    .section-services-preview h2,
    .section-workshop h2,
    .section-restructuring h2,
    .section-cta h2,
    .section-contact h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .cookies-container {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 10px;
    }

    .footer-container {
        gap: 2rem;
    }

    .service-box,
    .expertise-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-expertise h2,
    .section-approach h2,
    .section-services-preview h2,
    .section-workshop h2,
    .section-restructuring h2,
    .section-cta h2,
    .section-contact h2 {
        font-size: 1.5rem;
    }

    .cta-button,
    .cta-primary-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .cookies-buttons {
        flex-direction: column;
    }

    .cookie-settings {
        width: 100%;
        text-align: center;
    }

    .nav-menu.active {
        max-height: 300px;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 5rem 2rem;
    text-align: center;
       color: white;
       min-height: 300px;
   display: flex;
        align-items    :        center;
  justify-content  :center;
}

/* Hack for old browsers */

.services-hero-content h1 {
  font-size    :        3rem;
   margin-bottom: 1rem;
       font-weight: 700;
}  

.services-hero-content p {
    font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
	margin: 0 auto;
}

.service-detail {
    padding: 5rem 2rem;
  background-color   :     #ffffff; 

}
	/* Development only */

.service-detail-container {
    max-width:1200px;
   margin: 0 auto;
}

.service-item {
 display: flex;
  align-items   :    center;
	 gap: 3rem;
    margin-bottom  :       5rem;
}

.service-item.reverse 
 {
   flex-direction: row-reverse;
}

/* State modifiers */



/* Development only */


.service-image-wrapper {
  flex: 1;
}

.service-detail-image {
	width: 100%;
  height  :  auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-text-wrapper  {
    flex: 1;
}

.service-text-wrapper h2 {
    font-size: 2.2rem;
  color: #1a252f;
   margin-bottom: 1.5rem;
    font-weight: 700;


}

/* Browser compatibility */

.service-text-wrapper p {
      font-size: 1.05rem;
	color: #555;
      margin-bottom: 1.5rem;
   line-height: 1.8;
}
	/* Component styles */



/* Typography */

	/* Minified version */
.service-text-wrapper h3     {
   font-size: 1.3rem;
    color    :#2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding     :       0.7rem 0 0.7rem 2rem;
         position: relative;
  color :#555;
    font-size: 1rem; 
	
}

.service-features li::before {
  content: '✓'; 
	   position :     absolute; 
	    left  :        0; 
	    color     :    #2ecc71; 
	   font-weight: bold; 
	    font-size  :      1.2rem; 

}

.service-duration {
	background: #ecf0f1;
	 padding: 1rem;
       border-left: 4px solid #3498db;
  border-radius: 5px;
  color: #2c3e50;
   font-size: 0.95rem;
    margin-top: 1.5rem;
}

.service-pricing {

	  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); 
	

}

.service-pricing h2 
 {
    font-size: 2.5rem;
   text-align: center;
   margin-bottom: 3rem;
   color: #1a252f;
}  

.pricing-grid {
       max-width: 1200px;
	 margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card


{
	background  :       white;
  padding: 2.5rem;
   border-radius   :       12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	
}

.pricing-card.featured {
	border: 2px solid #3498db;
  transform: scale(1.05);
	}
	/* Generated styles */


.pricing-card h3   {
      font-size: 1.8rem;
    color: #1a252f;
    margin-bottom: 0.5rem;
}

.pricing-description {

	    color: #7f8c8d;
  font-size :   0.95rem;
  margin-bottom   :      2rem;


}

.pricing-features {
  list-style: none;
    margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
    padding: 0.7rem 0;
   color :      #555;
    font-size :       0.95rem;
	border-bottom     :        1px solid #ecf0f1;
	
}

.pricing-features li:last-child {
       border-bottom: none;




}

.pricing-note  
  {
	font-size: 1.1rem;
   color: #2c3e50;
    font-weight: 600;
}

.service-process {
    padding: 5rem 2rem;
    background-color   :#ffffff;
}

.service-process h2 {
   font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
  color: #1a252f;
}

.process-container {
   max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.process-step {
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
   padding: 2rem;
  border-radius: 12px;
   text-align: center;
    transition: transform 0.3s ease; 
	
}

.process-step:hover    {
  transform: translateY(-5px);
}

/* Framework override */

.step-number {
   font-size: 2.5rem;
   font-weight: 700;
   color   :       #3498db;
    margin-bottom: 1rem;

}


.process-step h3 {
    font-size: 1.4rem;
  color: #1a252f;
   margin-bottom: 1rem;
}

.process-step p {
    color: #555;

  font-size: 0.95rem;

	line-height: 1.6;
}

.service-benefits {
   padding    :  5rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color:white;
}

.service-benefits h2 {
   font-size: 2.5rem;
     text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.benefits-grid
{
      max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
	
     }

.benefit-item {
	text-align: center;

	   padding: 2rem;

	  background: rgba(255, 255, 255, 0.1);

	   border-radius: 12px;

	  backdrop-filter: blur(10px);
}

.benefit-number {
    font-size: 2.5rem;
	    font-weight: 700;
	  display :       block;
	  margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 1rem; 
  color: rgba(255, 255, 255, 0.95);
}

.service-cta {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color  : white;
   text-align: center;
}

.service-cta h2 {
  color: white;
               font-size: 2.5rem;
   margin-bottom: 1.5rem;


}
/* Cross-browser fix */

/* Development only */
	/* Layout styles */

.service-cta p  {
    font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}
/* Build system output */

/* Responsive design */

.cta-button-services {
	 display: inline-block;
   background: white;
	 color: #2c3e50;
  padding: 1rem 2.5rem;
	text-decoration: none;
   border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-services:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
	/* Generated styles */



/* Generated styles */
	/* TODO: optimize for mobile */

.thankyou-section {
    padding: 6rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
	display: flex;
  align-items: center;
  justify-content: center;
	
}

.thankyou-container {
    max-width: 700px;
	width     :     100%;
}

.thankyou-card {

	   background:    white;
  padding: 3.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  text-align  :     center;

}

.thankyou-icon{

  margin-bottom: 2rem;
   display: flex;
    justify-content: center;
	}

.thankyou-icon svg  {
    animation: scaleIn 0.6s ease;
}
@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-card h1	{
       font-weight: 700;
   font-size: 2.8rem;
					margin-bottom :1rem;
  color: #2ecc71;
}

.thankyou-message
	{
    font-size: 1.3rem;
    color: #2c3e50;
	margin-bottom: 1.5rem;
    font-weight     :    600;
}

.thankyou-description {
	 font-size: 1rem;
   color: #555;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.thankyou-info     {
   margin-bottom: 2.5rem;
    border-radius: 12px;
    background: #f8f9fa;
    padding: 2rem;
   text-align: left;
}

.thankyou-info h2 {
  font-size: 1.3rem;
  color: #1a252f;
	margin-bottom :       1.5rem;
    text-align: center;
}

.info-list		{
	list-style: none;
}

.info-list li {
	padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
   color: #555;
    font-size     :    0.95rem;
}

.info-list li::before {
  content: '→';
					position: absolute;
     left: 0;
  color: #3498db;
   font-weight: bold;
}

.thankyou-actions {

   display: flex;
    gap: 1rem;
   margin-bottom: 2rem;
    flex-wrap: wrap;
  justify-content: center;
	}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
   text-decoration: none;
  border-radius: 50px;
    font-weight    :        600;
   transition: all 0.3s ease;
  font-size: 0.95rem;
}



.btn-primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);

  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background: white;
   color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {


    background: #f0f8ff;


}

.thankyou-note {
		font-style: italic;
    color   :   #7f8c8d;
  font-size     : 0.9rem;
	}

.thankyou-features  {
    padding: 5rem 2rem;

  background: white;
}

.thankyou-features h2 {
    font-size: 2.5rem;
      text-align: center;
	margin-bottom    :   3rem;
	color     :        #1a252f;
}

.features-container {
   max-width: 1200px;
	 margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 2rem;
}

.feature-box {
    background    :       #f8f9fa;
          padding: 2rem;
   border-radius: 12px;
   text-align: center;
  border-top: 4px solid #3498db;
         transition: transform 0.3s ease;
}  

.feature-box:hover {
  transform: translateY(-5px);
}


.feature-icon  {
    color: #3498db;
  margin-bottom: 1.5rem;
    display: flex;
  justify-content     :center;
}



.feature-box h3{


    font-size: 1.3rem;
    color: #1a252f;
	margin-bottom: 1rem;


}

.feature-box p
	{
	 color: #555;
  font-size: 0.95rem;
   line-height: 1.6;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .service-text-wrapper h2 {
        font-size: 1.6rem;
    }

    .thankyou-card {
        padding: 2rem;
    }

    .thankyou-card h1 {
        font-size: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .service-pricing,
    .service-process,
    .service-benefits,
    .service-cta,
    .thankyou-features {
        padding: 3rem 1.5rem;
    }

    .service-pricing h2,
    .service-process h2,
    .service-benefits h2,
    .service-cta h2,
    .thankyou-features h2 {
        font-size: 1.8rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-text-wrapper h2 {
        font-size: 1.3rem;
    }

    .service-features li,
    .info-list li {
        padding: 0.6rem 0 0.6rem 1.5rem;
    }

    .thankyou-card {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .thankyou-icon svg {
        width: 60px;
        height: 60px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}.policySection {
    padding: 80px 2rem; 
	  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%); 
	  min-height: calc(100vh - 200px);
}

.policyContainer


{
     max-width     :        850px;
   margin: 0 auto;
    text-align: left;
    background: white;
    padding    :        3rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); 

}

.policyContainer h1 {
   font-size:        2.8rem; 
	    color: #1a252f; 
	    margin-bottom: 2rem; 
	   font-weight: 700; 
	   border-bottom: 3px solid #3498db; 
	    padding-bottom: 1rem;
}

.policyContainer h2     {

	    font-size: 1.8rem;
    color     :   #2c3e50;
  margin-top: 2.5rem;
  margin-bottom   :   1rem;
  font-weight: 700;
   color  :   #1a252f;}

.policyContainer p   {
   color: #555;
    margin-bottom: 1.5rem;
  line-height     : 1.9;
  font-size: 1rem;
  text-align: justify;
}

.policyContainer p:first-of-type {

    margin-bottom: 2rem;
    font-size   :        1.05rem;
}@media (max-width: 900px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.3rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 6px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
        border-bottom-width: 2px;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
        text-align: left;
    }
}

@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        box-shadow: none;
        padding: 0;
    }

    .policyContainer h1,
    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        orphans: 3;
        widows: 3;
    }
}