* {
    margin: 0;
    padding: 0;
	box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height    :     1.6;
   color: #2c3e50;
  background-color: #fff;
}

.nav-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1.2rem 0;
	position: sticky;
  top: 0;
    z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container
	{
  max-width  : 1200px;
  margin: 0 auto;
   padding   :        0 2rem;
  display:  flex;
	justify-content    :        space-between;
    align-items: center;
}

.logo-section {
       flex-shrink: 0;
}

.header-logo {
     height: 48px; 
  width  :      auto; 
  object-fit: contain;
}

.burger-menu-container {
   display: none;
}

.burger-btn {

	    background    :   none;
    border: none;
   cursor: pointer;
   padding: 0.5rem;
   display   :  flex;
  align-items: center; 
	

}

.burger-btn img {
    width: 28px;
	height:   28px;
   stroke: #fff;
  filter: brightness(0) invert(1);
}


.nav-menu {
  display: flex;
   list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
   color: #fff;
   text-decoration: none;
    font-weight:500;
  transition     :  opacity 0.3s ease;
               font-size: 0.95rem;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.hero-section {
    max-width: 1200px;
		 margin: 0 auto;
    padding: 4rem 2rem;
       display: grid;
    grid-template-columns :1fr 1fr;
   gap    :     3rem;
         align-items: center;
}

.hero-content h1 {
	font-size :       3rem;
   line-height: 1.2;
  margin-bottom: 1.5rem;
	color: #1a1a2e;
    font-weight: 700;

}

.hero-content p  
  {
  font-size  :     1.1rem;

  color: #555;

  margin-bottom: 2rem;

   line-height: 1.8;
}

.cta-buttons {
  display :    flex;
  gap: 1.5rem;
                    flex-wrap:     wrap;
}

.btn-primary, .btn-secondary {
   padding:    1rem 2.5rem;
  border-radius: 8px;
    text-decoration: none;
  font-weight: 600;
    transition     :        all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
  cursor: pointer;
   font-size :   1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
   color: #667eea;
   border    : 2px solid #667eea;
}

.btn-secondary:hover {
	    background: #667eea;
    color: white;
	}

.hero-image img {
         width: 100%;
    height    :       auto;
   border-radius: 12px;
  object-fit: cover; 

}

.services-preview {
	 max-width :    1200px;
   margin: 3rem auto;
    padding: 3rem 2rem;
	 text-align: center;
}

.services-preview h2 {
    font-size: 2.5rem;
  margin-bottom: 3rem;
    color: #1a1a2e;
}

.services-grid {
   display  :      grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card   {
	padding: 2rem;
    background:    #f8f9fa;
  border-radius: 12px;
    transition    :      all 0.3s ease;
	text-align: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.service-icon {


   width: 60px;
  height: 60px;
   margin-bottom  :        1.5rem;
   display: flex;
  align-items: center;}

.service-icon img {
  width: 100%;
  height: 100%;
   stroke: #667eea;
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
}

.service-card h3 {
   margin-bottom: 1rem;
   color    :#1a1a2e;
	font-size: 1.3rem;
}

.service-card p {
   font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
     }

.expertise-section {
      max-width  :     1200px;
  margin    :  3rem auto;
    padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap   :   3rem;
    align-items: center;


}

.expertise-text h2 {
   color: #1a1a2e;
  margin-bottom: 1.5rem;
          font-size: 2.2rem;
}

.expertise-text p {
   color    :     #555;
   margin-bottom: 2rem;
  line-height   :      1.8;
  font-size: 1rem;
}

.expertise-points {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
  margin-top    :     2rem;
}

.point {
   padding: 1.5rem;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  border-radius: 8px;
    border-left  :  4px solid #667eea;
}

.point-number {
  display     :    block;
  font-size: 2rem;
    font-weight: 700;
	color: #667eea;
  margin-bottom    :0.5rem;
}

.point p {
  font-size: 0.95rem;
 margin: 0;
      color     :  #2c3e50;
}

.expertise-image img {
	   width: 100%;
   height  :     auto;
    border-radius: 12px;
                    object-fit   :      cover;
}

.academy-section {
   max-width: 1200px;
   margin: 3rem auto;
     padding: 3rem 2rem;
    text-align: center;
}

.academy-section h2 {
       font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a1a2e;
}

.academy-cards {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem; 
	
}

.academy-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
       transition: all 0.3s ease;
  text-align: left;
}

.academy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.academy-card img    {
   width: 100%;
   height    :  200px;
  object-fit: cover;
}

.academy-card h3 {
  font-size: 1.4rem;
   margin: 1.5rem 1.5rem 1rem;
  color: #1a1a2e;
}

.academy-card p {
    margin: 0 1.5rem 1.5rem;
   color: #666;
  font-size: 0.95rem;
    line-height: 1.7;
}

.course-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color:        white;
     padding: 0.5rem 1rem;
   border-radius:      20px;
  font-size  :     0.85rem;
   margin: 0 1.5rem 1.5rem;
	 font-weight: 600;
}

.conference-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	  color: white;

	                    padding: 3rem 2rem;

	    margin: 3rem 0;
}

.conference-content {
	   text-align: center;
    margin: 0 auto;
  max-width: 1000px;
	}

.conference-content h2 {
    font-size: 2.3rem;
  margin-bottom: 1.5rem;
}

.conference-content p  
  {
   font-size: 1.1rem;
       margin-bottom: 2.5rem;
                       line-height: 1.8;
   		 opacity: 0.95;
}

.conference-highlights{
    display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.highlight-item {
     padding  :        1.5rem;

  background: rgba(255, 255, 255, 0.1);

	 border-radius:8px;

  border-left: 3px solid rgba(255, 255, 255, 0.5);

       font-size: 0.95rem;

   line-height  :1.6;
}

.conference-btn
	{
    background: white;
	color: #667eea;


}

.conference-btn:hover {
   background: #f0f0f0;
}

.cta-section {
    max-width: 900px;
	 margin: 4rem auto;
  padding: 3rem 2rem;
    text-align: center;
  background: #f8f9fa;
        border-radius: 12px;


}

.cta-section h2 {
   font-size   : 2.2rem;
	margin-bottom: 1rem;
   color: #1a1a2e;
}

.cta-section p {

	   font-size: 1.1rem;
    color    :    #666;
  margin-bottom: 2rem;
   line-height: 1.8;
}

.cta-large     {
    padding: 1.2rem 3rem !important;
    font-size: 1.1rem !important;
}

.contact-section {
   max-width    :       700px;
       margin: 4rem auto;
  padding: 3rem 2rem; 
	
}

.contact-section h2 {
  font-size : 2.2rem;
  text-align:    center;
       margin-bottom: 1rem;
  color: #1a1a2e;
}

.contact-section > p {
      text-align: center;
   color: #666;
  margin-bottom: 2.5rem;
   font-size: 1rem;
}

.contact-form {
      display: grid;
     gap: 1.5rem;}  

.form-group {
	   display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
   padding: 1rem;
         border: 2px solid #e0e0e0;
   border-radius: 8px;
         font-family: inherit;
   font-size: 1rem;
  transition: border-color 0.3s ease;
    background: #fff;
}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
   outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {

  color: #999;}

.form-btn {
   padding: 1rem 2rem !important;
					font-size: 1rem !important;
	margin-top   :   1rem;
}

.footer-section {
  background: #1a1a2e;
    color:        #fff;
   padding     :       3rem 2rem 1.5rem;
   margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
 margin: 0 auto;
}

.footer-logo     {
  margin-bottom: 2rem;
	text-align: center;
}

.footer-img {
   height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
   margin-bottom: 2.5rem;
}

.footer-column h4{
       font-size: 1.1rem;
      margin-bottom: 1.2rem;
  color  :        #fff;
}

.footer-column ul {
   list-style   :none;
}

.footer-column li   {
     margin-bottom: 0.7rem;
	}

.footer-column a {
	 color: #ccc;
	 text-decoration: none;
   transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
  color: #fff;
}

.footer-column p {
  font-size: 0.9rem;
   line-height: 1.7;
    color     :  #bbb;
}


.footer-bottom {
   	text-align     :center;
    padding-top: 2rem;
   border-top: 1px solid #333;
  color: #999;
        font-size: 0.9rem;}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a1a2e;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.8rem 2rem;
    }

    .burger-menu-container {
        display: block;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .expertise-section {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .services-preview,
    .academy-section,
    .contact-section,
    .cta-section {
        padding: 2rem;
    }

    .services-preview h2,
    .academy-section h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .conference-content h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .nav-menu li {
        padding: 0.6rem 1.5rem;
    }

    .services-grid,
    .academy-cards,
    .expertise-points,
    .conference-highlights {
        grid-template-columns: 1fr;
    }

    .btn-primary, .btn-secondary {
        padding: 0.9rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
    padding: 80px 2rem;
   background: #f8f9fa;
}

.policyContainer		{
    max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.policyContainer h2 {
  font-size: 2.5rem;
    color     :      #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.policyContainer p {
	 margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
    color: #7f8c8d;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	  color: white;

	    padding: 3rem 2rem;

	    text-align: center;
}

.services-header h1 {
	margin-bottom: 1rem;
    font-size   :      2.8rem;
   font-weight    :   700;
}

.services-header p {
    font-size     :     1.2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.services-detailed {


	max-width     :      1200px;
     margin: 0 auto;
    padding: 3rem 2rem;


}

.service-item {
   grid-template-columns: 1fr 1fr;
  margin-bottom: 4rem;
				 align-items: center;
  display   :   grid;
	gap: 3rem;
}

.service-item-reverse {
  grid-template-columns  :        1fr 1fr;
               direction     :      rtl;
}

.service-item-reverse > * {

	  direction: ltr;
	}

.service-detail-image {
  overflow: hidden;
     border-radius     :        12px;
}

.service-detail-image img    {
  width: 100%;
    height: auto;
    display  :       block;
   object-fit: cover;
   border-radius: 12px;
	transition: transform 0.3s ease;
}

.service-detail-image:hover img {
  transform: scale(1.05);
}

.service-detail-content h2 {
   margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-size: 2rem;
}

.service-detail-content p {
   font-size     :  1rem;
    line-height: 1.8;
    color: #555;
   margin-bottom: 2rem;
}

.service-features {
   display: grid;

   gap: 1.5rem;
}

.feature-item {

    display: grid;
   grid-template-columns: auto 1fr;
   gap: 1.5rem;
                    align-items: flex-start;


}

.feature-icon    {
 width: 50px;
	height: 50px;
  flex-shrink: 0;
   display: flex;
  align-items: center;
        justify-content: center;
}

.feature-icon img {
  width: 100%;
   height: 100%;
   stroke: #667eea;
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.feature-text p {
  font-size: 0.95rem;
  color: #666;
	margin     :    0;
}  

.pricing-section {
	   max-width  :    1200px;
  margin: 3rem auto;
  padding: 3rem 2rem;
	text-align: center;


}

.pricing-section h2


{
    font-size   : 2.5rem;
  margin-bottom: 3rem;
    color: #1a1a2e;
}

.pricing-grid {
             display    :grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2rem;
	}

.price-card {
    background: #fff;
  border: 2px solid #e0e0e0;
    border-radius :    12px;
    padding     :      2rem;
  text-align   : left;
     transition: all 0.3s ease;
   position : relative;
}

.price-card:hover {
          border-color: #667eea;
     box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15);
     transform: translateY(-8px);
}

.price-card-featured


{

         border     :    2px solid #667eea;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  transform: scale(1.05);

}

.featured-badge {
   position: absolute;
   top: -12px;
    right  : 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 0.5rem 1.5rem;
	 border-radius: 20px;
         font-size     :        0.85rem;
   font-weight: 600;
}

.price-card h3 {
  font-size: 1.5rem;
   margin-bottom    : 0.5rem;
    color: #1a1a2e;
}

.price-value {
  font-size: 2rem;
   font-weight: 700;
   color: #667eea;
   margin: 1rem 0 2rem;
}

.price-features {
	 list-style: none;
      margin-bottom     :    2rem;
}

.price-features li {

	  color:  #666;
    line-height: 1.5;
   font-size: 0.95rem;
    padding: 0.7rem 0;
  border-bottom   :        1px solid #f0f0f0; 

     }

.price-features li:last-child {
   border-bottom: none;
}

.price-btn {
    width: 100% !important;
  text-align: center !important;
  padding: 1rem 2rem !important;
}

.faq-section {
   max-width: 900px;
	margin: 3rem auto;
   padding:     3rem 2rem;
}

.faq-section h2 {
   font-size: 2.5rem;
    text-align: center;
	 margin-bottom: 3rem;
   color: #1a1a2e;
}

.faq-container	{
	display: grid;
	gap: 1rem;
}

.faq-item {
     border: 2px solid #e0e0e0;
                    border-radius: 8px;
                    overflow     :hidden; 
	
}

.faq-question {
      width: 100%;
         padding: 1.5rem 2rem;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    display: flex;
   justify-content: space-between;
    align-items     :      center;
  font-size: 1rem;
	 font-weight: 600;
	color: #1a1a2e;
	transition: all 0.3s ease;
}

.faq-question:hover {
   background: #fff;
  color: #667eea;
}

.faq-question img {
   width    :20px;
                    height     : 20px;
        transition: transform 0.3s ease;
  stroke: #1a1a2e;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.faq-item.active .faq-question img {
  transform: rotate(180deg);
}

.faq-answer {
    display: none;
     padding: 2rem;
   background: #fff;
  border-top     :  2px solid #e0e0e0;
   color: #555;
	line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 3rem 2rem;
  margin: 3rem 0;
    text-align: center;
}

.cta-services h2 {
	 font-size: 2.3rem;
   margin-bottom: 1rem;
}

.cta-services p {
  font-size: 1.1rem;
   margin-bottom: 2rem;
   opacity: 0.95;
   line-height: 1.6;
}

.cta-services .cta-large {
    background: white;
   color :      #667eea;
}

.cta-services .cta-large:hover {

    background: #f0f0f0;


}

.thankyou-section {
    max-width: 800px;
  margin: 3rem auto;
   padding: 3rem 2rem;
  text-align    :    center;
}

.thankyou-container {
    background :       #f8f9fa;
  border-radius: 12px;
  padding: 3rem 2rem;
}

.success-icon {
	width: 80px;
  height: 80px;
    margin: 0 auto 2rem;
     display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon img {
  width: 100%;
	 height: 100%;
                    stroke   :     #2ecc71;
  filter: drop-shadow(0 4px 8px rgba(46, 204, 113, 0.3));
}

.thankyou-section h1 {
    font-size     : 2.5rem;
    margin-bottom: 0.5rem;
   color: #1a1a2e;
}

.thankyou-lead {
    font-size: 1.3rem;
  color: #667eea;
          margin-bottom: 2rem;
  font-weight: 600;
}

.thankyou-content  
  {
  text-align  :        left;
	 background: white;
       padding: 2rem;
    border-radius :       8px;
	 margin-bottom: 2rem;
}

.thankyou-content > p {
   	color :       #555;
	line-height: 1.8;
    margin-bottom: 2rem;
	}

.thankyou-details h3 {
		font-size:     1.3rem;
    margin-bottom: 1.5rem;
               color     :       #1a1a2e;
}

.next-steps {
   list-style: none;
  display     :grid;
   gap: 1.5rem;
}

.next-steps li {
   display: grid;
  grid-template-columns: 50px 1fr;
          gap   :     1.5rem;
   text-align: left;


}  

.step-number {
	  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   border-radius: 50%;
	display: flex;
    align-items: center;
  justify-content: center;
    font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;

}

.step-content strong	{
      display     :        block;
  margin-bottom: 0.5rem;
   color: #1a1a2e;
   font-size: 1rem; 
	


}

.step-content p {
  color: #666;
   font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.thankyou-info {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  padding: 1.5rem;
  border-radius :    8px;
    margin-top: 2rem;
   border-left: 4px solid #667eea;
}

.thankyou-info p {
   margin: 0.5rem 0;
  color: #1a1a2e;
   font-size: 0.95rem;
}

.thankyou-actions {
      flex-wrap  :      wrap;
    gap: 1.5rem;
	justify-content: center;
    margin-bottom: 2rem;
  display: flex;
}

.thankyou-actions .btn-primary,
.thankyou-actions .btn-secondary {
    flex: 1;
   min-width: 200px;
}



.thankyou-contact {
          border-radius: 8px;
    padding: 2rem;
    border: 2px solid #e0e0e0;
  background: white;
}

.thankyou-contact p {


   margin: 0.5rem 0;
    color: #555;
	}

.contact-phone {
   font-size: 1.3rem;
  color: #667eea;
}

.related-services {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 3rem 2rem;
	 text-align :center;
}

.related-services h2 {
         font-size: 2.2rem;
  margin-bottom: 3rem;
    color: #1a1a2e;
}

.related-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2rem;
}

.related-card {
   background : #fff;
	  border-radius: 12px;
	    padding: 2rem;
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	  transition    :        all 0.3s ease;
	    text-align: center;
}

.related-card:hover {
  transform: translateY(-8px); 
	  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.related-icon {
	width :      60px;
    margin: 0 auto 1.5rem;
               height: 60px;
    display: flex;
  justify-content: center;
   align-items: center;
}

.related-icon img {
   width: 100%;
   height: 100%;
    stroke: #667eea;
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
}

.related-card h3 {
   font-size: 1.2rem;
  color: #1a1a2e;
    margin-bottom: 1rem;

}

.related-card p {
	  color:    #666;
  font-size :   0.95rem;
  line-height: 1.6;
   margin-bottom     :1.5rem; 
	
     }

.related-card a {
	  font-weight: 600;
  text-decoration: none;
   color :       #667eea;
    transition: color 0.3s ease;
     }

.related-card a:hover {
    color: #764ba2;
}@media (max-width: 768px) {
    .services-header h1 {
        font-size: 2rem;
    }

    .services-header p {
        font-size: 1rem;
    }

    .service-item,
    .service-item-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .service-item-reverse > * {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card-featured {
        transform: scale(1);
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-services h2 {
        font-size: 1.8rem;
    }

    .thankyou-section {
        padding: 2rem;
    }

    .thankyou-container {
        padding: 2rem 1.5rem;
    }

    .thankyou-section h1 {
        font-size: 2rem;
    }

    .next-steps li {
        grid-template-columns: 40px 1fr;
    }

    .step-number {
        width: 40px;
        height: 40px;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-actions .btn-primary,
    .thankyou-actions .btn-secondary {
        flex: 1;
        min-width: auto;
    }
}@media (max-width: 480px) {
    .services-header h1 {
        font-size: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.2rem;
    }

    .feature-item {
        gap: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .pricing-section h2,
    .faq-section h2,
    .related-services h2 {
        font-size: 1.8rem;
    }

    .price-value {
        font-size: 1.5rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .step-content {
        font-size: 0.9rem;
    }
}