* {
    margin: 0;
    padding: 0;
	 box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, sans-serif;

  color: #2c3e50;

    line-height: 1.6;
}

header		{
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
       color: white;
  padding: 1rem 0;
  position: sticky;
	top: 0;
	 z-index  :      100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

nav {
       display: flex;
   justify-content: space-between;
    align-items    : center;
  max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;


} 

.nav-logo {
     gap: 10px;
    display: flex;
   font-size: 1.5rem;
  align-items: center;
    font-weight     :        700;


}

.nav-logo img {
   height: 40px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
	gap: 30px;
    list-style: none;
}

.nav-links a {
     color: white;
	    text-decoration: none;
	    transition: opacity 0.3s;
}

.nav-links a:hover 
 {
    opacity: 0.8;
}

.hamburger {
   display: none;
    flex-direction: column;
  cursor: pointer;
   gap: 5px;
   background   :none;
	border    :  none;
}

.hamburger span {
	width: 25px;
 height: 3px;
       background: white;
   border-radius    :    2px;
   transition   :      0.3s;
} @media (max-width: 768px) {
    .nav-links { position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 0; background: #1e3c72; padding: 20px; display: none; }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
}section {
   padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero    {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding   : 100px 20px;
	text-align: center;
}

.hero h1 {
      font-size: 3rem;
   margin-bottom: 20px;


}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
   margin-left: auto;
	 margin-right: auto;
}

.btn-primary {
 transition: all 0.3s;
   border-radius: 5px;
  display: inline-block;
  color: white;
    font-weight: 600;
   cursor: pointer;
  text-decoration: none;
   background    :#f5576c;
    padding: 14px 40px;
   border: none;
}

.btn-primary:hover {

	   background: #d63447;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
	}

.services-grid


{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap   :       30px;
}

.service-card {
    background: white;
   padding: 30px;
    border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
               transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
     box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.service-card h3 {
       color: #667eea;

	   margin-bottom: 15px;

	  font-size: 1.3rem;



}

.service-card p {
	 color    :    #555;
    line-height: 1.7;
}

.course-section {
   background: #f8f9fa;
}

.course-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 25px;
}

.course-item {
  background: white;
   border-radius :  8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.course-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.course-img {
       width: 100%;
   height: 200px;
  object-fit: cover;
}

.course-content     {
  padding: 20px;
}

.course-content h3 {
               color: #2c3e50;
    margin-bottom: 10px;
}

.course-content p {
    color: #666;
    font-size: 0.9rem;
   margin-bottom: 15px;
}

.course-link {


               color: #667eea;
 text-decoration: none;
   font-weight: 600;
    transition: color 0.3s;}

.course-link:hover {
	color: #764ba2;
}

.features

{
	      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
         margin: 40px 0;}

.feature {
  text-align:    center;
} 

.feature-icon {
   font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature h4 {
  color  :   #2c3e50;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature p {

  color    : #666;
     }  

.contact-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
	text-align: center;
	 padding: 60px 20px;
}

.contact-section h2 {
   font-size: 2.2rem;
   margin-bottom: 20px;
}

.contact-section p {
        font-size: 1.1rem;

	    margin-bottom: 30px;

	   max-width: 600px;

	  margin-left: auto;

	  margin-right: auto;
}

.form-wrapper
{
   max-width: 600px;
  margin: 0 auto;
  background: white;
          padding: 40px;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
	
}

.form-group {
    margin-bottom: 20px;
     text-align: left;
}

.form-group label {
   display: block;
 margin-bottom     :  8px;
    color: #2c3e50;
  font-weight: 600;
}


.form-group input, .form-group select, .form-group textarea {

	  width   : 100%;
    padding: 12px;
  border: 2px solid #e0e0e0;
    border-radius: 5px;
	 font-size   :    1rem;
        transition: border-color 0.3s;
    color: #333;
	font-family: inherit;

}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus
	{
	   outline: none;
   border-color   :       #667eea;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit
{
	    width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   border   :       none;
      border-radius  :5px;
    font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
 transition: transform 0.3s;
	} 

.form-submit:hover {
  transform: translateY(-2px);
}

footer {
					background: #1a1a2e;
    color:  #ddd;
  padding: 50px 20px;
}

.footer-content  
  {
   max-width: 1200px;
               margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
}

.footer-section h4 {
    font-size     :1.1rem;
   margin-bottom: 15px;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {


    margin-bottom: 10px;


	}

.footer-section a {

    color    :  #aaa;

      text-decoration :      none;

   transition: color 0.3s;


}

.footer-section a:hover {
  color   :   white;
}

.footer-logo {
     align-items  :     center;

  display: flex;

  gap: 10px;
}

.footer-logo img{
   height: 35px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
   padding-top: 20px;
    margin-top: 40px;
   color: #888;
   text-align: center;
    border-top: 1px solid #333;
}

.address-info {
  color:        #aaa;
  font-size: 0.9rem;
  line-height: 1.6;
}

.phone-info {

	    color: #aaa;
  font-size: 0.9rem;


}

h1, h2, h3, h4 {
    font-weight: 700;
}

h2 {
   font-size: 2.2rem;
	margin-bottom  :        40px;
	text-align: center;
  color: #2c3e50;
} 

.testimonials	{
  background:  white;
	 padding: 60px 20px;
}

.testimonial-grid {
	    display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;


}

.testimonial {
   border-left    :   4px solid #667eea;
   border-radius: 8px;
   background  :        #f8f9fa;
                    padding: 25px;
}

.testimonial p {
         color: #555;
  margin-bottom: 15px;
 font-style: italic;
}

.testimonial-author		{
  color  :    #2c3e50;
    font-weight: 600;
}@import url('https://fonts.googleapis.com/css2?family=Segoe+UI:wght@400;600;700&display=swap');

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f5576c;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #666;
    --border-color: #e0e0e0;
}

*     {
    margin: 0;
    padding: 0;
   box-sizing: border-box;
}

html, body    {
  width:   100%;
  height: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, sans-serif;
  color: var(--text-dark);
    line-height: 1.6;
        overflow-x: hidden;
}

input, select, textarea, button {
    font-family: inherit;
}

a {
	transition: all 0.3s ease;
}

img {
   max-width: 100%;
	 height: auto;
     display: block;
}@media (max-width: 480px) {
    section {
        padding: 40px 15px !important;
    }
    
    h1 {
        font-size: 1.8rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
}@media (max-width: 768px) {
    section {
        padding: 45px 15px;
    }
    
    .form-wrapper {
        padding: 25px !important;
    }
    
    .hero h1 {
        font-size: 2rem !important;
    }
    
    .hero p {
        font-size: 1.05rem !important;
    }
    
    .services-grid, .course-grid, .testimonial-grid, .features {
        gap: 20px !important;
    }
}

@media (min-width: 1201px) {
    section {
        max-width: 1400px !important;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}section {

	    animation: fadeIn 0.6s ease-out;
}

.nav-links a:hover {
   text-decoration: underline;
}

.btn-primary:active {
  transform: translateY(0);
}

.service-card, .course-item, .testimonial {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}@supports (backdrop-filter: blur(10px)) {
    header {
        backdrop-filter: blur(5px);
    }
}::placeholder {


    color: #999;
	}

::-webkit-scrollbar {
                    width: 8px;
}

::-webkit-scrollbar-track {
   background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
   border-radius   :       4px;
    background: #667eea;
}

::-webkit-scrollbar-thumb:hover {
      background: #764ba2;
}  

.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 h3

{
   font-size: 1.4rem;
    color: #667eea;
    margin: 2rem 0 1rem 0;
   font-weight: 600;
}


.policyContainer p {
    color:      #7f8c8d;
  margin-bottom  :       1.5rem;
  line-height: 1.7;
    font-size: 1.1rem;
}

.policyContainer ul {
    margin: 1rem 0 1.5rem 1.5rem;
  color  : #7f8c8d;
	
}

.policyContainer li {
    margin-bottom: 0.5rem;
  font-size: 1.1rem;
	
}

.policyContainer a {
    text-decoration: none;
  color: #667eea;
    transition: color 0.3s;
}

.policyContainer a:hover {
   color :        #764ba2;
}

.policyContainer em
{
    color: #95a5a6;
    font-style: italic;
}
@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
    }

    .policyContainer p,
    .policyContainer li {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services-header
	{
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
	text-align: center;
  padding: 80px 20px;
   margin-bottom  :       40px;
}

.services-header h1 {
	font-size: 2.8rem;
  margin-bottom: 20px;
}

.services-header p   {
   font-size: 1.15rem;
   max-width: 700px;
          margin: 0 auto;
	 opacity:      0.95;
}

.services-main {

    max-width: 1200px;
	    margin: 0 auto;
	  padding: 60px 20px;
}  

.services-main h2 {
    text-align: center;
    margin-bottom  :        60px;
  font-size: 2.2rem;
  color: #2c3e50;
}

.service-detailed {

   display: grid;
	grid-template-columns: 1fr 1fr;
    gap   :    40px;
  align-items: center;
    margin-bottom: 80px;
    padding     :        40px;
    background: #f8f9fa;
	border-radius: 10px;}

.service-detailed.alternate {
  grid-template-columns: 1fr 1fr;
}

.service-detailed.alternate .service-detail-text {
  order: 2;
}

.service-detailed.alternate .service-detail-img {
    order: 1;
	
}

.service-detail-text h3 {
    font-size: 1.8rem;
    color: #667eea;
   margin-bottom: 20px;
}

.service-detail-text p {
    color: #555;
     margin-bottom: 20px;
    line-height: 1.8; 

}

.service-features

{
    list-style: none;
  margin: 25px 0;
}  

.service-features li {
   padding: 12px 0;
    padding-left: 30px;
   position: relative;
   color: #666;
         line-height:   1.6;
}

.service-features li:before {
	 position: absolute;
  content: "→";
   font-weight: bold;
  color: #667eea;
  left: 0;
	
}

.service-detail-highlight {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
         padding: 15px;
    border-left: 4px solid #667eea;
  border-radius: 5px;
  font-style: italic;
   color: #2c3e50;
   margin: 20px 0 0 0; 

}

.service-detail-img {

		 width: 100%;
	height: 350px;
    object-fit: cover;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);


}

.pricing-section {
  background: #f8f9fa;
        padding:60px 20px;
}

.pricing-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
    margin: 0 auto;} 

.pricing-card {
      background: white;
    padding:40px;
                    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   text-align: center;
   transition : all 0.3s;
    border-top: 4px solid #e0e0e0;
	}

.pricing-card.featured {
    border-top: 4px solid #667eea;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.pricing-card h3    {
   font-size:      1.4rem;
	 color: #2c3e50;
				 margin-bottom: 15px;
	
} 

.price	{
	  font-size: 2.5rem;

		font-weight: 700;

	 color: #667eea;

	    margin: 20px 0 5px 0;
	}

.price-period {
   font-size: 0.9rem;
   color: #999;
  margin-bottom    : 25px;
}

.pricing-features {
    list-style: none;
  margin: 30px 0;
   text-align: left;
}

.pricing-features li {

               padding: 12px 0;
   color: #666;
   border-bottom: 1px solid #f0f0f0;
	}

.pricing-features li:before {
  content: "✓ "; 
    color: #2ecc71; 
               font-weight: bold; 
    margin-right: 10px;


}

.pricing-btn {
   display: inline-block;
    padding: 12px 30px;
    background: #e0e0e0;
    color: #2c3e50;
   text-decoration: none;
   border-radius: 5px;
  font-weight: 600;
   margin-top: 20px;
   transition: all 0.3s;
  border: none;
					cursor: pointer;
}

.pricing-btn:hover {
   background: #d0d0d0;
}

.pricing-btn.featured-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.pricing-btn.featured-btn:hover {
     transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);

}

.faq-section {

  max-width: 900px;
  margin: 0 auto;
                    padding: 60px 20px;}

.faq-container {
        display    :      flex;
                    flex-direction: column;
    gap:   20px;
}



.faq-item {

    background: white;
    border-radius: 8px;
	 overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);}

.faq-question  
  {
	padding: 20px;
  display :flex;
   justify-content: space-between;
  align-items: center;
    background: #f8f9fa;
  cursor  :    pointer;
	user-select: none;
	 transition: all 0.3s;
}

.faq-question:hover {

	   background: #f0f1f5;
     }

.faq-question span:first-child {
	font-weight: 600;
		 color: #2c3e50;
  font-size: 1rem;
}

.faq-icon {

		 font-size: 1.5rem;
        color: #667eea;
  font-weight:    bold;
	}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}  

.faq-answer {
   padding: 0 20px;
   max-height    :       0;
   overflow: hidden;
	transition: all 0.3s ease;
    background: white; 
	
}

.faq-item.open .faq-answer {
   padding: 20px;
  max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

.testimonials-services {
    background: white;
	 padding: 60px 20px;
               max-width: 1200px;
   margin: 0 auto;
}

.testimonial-grid-services {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
} 

.testimonial-card {
    background: #f8f9fa;
	 padding: 30px;
  border-radius: 8px;
   border-left: 4px solid #667eea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition     :all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);

	  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
} 

.testimonial-header

{
	margin-bottom: 20px;
}

.testimonial-info {
    display     : flex;
   flex-direction: column;
}

.testimonial-name {


   color: #2c3e50;
	 font-size: 1rem;
   font-weight: 700;
     }

.testimonial-position

{
    font-size: 0.85rem;
      color: #999;
}  

.testimonial-text {
    color: #666;
  margin-bottom: 20px;
   line-height: 1.7;
    font-style: italic;
}

.testimonial-result


{
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    padding: 12px;
  border-radius: 5px;
  color: #667eea;
         font-weight: 600;
  font-size: 0.9rem;
}  

.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color : white;
   text-align: center;
   padding   :        60px 20px;
}

.cta-services h2 {
  color: white;
  margin-bottom :    20px;
}

.cta-services p {
	 font-size  :       1.1rem; 
		margin-bottom: 30px;
}

.btn-cta {
    font-weight: 600;
	   transition: all 0.3s;
	  padding: 14px 40px;
		display: inline-block;
	  background: white;
	  border-radius: 5px;
	   color   :     #667eea;
	    text-decoration: none;


}

.btn-cta:hover     {
  transform: translateY(-2px); 
	  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.thank-you-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding   :80px 20px;
  text-align: center;
      min-height: 100vh;
 display: flex;
  align-items: center;
	 justify-content: center;

}

.thank-you-content	{
    max-width: 700px;

	  margin: 0 auto;
}

.thank-you-icon    {
   margin-bottom: 30px;
}

.thank-you-icon svg {
        display: inline-block;
               animation: scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thank-you-hero h1 {
  font-size: 2.8rem;
	margin-bottom: 10px;
  animation: slideDown 0.6s ease-out 0.2s both;
}

/* Typography */

.thank-you-subtitle {
	font-size: 1.2rem;
  margin-bottom  :40px;
  opacity    :       0.95;
   animation: slideDown 0.6s ease-out 0.4s both;
}
@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.thank-you-details {
  background: rgba(255, 255, 255, 0.15);
	padding: 20px;
  border-radius  : 8px;
   margin-bottom  : 40px;
  backdrop-filter: blur(10px);
	}

.thank-you-details p {
    margin: 10px 0;
}



.thank-you-message {
	 background: white;
  color: #2c3e50;
   padding  :       40px;
    border-radius: 10px;
    text-align     :left;
  margin-bottom: 40px;
}

.thank-you-message h2 {
   color: #667eea;
		 text-align: center;
  margin-bottom: 30px;
   font-size: 1.8rem;
}

.thank-you-steps {
	list-style: none;
}

.thank-you-steps li {
	display: flex;
    gap     : 20px;
		margin-bottom: 25px;
    padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.thank-you-steps li:last-child {
  border-bottom: none;
  margin-bottom    :   0;
  padding-bottom: 0;
}

.step-number {
  display: flex;
    align-items: center;
    justify-content: center;
   width   :   40px;
	height    :    40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  color: #2c3e50;
          margin-bottom: 8px;
   font-size: 1.1rem;
}



.step-content p {
  color: #666;
	font-size: 0.95rem;
}

.thank-you-cta {
  background: rgba(255, 255, 255, 0.2);
				 padding: 25px;
  border-radius: 8px;
        margin-bottom: 30px;
 color: white;
}

.thank-you-cta p {
   margin-bottom:    20px;
}

.btn-return {
               display: inline-block;
  padding   :  12px 35px;
  background: white;
   color: #667eea;
    text-decoration: none;
   border-radius: 5px;
  font-weight: 600;
          transition: all 0.3s;
}

.btn-return:hover {

  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);}

.thank-you-faq {
  background: rgba(255, 255, 255, 0.15);
         padding: 20px;
  border-radius   :    8px;
	margin-top: 30px;
}


.thank-you-faq h3 {
		color: white;
   margin-bottom: 15px;
}

.thank-you-links {
	   justify-content: center;
   flex-wrap  : wrap;
  gap :    15px;
   display: flex;
	}

.thank-you-links a {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  padding: 10px 20px;
    border-radius:     5px;
   text-decoration: none;
   transition: all 0.3s;
}

.thank-you-links a:hover {
  background: rgba(255, 255, 255, 0.35);
}

.additional-info {
  background: white;
	padding: 60px 20px;
  max-width: 1200px;
	margin:0 auto;
}

.additional-info h2


{
  text-align: center;
   margin-bottom:        40px;
}

.info-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;}

.info-item {
  text-align   :  center;
   padding     :  25px;
  background:     #f8f9fa;
  border-radius: 8px;
   transition :       all 0.3s;
}

.info-item:hover {
  transform: translateY(-5px);
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
     }

.info-item h3 {
     color: #667eea;
	 font-size: 1.15rem;
  margin-bottom: 15px;
}

.info-item p {


     color: #666;
  line-height   :     1.6;
	}@media (max-width: 768px) {
    .services-header h1 {
        font-size: 2rem;
    }

    .service-detailed {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }

    .service-detail-img {
        height: 250px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .thank-you-hero h1 {
        font-size: 2rem;
    }

    .thank-you-steps li {
        gap: 15px;
    }
}