* {
    margin: 0;
  padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; 
	

}

body {

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
   line-height: 1.6;
    color: #2c3e50;
	background: #fafafa; 

}

.global-header {
	 background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}  

.nav-container {
	max-width: 1200px; 
  margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
   padding: 1rem 2rem;
}

.nav-brand	{
    flex-shrink: 0;
}

.brand-logo {
    height: 48px;
               width: auto;
  filter: brightness(0) invert(1);
}  

.burger-icon {
    width: 24px;
   height: 24px;
  stroke: #2c3e50;
}

.menu-toggle {
    display: none;
	background: none;
  border   :     none;
  cursor: pointer;
    padding     :      0.5rem;
}

.nav-menu {
	display: flex; 
    gap: 2rem; 
  list-style: none;
}  

.nav-link {
	  text-decoration: none;
    color: #2c3e50;
  font-weight: 500;
   font-size   :      0.95rem;
  transition: color 0.3s ease;
  position: relative;


}

.nav-link::after {
  content: '';
   position: absolute;
	bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
  transition: width 0.3s ease;

}

.nav-link:hover::after {
   width: 100%;
}

.hero-section {


    max-width: 1200px;
    margin: 0 auto;
   padding: 4rem 2rem;
   display: grid;
   grid-template-columns    :     1fr 1fr;
     gap: 3rem;
         align-items: center;
     }

.hero-wrapper h1 {
   font-size: 3rem; 
	    font-weight: 700; 
	  line-height: 1.2; 
	    margin-bottom: 1.5rem; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
		 background-clip: text;
}  

.hero-wrapper p {

	    font-size: 1.1rem;
   color: #555;
    margin-bottom: 2rem;
  line-height: 1.8;}


.cta-button {
 display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding    :     1rem 2.5rem;
   border-radius: 50px;
	text-decoration: none;
   font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.hero-visual img {
   width: 100%;
         height: auto;
   border-radius :12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.services-preview {
    max-width: 1200px;
          margin: 3rem auto;
   padding: 0 2rem;
}

.services-preview h2 {
   font-size: 2.5rem;
   margin-bottom   :        3rem;
    text-align: center;
  color: #2c3e50;
	
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
   background   :white;
    border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {

	  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);

}

.service-card img {
   width: 100%;
   height: 220px;
    object-fit :        cover;

}

.service-card h3 {

   font-size: 1.4rem;
   padding: 1.5rem 1.5rem 0.5rem;
    color: #2c3e50;
     }

.service-card p
{
    padding  :   0.5rem 1.5rem 1.5rem;
    color:   #666;
  line-height: 1.7;
}



.methodology-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding   : 0 2rem;
}

.methodology-section h2
	{
    font-size: 2.5rem;
   margin-bottom: 3rem;
          text-align: center;
}

.methodology-content {


   display:    grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;


}

.methodology-text h3   {
	font-size: 1.8rem;

	  margin-bottom: 2rem;

	   color: #2c3e50;
}

.phase-list {
  display   :        flex;
  flex-direction: column;
    gap: 1.5rem;
}

.phase-item {
	  padding: 1.5rem;
   background: #f8f9fa;
       border-left: 4px solid #667eea;
    border-radius   :  6px;
   transition: all 0.3s ease;
	
}

.phase-item:hover {
  background: #eff0ff;
  transform: translateX(4px);
}

.phase-item h4 {
	font-size: 1.1rem;
	   margin-bottom: 0.5rem;
	   color: #667eea;
} 

.phase-item p {
    color  :     #666;
    line-height: 1.6;
}

.methodology-image img {
     width: 100%;
    height: auto;
  border-radius  :     12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.conference-section {
	 max-width: 1200px;
  margin: 4rem auto;
    padding   :  0 2rem;
}

.conference-section h2	{
  font-size: 2.5rem;
  margin-bottom: 2rem;
          text-align: center;
}

.conference-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 3rem;
         border-radius: 12px;
  text-align: center;


}

.conference-box p {

			font-size: 1.1rem;
   margin-bottom: 2rem;
  line-height: 1.8;

}

.conference-button {
   color: #667eea;
       padding: 0.8rem 2rem;
  font-weight :    600;
   background: white;
    border-radius : 50px;
  transition   :        all 0.3s ease;
  text-decoration: none;
	 display: inline-block;

}

.conference-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);}

.testimonials-section {
   max-width: 1200px; 
	    margin: 4rem auto; 
	   padding  :        0 2rem;
}

.testimonials-section h2 {


    font-size: 2.5rem;
   margin-bottom: 3rem;
	text-align: center;
     }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap :  2rem; 
	
}


.testimonial


{
  background: white;
  padding: 2rem;
  border-radius:        12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 3px solid #667eea;
}

.testimonial p {
		 color: #555;
  line-height: 1.8;
  margin-bottom :  1rem;
  font-style: italic;
}

.client-name {
        color: #667eea;
                    font-weight: 600;
   font-size: 0.95rem;
}

.webinar-section {
   max-width: 1200px;
    margin: 4rem auto;
   padding: 3rem 2rem;
	background: #f0f4ff;
	 border-radius: 12px;
}


.webinar-section h2 {

   font-size: 2.2rem;
	   margin-bottom: 1.5rem;
		text-align: center;
	}

.webinar-content

{

	          text-align: center;
	}

.webinar-content p {
  font-size: 1.05rem;
  color: #555;
   margin-bottom    : 2rem;
    line-height:    1.8;
}

.webinar-link {
    display: inline-block;
    background: #667eea;
   color: white;
   padding: 0.9rem 2.2rem;
  border-radius     : 50px;
   text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
}

.webinar-link:hover {
    background: #764ba2;
  transform: translateY(-2px);
}

.cta-final {


    max-width: 900px;
	margin: 4rem auto;
 padding: 3rem 2rem;
  background: white;
   border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);}

.cta-final h2 {
	    margin-bottom    :1rem;
  text-align: center;
  font-size: 2.2rem;
	 color: #2c3e50;


}


.cta-final > p	{
	    line-height: 1.7;
   text-align: center;
  color: #666;
               margin-bottom :    2.5rem;}

.contact-form {
   display: flex;
	flex-direction: column;
  gap: 1.5rem;
}

.form-group {
    display: flex;
   flex-direction: column;


}

.form-group label


{


  font-weight: 600;
   margin-bottom: 0.5rem;
  color  : #2c3e50;
	font-size: 0.95rem;
	}

.form-group input,
.form-group select,
.form-group textarea {


   padding: 0.75rem;
    border: 2px solid #e0e0e0;
   border-radius: 6px;
  font-family: inherit;
    font-size: 0.95rem;
                    -o-transition    :     border-color 0.3s ease;
    transition    : border-color 0.3s ease;
  -webkit-transition: border-color 0.3s ease;
  -moz-transition: border-color 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);
}

.submit-button {
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
   border-radius: 6px;
	 font-weight: 600;
    cursor: pointer;
    transition :   all 0.3s ease;
   margin-top: 1rem;
}

.submit-button:hover {


  transform: translateY(-2px);

	  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);


}

.main-footer {
    background: #1a1a2e;
    color: #ecf0f1;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem; 
	
}

.footer-container
{
    max-width: 1200px; 
	   margin : 0 auto; 
	   display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
	   gap:    2rem; 
	    margin-bottom: 2rem;
}

.footer-brand {


  display: flex;
    align-items: flex-start;}

.footer-logo {
  height: 50px;

	   width: auto;

	  filter: brightness(0) invert(1);
}

.footer-navigation h4,
.footer-info h4,
.footer-policies h4 {

	   margin-bottom: 1rem;
   color: #ffffff;
  font-size: 1.05rem;


}

.footer-navigation a,
.footer-policies a  
  {

	    display: block;
    color  :  #bdc3c7;
   text-decoration: none;
  margin-bottom: 0.7rem;
    transition: color 0.3s ease;
	}

.footer-navigation a:hover,
.footer-policies a:hover {

    color: #667eea;
     }

.footer-info p {
    color:    #bdc3c7;
                    margin-bottom: 0.5rem;
   line-height: 1.6;
}

.phone 
 {
    font-weight: 600;
   color :#667eea;
    margin-top  :      1rem;
}

.footer-bottom {
	 text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
   color: #95a5a6;
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        border-bottom: 1px solid #e0e0e0;
        padding: 1rem 0;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link::after {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-wrapper h1 {
        font-size: 2rem;
    }

    .hero-wrapper p {
        font-size: 0.95rem;
    }

    .services-preview h2,
    .methodology-section h2,
    .conference-section h2,
    .testimonials-section h2,
    .cta-final h2 {
        font-size: 1.8rem;
    }

    .methodology-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .phase-list {
        gap: 1rem;
    }

    .phase-item {
        padding: 1rem;
    }

    .conference-box {
        padding: 2rem 1.5rem;
    }

    .cta-final {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-wrapper h1 {
        font-size: 1.5rem;
    }

    .hero-wrapper p {
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-button,
    .conference-button,
    .webinar-link {
        width: 100%;
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .submit-button {
        width: 100%;
    }
}.policySection {
   background: #f8f9fa;
    padding: 80px 2rem;
}

.policyContainer     {
	max-width: 800px;
   margin: 0 auto;
   text-align: left;
}

.policyContainer h2 {
  font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
   font-weight: 700;
}

.policyContainer p {
  color: #7f8c8d;
    margin-bottom   :     1.5rem;
        line-height: 1.7;
  font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services-hero {
    max-width: 1200px;
   margin: 0 auto;
    padding : 4rem 2rem;
   text-align: center;
}

.services-hero h1 {
    font-size     :3rem;
  font-weight    :700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   background-clip: text;

}

.services-hero p{
    font-size    :  1.2rem;
         color: #666;
  max-width: 600px;
   margin: 0 auto;
}

.service-detailed {
    max-width: 1200px;
  margin :       3rem auto;
    padding    :   0 2rem;
}

.service-single {
  display: grid;

	     grid-template-columns: 1fr 1fr;

	    gap    :      3rem;

	    align-items :  center;

	    margin-bottom: 4rem;
}

.service-single.service-reversed {
        direction: rtl;
}

.service-single.service-reversed > * {
    direction: ltr;
}

.service-content h2 {
   font-size: 2.2rem;
      margin-bottom: 1.5rem;
     color: #2c3e50;
}

.service-content p
{
   color: #666;
   line-height: 1.8;
   margin-bottom: 1.5rem;
  font-size  :  0.95rem;
}

.service-features {
   list-style: none;
                    margin: 1.5rem 0;
	padding: 0;
}

.service-features li {
   padding   :  0.75rem 0;
   padding-left: 1.5rem;
               color  :        #555;
  position: relative;
   line-height: 1.6;
}  

.service-features li::before {
  content: '';
   position    :   absolute;
   left: 0;
    -moz-border-radius: 50%;
   top: 50%;
  transform: translateY(-50%);
   width: 6px;
       height:      6px;
  background: #667eea;
  border-radius: 50%;
}

.service-price {
          font-size: 1.3rem;

  font-weight: 700;

	 color: #667eea;

   margin-top: 2rem;
}

.service-image img {
    width: 100%;
     height: auto;
	border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-packages {
   max-width: 1200px;
  margin :        4rem auto;
   padding     :   0 2rem;
}

.service-packages h2 {

	    font-size: 2.5rem;
  text-align: center;
   margin-bottom: 3rem;
    color: #2c3e50;
} 

.packages-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap:2rem;
}

.package-card {
    background: white;
  border-radius: 12px;
 padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition  :        all 0.3s ease;
          display  :       flex;
          flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.package-card.package-featured {
   border: 2px solid #667eea;
  transform: scale(1.05);
   position: relative;
}

.package-card.package-featured::before {
  content: 'BELIEBT';
         position: absolute;
  top: -12px;
   left  :    50%;
  transform: translateX(-50%);
  background: #667eea;
   color: white;
	padding: 0.4rem 1rem;
    border-radius :    20px;
  font-size   :    0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}


.package-card h3 {
  color: #2c3e50; 
  margin-bottom: 0.5rem; 
	font-size: 1.5rem;
}

.package-price {
   font-size: 2rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 1.5rem;
}

.package-list   {
	     list-style   :  none;
   padding: 0;
  margin: 1.5rem 0;
   flex-grow: 1;
	


}

.package-list li {
   padding: 0.6rem 0;

		color: #555;

	   padding-left: 1.5rem;

	    position: relative;

	    line-height: 1.5;
}

.package-list li::before {
  content: '';
   position: absolute;
  left: 0;
   top: 50%;
  transform: translateY(-50%);
    width: 4px;
  height: 4px;
  background: #667eea;
    border-radius: 50%;
}

.package-button {
   display: block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	 padding: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
  font-weight: 600;
  transition:    all 0.3s ease;
        margin-top: 1.5rem;
}

.package-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);

}

.service-benefits {
       max-width: 1200px;
    margin: 4rem auto;
   padding: 3rem 2rem;
  background:        #f8f9fa;
	border-radius   :     12px;
}

.service-benefits h2 {
  font-size: 2.5rem;
    text-align: center;
	 margin-bottom: 3rem;
   color   :  #2c3e50;
}

.benefits-grid {
   display:      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap   :   2rem;
}

.benefit-item {

   background: white;
   padding :   2rem;
	 border-radius: 8px;
    text-align: center;}

.benefit-item h3 {
    font-size: 1.3rem;
  margin-bottom: 1rem;
	color: #667eea;
}

.benefit-item p	{
	   color: #666;
   line-height     :      1.7;
	}

.cta-services {
   max-width: 1200px;
  margin   :      4rem auto;
          padding: 3rem 2rem;
	 text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius :       12px;
	color: white;
}

.cta-services h2 {

    font-size: 2.2rem;
	 margin-bottom: 1rem;}



.cta-services p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button-services


{
	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;
}

.cta-button-services:hover    {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}  

.thank-you-container {
	 max-width: 700px;
   margin: 4rem auto;
  padding: 0 2rem;
}

.thank-you-content  
  {
	background: white;
   border-radius: 12px;
	padding :  3rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   text-align: center;
}

.thank-you-icon {

	    margin-bottom: 1.5rem;

}

.thank-you-icon img {
   width: 64px;
	 height: 64px;
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));


}

.thank-you-content h1 {
  color: #2c3e50;
    font-size: 2.5rem;
   margin-bottom:   0.5rem;

}

.thank-you-subtitle {
    font-size: 1.1rem;
               color     : #666;
    margin-bottom: 2rem;
}

.thank-you-details {
   background: #f0f4ff;
    padding: 2rem;
  border-radius: 8px;
         margin: 2rem 0;
  text-align: left;
}

.thank-you-details p {
    color: #555;
	line-height  : 1.8;
    margin-bottom: 1rem;
}

.thank-you-details p:last-child {
	 margin-bottom: 0;
}

.next-steps {
    text-align     :       left;
    margin: 2rem 0;
}

.next-steps h2  {
    font-size: 1.3rem;
    margin-bottom: 1rem;
   color: #2c3e50;
}

.steps-list {
	list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.steps-list li {
  counter-increment: step-counter;
    padding: 0.8rem 0 0.8rem 2.5rem;
      position: relative;
    color: #555;
    line-height: 1.6;
}

.steps-list li::before {
  content: counter(step-counter);
  position    :  absolute;
    left     :       0;
    width: 24px;
  height: 24px;
	background: #667eea;
  color  :   white;
    border-radius: 50%;
    display     :   flex;
	align-items: center;
        justify-content: center;
   font-size: 0.8rem;
   font-weight: 700;
}

.thank-you-actions {
	  display: flex;
    gap   :  1rem;
    margin: 2rem 0;
  flex-wrap: wrap;
    justify-content: center;
     }

.thank-you-button {
   display: inline-block;
  padding: 0.9rem 2rem;
                    border-radius     : 50px;
  text-decoration: none;
   font-weight:        600;
   transition: all 0.3s ease;
}  

.thank-you-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white; 

}

.thank-you-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3); 
	
}

.thank-you-button.secondary {

   background: #e0e0e0;
   color: #2c3e50;
	}

.thank-you-button.secondary:hover {

  background: #d0d0d0;}

.thank-you-bonus {
    text-align: left;
    border-left: 4px solid #f39c12;
               margin: 2rem 0;
  border-radius    :     8px;
	-webkit-border-radius: 8px;
    padding: 1.5rem;
  background: #fff3e0;
}

.thank-you-bonus h3 {
   color    :   #2c3e50;
  margin-bottom: 0.5rem;
}

.thank-you-bonus p {
   color: #666;
   line-height    :  1.6;
}

.faq-section {
   max-width:     1200px;
      margin: 3rem auto;
   padding    :   0 2rem;
}

.faq-wrapper h2 {
  font-size: 2.2rem;
  text-align    :     center;
               margin-bottom: 2rem;
  color: #2c3e50;
}

.faq-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item
{


  background: white;
   padding: 1.5rem;
   border-radius:        8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);

}

.faq-item h3 {

	  font-size: 1rem;
  margin-bottom: 0.8rem;
   color: #667eea;
}

.faq-item p  
  {
    color: #666;
   line-height: 1.6;
    font-size: 0.95rem;
}

.testimonial-section {
 max-width :   1200px;
      margin    :  3rem auto;
      padding: 0 2rem;
}

.testimonial-section h2     {
  font-size: 2.2rem;
    text-align: center;
 margin-bottom: 2rem;
    color: #2c3e50;
}

.testimonial-cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
  padding     :       2rem;
   border-radius: 8px;
  border-top: 3px solid #667eea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    color   :  #555;
    line-height: 1.8;
   margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
    color: #667eea;
   font-weight: 600;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-single {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-content h2 {
        font-size: 1.6rem;
    }

    .package-card.package-featured {
        transform: scale(1);
    }

    .thank-you-content {
        padding: 2rem 1.5rem;
    }

    .thank-you-content h1 {
        font-size: 1.8rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-button {
        width: 100%;
    }

    .faq-items,
    .testimonial-cards {
        grid-template-columns: 1fr;
    }

    .service-benefits {
        padding: 2rem 1.5rem;
    }

    .benefit-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .service-single {
        margin-bottom: 2rem;
    }

    .service-content h2 {
        font-size: 1.3rem;
    }

    .service-price {
        font-size: 1.1rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .cta-services {
        padding: 2rem 1.5rem;
    }

    .cta-services h2 {
        font-size: 1.6rem;
    }

    .steps-list li {
        padding-left: 2rem;
    }

    .thank-you-details,
    .thank-you-bonus {
        padding: 1.5rem 1rem;
    }
}