* {
	margin: 0;
	 padding     :     0;
    box-sizing  :        border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-bg: #ecf0f1;
    --dark-bg: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #bdc3c7;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
   line-height: 1.6;
    overflow-x: hidden;
}

.nav-bar {
     background-color   :        white; 
	  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
	       position   :        sticky; 
	   top: 0; 
	  z-index: 1000;
     }

.nav-container {

    display: flex;
  align-items: center;
   justify-content: space-between;
	max-width: 1200px;
  padding: 1rem 2rem;
    margin: 0 auto;
     }

.nav-logo img {
    height: 74px;
    width: auto;
   display: block;
} 

.nav-links {
	    display :flex;
	list-style: none;
  gap: 2rem;
    align-items: center; 

     }

.nav-links a    {
  text-decoration: none;
  color: var(--text-dark);
       font-weight: 500;
  transition: color 0.3s ease;
 position: relative;

}

.nav-links a::after {
  content: '';
   position: absolute;
    bottom: -5px;
  left: 0;
    width: 0;
  height: 2px;
  background-color: var(--secondary-color);
    transition  :  width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.nav-cta {
  background-color: var(--secondary-color);
	 color  :     white;
   padding: 0.75rem 1.5rem;
	border-radius: 4px;
     transition: all 0.3s ease;
}

.nav-links a.nav-cta::after {
    display     :  none;
}

.nav-links a.nav-cta:hover {
  background-color: var(--accent-color); 
	
}

.burger-menu	{
   display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu span {
     width: 25px;
	height: 3px;
  background-color: var(--text-dark);
	margin: 5px 0;
    transition     :      0.3s ease;
       border-radius: 2px;

}

.burger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.burger-menu.active span:nth-child(2) {
   opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-8px, -8px);


}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 2rem;
        text-align: center;
	 min-height: 600px;
   display: flex;
   align-items: center;
      justify-content: center;
}

.hero-content h1 {
 font-size: 3rem;
  margin-bottom: 1rem;
   font-weight    :    700;
   line-height: 1.2;
}

.hero-content p


{
   font-size: 1.3rem;
  margin-bottom :    2rem;
  opacity: 0.95;
}

.hero-btn {
 display: inline-block;
   padding: 1rem 2.5rem;
  background-color: var(--accent-color);
  color: white;
    text-decoration: none;
    border-radius: 4px;
   font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.hero-btn:hover {
       background-color    :       #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.section-header {
  text-align: center;
   margin-bottom: 4rem;

}


.section-header h2	{
  font-size: 2.5rem;
        margin-bottom: 0.5rem;
  color: var(--primary-color);
   font-weight: 700;
}

.section-header p     {
   font-size: 1.1rem;
  color: var(--text-light);
}

.expertise-section {
    padding :        80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
                    background-color:  #fafafa;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}



.expertise-card {
  background: white;
  border-radius: 8px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}  

.expertise-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); 

	}

.expertise-card img {
    width: 100%;
  height: 250px;
	object-fit: cover;
	
}

.expertise-card h3 {


   font-size :1.5rem;
   padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);}

.expertise-card p  {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}  

.process-section {
  padding: 80px 2rem;
 max-width: 1200px;
   margin: 0 auto;
  background: white;
}

.process-timeline {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.process-item {
  position: relative;
   padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   border-radius: 8px;
    transition: all 0.3s ease;

} 

.process-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.process-number {
     font-size: 2.5rem;
   font-weight: 700;
  color: var(--secondary-color);
   margin-bottom     :0.5rem;
   opacity: 0.3;

}

.process-item h3 {

  font-size: 1.3rem;
   margin-bottom: 0.8rem;
  color: var(--primary-color); 
	}

.process-item p		{
  color: var(--text-light);
    margin-bottom    :        1rem;
}

.process-item img	{
	width   :100%;
    height: 180px;
    object-fit: cover;
               border-radius: 6px;
}

.services-preview {
    padding    :    80px 2rem;
   max-width: 1200px;
   margin: 0 auto;
    background-color: #fafafa;
}

.services-list {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
     }

.service-item {
	background: white;
       padding: 2rem;
       border-radius: 8px;
      text-align :  center;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.service-icon {
  width     : 80px;
  height    :       80px;
    margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
	 display: flex;
    align-items: center;
   justify-content: center;
}

.service-icon svg {
	    stroke: white;
   fill: none;
  stroke-width: 1.5;
   stroke-linecap: round;
   stroke-linejoin  :      round;

}

.service-item h3 {
	font-size: 1.3rem;
   margin-bottom: 0.8rem;
  color: var(--primary-color);
}



.service-item p     {
  color: var(--text-light);
}  

.benefits-section {
  padding: 80px 2rem;
  max-width  :1200px;
  margin    : 0 auto;
  background: white;
}

.benefits-content {
       display: grid;
	 grid-template-columns: 1fr 1fr;
    gap  :   3rem;
	align-items: center;
}

.benefits-left img {


  width: 100%;
                    border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
     }

.benefit-item {
	margin-bottom: 2rem;
   padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--light-bg);
}



.benefit-item:last-child {

	   border-bottom: none;}

.benefit-item h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
   margin-bottom: 0.5rem;
}

.benefit-item p {
  color: var(--text-light);
}

.testimonials-section {
 padding: 80px 2rem;
    max-width: 1200px;
   margin: 0 auto;
  background-color  :  #fafafa;
}

.testimonials-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
	 background: white;
   padding: 2rem;
	border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    margin-bottom    :      1.5rem;
}

.testimonial-text p {
  font-style     : italic; 
  color: var(--text-light); 
   line-height: 1.8;
}

.testimonial-author strong {
    display :    block;
  color: var(--primary-color);
   margin-bottom: 0.3rem;
}

.testimonial-author span {
   font-size: 0.9rem;
  color: var(--text-light);
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	padding: 60px 2rem;
   text-align :        center;
  margin: 80px 0 0;
}

.cta-content h2 {
   font-size: 2.2rem;
    margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom     :   2rem;
    opacity    : 0.95;
}



.cta-button {
   display: inline-block; 
	    padding: 1rem 2.5rem; 
	  background-color: var(--accent-color); 
	    color: white; 
	    text-decoration: none; 
	                    border-radius: 4px; 
	    font-weight: 600; 
	  transition: all 0.3s ease; 
	  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    background-color: #c0392b;
  transform: translateY(-2px); 

}

.contact-section {
  padding :    80px 2rem;
  max-width: 1200px;
   margin : 0 auto;
  background: white;
}

.contact-container {
   display:      grid;
   grid-template-columns: 2fr 1fr;
  gap: 3rem; 

}

.contact-form {
	background-color: #fafafa;
        -moz-border-radius: 8px;
    padding: 2.5rem;
    border-radius: 8px;
    -webkit-border-radius: 8px;
}

.form-group {
   margin-bottom :  1.5rem;


}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
		font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea{

	width: 100%;
 padding: 0.8rem;
  border: 2px solid var(--border-color);
    border-radius: 4px;
  font-family   : inherit;
   font-size: 1rem;
    transition: border-color 0.3s ease;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.form-submit   {

   width: 100%;
   padding: 0.8rem;
  background-color: var(--secondary-color);
    color: white;
	border   : none;
   border-radius :   4px;
    font-weight: 600;
       cursor: pointer;
    transition: all 0.3s ease; 
	
	}

.form-submit:hover {

   background-color: #2980b9;
  transform: translateY(-2px);

}

.contact-info {
   display: flex;
    gap  :      2rem;
   flex-direction: column;
}

.info-block h3 {
   font-size: 1.2rem;
  margin-bottom:     0.8rem;
  color: var(--primary-color);
}

.info-block p {
  color: var(--text-light);
  line-height: 1.8;
	
}

.cookies-alert {
    position: fixed;
   bottom: 0;
   left    :    0;
    right     :       0;
  background: var(--primary-color);
		 color:   white;
  padding: 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
   z-index: 999;
   display: flex;
   justify-content :       center;
  animation  :        slideUp 0.3s ease;
}@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}.cookies-alert.hidden {
	 display: none;
}

.cookies-content {
	max-width: 1200px;
               width: 100%;
    display: flex;
    justify-content: space-between;
               align-items: center;
   gap: 2rem;
}

.cookies-message h4 {
     margin-bottom     :     0.5rem;
         font-size: 1.1rem;}

.cookies-message p {
    font-size: 0.95rem;

	  opacity: 0.95;
	
}

.cookies-buttons {
   display :   flex;
       gap: 1rem;
  flex-wrap:wrap;
}

.cookies-btn {
   transition  :    all 0.3s ease;
    cursor    :     pointer;
    padding: 0.7rem 1.5rem;
   font-weight:  600;
  border :       none;
   border-radius:  4px;

}

.cookies-btn.accept {
  background-color: var(--secondary-color);
  color: white;
}

.cookies-btn.accept:hover {
  background-color  :    #2980b9;
}

.cookies-btn.reject		{
    background-color: transparent;
     color  :      white;
       border :     2px solid white;
}

.cookies-btn.reject:hover    {
    background-color: white;
  color: var(--primary-color); 

}

.cookies-btn.settings    {
      background-color: transparent;
	 color: white;
   border: 2px solid white;
}

.cookies-btn.settings:hover {
	 background-color: white;
  color: var(--primary-color);
}

.cookies-settings-modal {
  position: fixed;
   top: 0;
  left    :      0;
				 right: 0;
                    bottom   :0;
  background: rgba(0, 0, 0, 0.5);
	display    :    none;
   align-items: center;
    justify-content: center;
	z-index: 1001;
}

.cookies-settings-modal.active {
    display: flex;
}

.modal-content {
    background: white;
   padding: 2.5rem;
         border-radius:      8px;
  max-width: 500px;
    width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-content h3 {
	 margin-bottom     :     1.5rem;
  color: var(--primary-color);
  font-size: 1.5rem;

}

.settings-group {
   margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-bg);
}

.settings-group:last-of-type	{
  border-bottom: none;
}

.settings-group label {

    display: flex;
  align-items: center;
    margin-bottom: 0.5rem;
  cursor: pointer;}

.settings-group input[type="checkbox"] {
    margin-right: 0.8rem;
   cursor: pointer;
  width: 18px;
   height: 18px;
}

.settings-group p {
	margin-left: 1.8rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.settings-save {

   width: 100%;
    padding: 0.8rem;
  background-color: var(--secondary-color);
	color: white;
 border: none;
    border-radius: 4px;
    font-weight: 600;
  cursor: pointer;
   transition :   all 0.3s ease;
    margin-top: 1rem;
}

.settings-save:hover {
    background-color    :      #2980b9;
}

.footer {
  background-color: var(--primary-color);
	  color :white;
	   padding: 60px 2rem 20px;
	  margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
  margin: 0 auto;
    display: grid;
               grid-template-columns: auto 1fr;
 gap: 3rem;
  align-items  :      flex-start;
   margin-bottom: 2rem;
}

.footer-logo-img {
    height: 96px;
   width: auto;
  display : block;
  filter: brightness(0) invert(1); 

}

.footer-content {
   display     : grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.footer-section h4 {

	         margin-bottom: 1rem;
    font-size: 1.1rem; 
	


}  

.footer-section ul {


    list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
   color: #ecf0f1;
   text-decoration     :      none;
   transition: color 0.3s ease;
}

.footer-section a:hover {
     color: var(--secondary-color);


}

.footer-section p {
	 color: #ecf0f1;
   line-height    :        1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
				 text-align: center;
       color: #bdc3c7;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        max-height: 300px;
        padding: 1rem;
    }

    .nav-links a {
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--light-bg);
    }

    .nav-links a.nav-cta {
        margin-top: 0.5rem;
        padding: 0.75rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .benefits-content {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookies-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cookies-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookies-btn {
        width: 100%;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-logo img {
        height: 50px;
    }

    .hero-section {
        padding: 60px 1rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .benefit-item {
        margin-bottom: 1rem;
    }

    .footer-logo-img {
        height: 60px;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 100px 2rem;
   text-align: center;
	 min-height: 400px;
	 display  : flex;
  align-items     :     center;
   justify-content: center;
}

.services-hero .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
   font-weight: 700;
}

.services-hero .hero-content p {
    font-size: 1.2rem;
   opacity: 0.95;
}

.services-intro {
   padding: 80px 2rem;
  max-width: 1200px;
  margin: 0 auto;
               background-color: white;
}

.intro-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.intro-card {
   background:   #fafafa;
    border-radius :  8px;
        overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.intro-card:hover {
     transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	}

.intro-card img    {
   width: 100%;
   height:       220px;
    object-fit: cover;}



.intro-card h3 {
  font-size: 1.3rem;
         padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);
}

/* Framework override */

.intro-card p {
                    padding :   0 1.5rem 1.5rem;
  color: var(--text-light);
  font-size    :     0.95rem;
	
}



.service-detailed {
    padding: 80px 2rem; 
	    max-width: 1200px; 
	   margin   :        0 auto; 
	    background-color: #fafafa;
}

.service-card-detailed


{
	   display: grid;
      grid-template-columns    :    1fr 1fr;
       gap: 3rem;
        align-items: center;
        margin-bottom: 4rem;
       background: white;
                       padding: 2.5rem;
     border-radius: 8px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

	}  

.service-card-detailed.alt     {
   grid-template-columns     :     1fr 1fr;
}

.service-card-detailed.alt .service-detail-image {

   order    :        2;}

.service-card-detailed.alt .service-detail-content {
	 order: 1;
}

.service-detail-image img {
  width: 100%;
	    border-radius     :        8px;
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);


}

/* State modifiers */

/* Component styles */

.service-detail-content h3 {
          font-size: 1.8rem;
  color: var(--primary-color);
                    margin-bottom: 1rem;
	font-weight: 700;
}

.service-detail-content > p:first-of-type {
  color: var(--text-light); 
	margin-bottom: 1.5rem;
}

.service-list {
			list-style: none;
   margin: 1.5rem 0;
    padding: 0;
} 

.service-list li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
   position: relative;
  color: var(--text-dark);
}
/* Minified version */
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
	top : 1.1rem;
  width: 8px;
	height: 8px;
  background-color: var(--secondary-color);
   border-radius    :     50%;
  transform: translateY(-50%);
}
/* Auto-generated CSS */
.service-duration {
	 margin-top:      1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
}

.pricing-section

{
   padding: 80px 2rem;
    max-width: 1200px;
   margin    :     0 auto;
   background :  white;
}

.pricing-grid {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
    background: #fafafa;

		 border-radius: 8px;

	   padding: 2rem;

	    text-align   :   center;

	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

	   transition: all 0.3s ease;

	     position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12); 
	
     }

.pricing-card.featured {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  transform: scale(1.05);
	}

.pricing-card.featured:hover {

  transform: scale(1.05) translateY(-8px);


}

.pricing-badge  
  {
   position: absolute;
  top    :  -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
	border-radius: 20px;
    font-size: 0.85rem;
   font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.pricing-card.featured h3 {
         color: white;
	

}  

.pricing-card .price		{
    opacity: 0.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-card.featured .price {
     color: rgba(255, 255, 255, 0.9);


}

.pricing-features {
  list-style: none;
	 margin: 1.5rem 0;
   text-align: left;
}

.pricing-features li {
	 padding    :       0.7rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
   position: relative;
    padding-left: 1.5rem;
}

.pricing-card.featured .pricing-features li {


  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.2);}

.pricing-features li::before {
  content: '✓';
    position  : absolute;
    left: 0;
  color: var(--secondary-color);
   font-weight: bold; 

}

.pricing-card.featured .pricing-features li::before {
   color: white;
}

.pricing-btn {
    display: inline-block;
  margin-top: 1.5rem;
    padding: 0.8rem 1.8rem;
  background-color: var(--secondary-color);
  color: white;
      text-decoration: none;
    border-radius: 4px;
  font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

.pricing-card.featured .pricing-btn   {
  background-color: var(--accent-color);
}  

.pricing-card.featured .pricing-btn:hover
	{
       background-color     :        #c0392b;
}

.process-services {
   padding: 80px 2rem;
  max-width: 1200px;
         margin: 0 auto;
   background-color: #fafafa;


}

.process-steps {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 2rem;
}

.step-item {
      background: white;
  padding: 2rem;
	border-radius: 8px;
	text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
     }

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); 

}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
    margin-bottom:0.5rem;
  opacity: 0.3;
	
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.step-item p {
  color: var(--text-light);
    font-size: 0.95rem;
}

.faq-section {
    padding: 80px 2rem;
  max-width: 1000px;
    margin: 0 auto;
  background: white;
}

/* Responsive design */

.faq-container  {
  margin-top    :      3rem;
}

.faq-item {
    margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
   overflow  :   hidden;
   background    :    white;
}

.faq-question {

		width: 100%;
    padding :        1.5rem;
   background-color: #fafafa;
          border    :       none;
   cursor: pointer;
   display: flex;
    justify-content: space-between;
   align-items: center;
    font-size: 1rem;
  font-weight     : 600;
  color: var(--primary-color);
  transition: all 0.3s ease;


	}

.faq-question:hover {
   background-color: #f0f0f0;
}

.faq-arrow {
  font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  background-color: var(--secondary-color);
   color: white;
}
/* Development only */

.faq-item.active .faq-arrow {
  transform: rotate(45deg);
}

.faq-answer     {
   max-height   :     0;
   overflow :   hidden;
   transition :    max-height 0.3s ease;
    background-color: #fafafa;
}

.faq-item.active .faq-answer {
         max-height: 500px;
}

.faq-answer p {
  padding: 1.5rem;

  color: var(--text-light);

  line-height: 1.8;

	margin: 0;
}

.why-choose-section {
   margin:   0 auto;
					padding: 80px 2rem;
    background-color: #fafafa;
  max-width: 1200px;
} 

.choose-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap :   2rem;
  margin-top: 3rem;
	
}

.choose-item {


  background: white;
   padding: 2rem;
    border-radius: 8px;
  text-align     : center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
	}

.choose-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.choose-icon {
     width: 80px;
  height: 80px;
    margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
	 border-radius: 50%;
  display: flex;
          align-items: center;
  justify-content :      center;
     }

/* Colors and backgrounds */

.choose-icon svg {
      stroke: white;
   fill: none;
   stroke-width: 1.5;
 stroke-linecap  :round;
    stroke-linejoin: round;
}

/* NOTE: keep for legacy support */

.choose-item h3 {
  font-size: 1.2rem;
   margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.choose-item p {
  color: var(--text-light);
    font-size: 0.95rem;
}

.thankyou-hero {
     background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
   color: white;
   padding: 100px 2rem;
  text-align: center;
			min-height     :        500px;
      display: flex;
    align-items: center;
  justify-content: center;
}
	/* Custom modifications */
	/* NOTE: keep for legacy support */
.thankyou-content {
	display: flex;
    flex-direction: column;
     align-items: center;
}  

.success-icon   {

	    width: 120px;
         height: 120px;
   margin-bottom: 2rem;
	color: white;
	}

.success-icon svg
{
    width: 100%;
  height: 100%;


}

.thankyou-hero h1
	{
   font-size: 2.8rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.thankyou-hero p {

	  font-size: 1.2rem;
  opacity :     0.95;

}

/* Custom modifications */



/* Performance critical */

/* Auto-generated CSS */
.thankyou-section {
     padding: 80px 2rem;
   max-width: 1200px;
   margin: 0 auto;
    background: white;
}

.thankyou-container {
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
	 margin-bottom: 3rem;
}

/* Typography */


.thankyou-message h2 {
   font-size: 1.8rem;
  color: var(--primary-color);
   margin-bottom: 1rem;
}

.thankyou-message p {
  color: var(--text-light);

	  margin-bottom:    1rem;

	  line-height: 1.8;
}

.next-steps  {
				 padding: 0;
  margin-top: 1.5rem;
   list-style: none;
}

.next-steps li {


  padding: 0.8rem 0;

       padding-left: 1.8rem;

   position: relative;

  color: var(--text-dark);
     }

.next-steps li::before {
  content: '';
  position: absolute;
  left: 0;
    top: 1.2rem;
   width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  transform: translateY(-50%);
}

.thankyou-info h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
		 margin-bottom: 1rem;
}

.thankyou-info p {
     color: var(--text-light);
  margin-bottom: 1.5rem;
	
	}

.contact-info-box {
   	background: #fafafa;
  padding: 1.5rem;
   border-radius: 8px;
	 margin:  1.5rem 0;
  border-left: 4px solid var(--secondary-color);
	}

.contact-info-box p
{
    margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.info-note {
   font-size: 0.9rem;
  font-style: italic;
  color: var(--text-light);
}

.action-buttons {

    display: flex;
	 gap: 2rem;
	justify-content     :   center;
	flex-wrap: wrap;
   margin-bottom: 4rem;}

.btn-primary,
.btn-secondary {
	padding: 1rem 2rem;
	    border-radius  :       4px;
	          text-decoration: none;
	    font-weight: 600;
		transition: all 0.3s ease;
		display     : inline-block;
}

/* Browser compatibility */

.btn-primary {


  background-color: var(--secondary-color);
  color  :      white;

}

.btn-primary:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}
/* Responsive design */
/* Performance critical */


.btn-secondary {
    background-color    :white;
	  color: var(--secondary-color);
	  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: white;
}

.benefits-preview {
    padding: 80px 2rem;
   max-width     :     1200px;
    margin: 0 auto;
    background-color: #fafafa;
}


.benefits-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap:   2rem;
    margin-top  :        3rem;
}

/* Utility classes */



.benefit-card {
   background: white;

  padding:  2rem;

	 border-radius: 8px;

  text-align: center;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;

}

.benefit-card:hover {
  transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.benefit-card h3     {
      font-size: 1.2rem;
  color: var(--primary-color);
    margin-bottom: 0.8rem;

}

.benefit-card p  {
  color: var(--text-light);
   font-size   :   0.95rem;
}

.testimonial-preview {
  padding:80px 2rem;
    max-width    :      1200px;
  margin: 0 auto;
    background  :   white;
}



.testimonials-showcase {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
    margin-top: 3rem;
}

.testimonial-item {
  background: #fafafa;

   padding: 2rem;

  border-radius: 8px;

  border-left: 4px solid var(--secondary-color);
}

.testimonial-quote {
    font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8; 
	
}

.testimonial-author
	{
    font-weight: 600;
  color: var(--primary-color);
}
@media (max-width: 768px) {
    .services-hero .hero-content h1 {
        font-size: 2rem;
    }

    .service-card-detailed {
        grid-template-columns: 1fr;
    }

    .service-card-detailed.alt .service-detail-image,
    .service-card-detailed.alt .service-detail-content {
        order: initial;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .services-intro {
        padding: 40px 1rem;
    }

    .service-detail-content h3 {
        font-size: 1.4rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-hero {
        padding: 60px 1rem;
        min-height: auto;
    }

    .thankyou-hero h1 {
        font-size: 2rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
}.policy-hero  
  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color  :     white;
   padding: 100px 2rem;
  text-align: center;
    min-height: 350px;
	display: flex;
   align-items     :      center;
               justify-content: center;
}

.policy-hero .hero-content h1 {
  font-size   :     2.8rem;
  margin-bottom: 1rem;
	font-weight :     700;
	}

.policy-hero .hero-content p {
  font-size: 1.2rem;
		 opacity: 0.95;
}

.policySection {


   padding: 80px 2rem;
	background: #f8f9fa;

}

.policyContainer {
    max-width: 900px;
  margin: 0 auto;
    text-align: left;
  background: white;
   padding: 3rem;
   border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.policyContainer h2 {
    font-size: 2.2rem;
   color :#2c3e50;
   margin-bottom: 2rem;
  margin-top: 0;
    font-weight:   700;
}

.policyContainer h3 {
	  font-size: 1.4rem;
    color: #3498db;
   font-weight: 600;
  margin-bottom: 1rem;
    margin-top: 2rem;}

.policyContainer p {
    color: #7f8c8d;
   margin-bottom: 1.5rem;
      line-height: 1.8;
    font-size: 1rem;
}

.policyContainer strong {
   color: #2c3e50;
  font-weight  :  600; 
	
}@media (max-width: 768px) {
    .policy-hero .hero-content h1 {
        font-size: 2rem;
    }

    .policy-hero .hero-content p {
        font-size: 1rem;
    }

    .policyContainer {
        padding: 2rem;
        margin: 0 1rem;
    }

    .policyContainer h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}@media (max-width: 480px) {
    .policy-hero {
        padding: 60px 1rem;
        min-height: auto;
    }

    .policy-hero .hero-content h1 {
        font-size: 1.6rem;
    }

    .policy-hero .hero-content p {
        font-size: 0.95rem;
    }

    .policyContainer {
        padding: 1.5rem;
        margin: 0;
        border-radius: 4px;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .policySection {
        padding: 40px 1rem;
    }
}