* {
	  margin    :  0;
  padding: 0;
   box-sizing: border-box;


}

html {
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
    color     :        #2c3e50;
  background-color: #ffffff;
}



.navbar-main {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position  : sticky;
   top: 0;
   z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
} 

.nav-container {

	                    display: flex;
    justify-content: space-between;
   align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
   margin: 0 auto;

}

.navbar-logo {
    height: 45px;
   width: auto;
  filter: brightness(0) invert(1);
	transition     :        transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.nav-links  
  {
    display: flex; 
	   list-style: none; 
	  gap: 2.5rem; 
	
} 

.nav-links a {

  position: relative;
    color   :    white;
                    font-weight: 500;
    text-decoration: none;
    font-size: 1.05rem;
   transition :   all 0.3s ease;
     }  

.nav-links a:after    {

	  content: '';
               position: absolute;
    bottom: -5px;
	-webkit-transition: width 0.3s ease;
  left: 0;
    width: 0;
	 height  :    2px;
   background: white;
    -moz-transition     :        width 0.3s ease;
	 transition: width 0.3s ease;


}

.nav-links a:hover:after {


	 width: 100%;

}

.menu-toggle {
   display: none;
     flex-direction: column;
    background: none;
    border  :       none;
    cursor: pointer;
    gap: 6px;
  z-index: 1001;
}

.menu-toggle span {
		width: 25px;
   height: 3px;
                    background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-section  
  {
   display: grid;
	    grid-template-columns  : 1fr 1fr;
	   gap: 4rem;
	  padding: 5rem 2rem;
	   max-width: 1400px;
	   margin: 0 auto;
	  align-items: center;
}

.hero-content h1		{
  font-size: 3.5rem;
    margin-bottom: 1.5rem;
  color: #1a1a1a;
    line-height: 1.2;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
} 

.hero-content p {
   font-size: 1.25rem;
   color: #555;
   margin-bottom: 2.5rem;
    line-height     : 1.8;
}

.cta-button {
	display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 1rem 2.5rem;
  text-decoration    :        none;
  border-radius     :      50px;
          font-weight:600;
    transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

.hero-visual img {
    width :     100%;
   border-radius    :   15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
   object-fit: cover;
   aspect-ratio: 1;
}

.services-preview {
   background: #f8f9fa;
    padding: 5rem 2rem;
}

.section-header {
     text-align: center;
   max-width:  600px;
                    margin :       0 auto 4rem;
}

.section-header h2 {
   font-size: 2.8rem;
   margin-bottom: 1rem;
   color: #1a1a1a;
}

.section-header p {
	 font-size: 1.1rem;
  color   :  #666;
	line-height :    1.8;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin    :0 auto;
}

.service-card {

    background: white;
	border-radius: 12px;
        overflow :    hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;

}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
}

.service-card img	{
  width: 100%;
     height    :  220px;
  object-fit: cover;
}

.service-card h3 {
               font-size:       1.4rem;
   margin: 1.5rem;
    color: #1a1a1a;
  margin-bottom    :0.8rem;
}

.service-card p {
   margin: 0 1.5rem 1.5rem;
			color:     #555;
   line-height: 1.7;
    flex-grow  : 1;
}

.features-section {
   padding: 5rem 2rem;
    max-width: 1400px;
   margin: 0 auto;
}

.features-section h2 {
   text-align: center;
    font-size: 2.8rem;
   margin-bottom  : 3.5rem;
    color: #1a1a1a;
}

.features-container {

	        display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

   gap: 2rem;
	}



.feature-item {
    padding:      2.5rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-left: 4px solid #667eea;
  border-radius   :      8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-left-color: #764ba2;
  transform: translateX(8px);
}

.feature-title{
  font-size :        1.3rem;
  font-weight: 600;
   margin-bottom:   1rem;
  color: #667eea;
}

.feature-item p {
      color: #555;
   line-height: 1.8;


}

.webinars-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 5rem 2rem;
  color: white; 

}

.section-content {
   max-width: 1400px;
   margin     :   0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  align-items: center;
}

.section-content h2 {
   font-size: 2.8rem;
    margin-bottom :       1.5rem;
}

.section-content p  {
  font-size: 1.15rem;
  line-height: 1.8;
   margin-bottom  :       2rem;
   opacity  :        0.95;

}

.section-content img {
  width: 100%; 
	  border-radius: 15px; 
	  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); 
	   object-fit: cover; 
	   aspect-ratio: 1;
}

.conferences-section {
    padding  :     5rem 2rem;
    background   :  #f8f9fa;
}

.conference-header {
  text-align: center;
	max-width: 900px;
  margin: 0 auto;
} 

.conference-header h2 {
    color     :  #1a1a1a;
  margin-bottom: 1.5rem;
   font-size: 2.8rem;
}

.conference-header p {
   font-size  :    1.15rem;

  color: #555;

    line-height: 1.8;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
}

.cta-content {

  text-align: center;
    max-width: 700px;
   margin: 0 auto;
       color: white;


}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
	 font-size     :        1.15rem;
   margin-bottom: 2.5rem;
               line-height: 1.8;
    opacity: 0.95;
}

.cta-primary-button{
                    display: inline-block;
   background    :    white;
   color: #667eea;
    padding: 1.1rem 2.8rem;
  text-decoration: none;
  border-radius: 50px;
         font-weight: 600;
	transition: all 0.3s ease;
   font-size: 1.05rem;
}


.cta-primary-button:hover {

	  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); 

}

.contact-section {
  padding: 5rem 2rem;
   background: #f8f9fa;
}

.contact-container     {

   max-width: 700px;
	  margin: 0 auto;


}

.contact-container h2

{
   text-align: center;
   font-size     :2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.contact-form {

		 background: white;
   padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	}

.form-group	{
	margin-bottom: 1.5rem;
	}

.contact-form input,
.contact-form select,
.contact-form textarea {
   font-family: inherit;
   border  :2px solid #e0e0e0;
   padding: 1rem;
    font-size: 1rem;
   resize: vertical;
  border-radius: 8px;
  transition: all 0.3s ease;
    width: 100%;
}  

.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 textarea {
		min-height: 140px;

}

.form-submit {
   width  :   100%;
    padding: 1.1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border  :        none;
  border-radius: 8px;
          font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
	 transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.footer-main {
	background: #1a1a1a;
	color: white;
  padding: 4rem 2rem 2rem; 

}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-logo-section {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
   height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
   transition     :    transform 0.3s ease;


}

.footer-logo:hover {
  transform: scale(1.05);
     }

.footer-info h4,
.footer-links h4 {


   font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #667eea;

}

.footer-info p {
  font-size: 0.95rem;
	  line-height: 1.8;
	  color: #aaa;
	         margin-bottom: 0.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
    color  :     #aaa;
  text-decoration: none;
  font-size: 0.95rem;
	 transition: color 0.3s ease;
   display: block;
  margin-bottom: 0.8rem;
}

.footer-links a:hover {
   color: #667eea;
}

.footer-bottom {

	    text-align: center;
    padding-top: 2rem;
   border-top:   1px solid #333;
    color :  #888;
	font-size   :0.9rem;



}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        gap: 0;
        padding: 1.5rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 2rem;
    }

    .nav-links a:after {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-content h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .services-preview {
        padding: 3rem 1rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .features-section {
        padding: 3rem 1rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-main {
        padding: 2rem 1rem;
    }
}.services-hero {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   	padding     :      4rem 2rem;
        text-align: center;
       color: white;

}
/* Auto-generated CSS */
/* Production ready */

/* Legacy code */
.services-hero-content h1 {
   font-size: 3rem;
      margin-bottom: 1rem;
   line-height: 1.3;
}

.services-hero-content p {
    font-size: 1.2rem;
 opacity: 0.95;
    line-height: 1.8;
}

.services-detailed {
   padding: 5rem 2rem;
	max-width: 1400px;
    margin: 0 auto;
}

.services-container {
    display: flex;
  flex-direction: column;
         gap: 4rem;
}

.service-detail-card {
   display: grid;
  grid-template-columns: 1fr 1fr;
	gap: 3rem;
               align-items: center;
    background: white;
   padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 8px 35px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);


}

.service-detail-card.service-alt {
  grid-template-columns: 1fr 1fr; 
	  direction: rtl;
}

.service-detail-card.service-alt > * {
   direction: ltr;

}

.service-detail-image img{
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit :      cover;
    aspect-ratio: 4/3;
}

.service-detail-content h2


{
   font-size: 2.2rem;
   color   :#1a1a1a;
   margin-bottom: 1.5rem;
}

.service-intro {
  font-size: 1.05rem; 
	    color: #555; 
	   line-height    :    1.8; 
		margin-bottom: 2rem; 
	    font-style    : italic;
}

.service-detail-content h3    {
   font-size: 1.4rem;

	color: #667eea;

   margin-top: 2rem;

    margin-bottom: 1rem;
}

.service-features {
  list-style: none;
    display: flex;
   flex-direction     :        column;
 gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.service-features li {
  padding-left: 2rem;
    position: relative;
    color: #555;
   line-height: 1.6;
}

.service-features li:before {
  content: "✓";
  position: absolute;
 left: 0;
    color: #2ecc71;
       font-weight: bold;
	 font-size: 1.2rem;
}

.service-detail-content p {
  color: #555;
  line-height     :     1.8;
				 margin-bottom: 1.5rem;
}

.service-cta {
   display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
    padding: 0.9rem 2rem;
	text-decoration: none;
	border-radius: 8px;
        font-weight: 600;
   transition: all 0.3s ease;
		 margin-top     :        1.5rem;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.service-comparison {
	background: #f8f9fa;
    padding: 5rem 2rem;
}
/* Legacy code */

/* Cross-browser fix */


/* Typography */

.service-comparison h2 {
    text-align   :     center;
    font-size: 2.8rem;
               margin-bottom: 3rem;
  color: #1a1a1a; 

}

.comparison-table {
  max-width: 1200px;
	margin: 0 auto;
  overflow-x: auto;
}

.comparison-table table {
    width    :     100%;
  border-collapse  :collapse;
    background   : white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
    overflow  :   hidden;
}

.comparison-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.comparison-table th {
    padding   :       1.5rem; 
	    text-align: left; 
	   font-weight     :       600; 
	  font-size: 1rem;
}

.comparison-table td {

	    padding: 1.3rem 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  color: #555;
}

/* Component styles */

.comparison-table tbody tr:hover {
   background: #f8f9fa;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.why-choose {
  padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose h2 {
   text-align:   center;
  font-size: 2.8rem;
  margin-bottom: 3.5rem;
   color: #1a1a1a;
}

.choose-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
}

.choose-item {
   text-align:   center;
  padding: 2.5rem 2rem;
          background     : white;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
}

/* Development only */


/* NOTE: keep for legacy support */

.choose-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
}

.choose-number {
   width: 60px;
  height  :   60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
  align-items  :    center;
		justify-content: center;
    font-size: 1.8rem;
  font-weight: bold;
   margin: 0 auto 1.5rem;
}

.choose-item h3 {
    margin-bottom: 1rem;
  color: #1a1a1a;
    font-size: 1.3rem;
	
}

.choose-item p {
    color: #555;
   line-height: 1.8; 

}

/* Custom modifications */

	/* NOTE: keep for legacy support */



/* Build system output */


.faq-section {
  background: #f8f9fa;
  padding: 5rem 2rem;
}

.faq-section h2 {
               text-align: center;
   font-size     : 2.8rem;
       margin-bottom: 3.5rem;
    color: #1a1a1a;
}

.faq-container	{
   max-width: 900px;
  margin: 0 auto;
}
/* NOTE: keep for legacy support */

/* Colors and backgrounds */

/* Generated styles */

.faq-item {
          background     :white;
    margin-bottom   :  1.5rem;
   border-radius: 8px;
   overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition   :        all 0.3s ease;
}

.faq-question {
  width: 100%;
		padding: 1.8rem;
	  background: white;
	   border    :  none;
	  text-align: left;
	        cursor: pointer;
	          display: flex;
	   justify-content    :       space-between;
	  align-items: center;
		font-size: 1.1rem;
	 font-weight  :    600;
	    color: #1a1a1a;
	    transition: all 0.3s ease;
}

.faq-question:hover {
		background    :   #f8f9fa;
}

.faq-toggle 
 {
  color: #667eea;
    font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
} 

.faq-answer {
  display: none;
  padding: 0 1.8rem 1.8rem;
  color: #555;
   line-height: 1.8;
	 background     :   #f8f9fa;
   max-height: 500px;
    overflow: hidden;
}

.faq-answer.show {
   display    :       block;
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.cta-final {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	  padding: 4rem 2rem; 
	    text-align: center; 
	    color: white;
}

.cta-final h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Generated styles */

.cta-final p {
    font-size :1.15rem;
    margin-bottom: 2.5rem;
	 opacity: 0.95;
	line-height:1.8;
    max-width: 700px;
  margin-left     :auto;
    margin-right: auto;
}

.cta-final-button {

	    display: inline-block;
    background :        white;
   color: #667eea;
   padding: 1.1rem 2.8rem;
        text-decoration: none;
    border-radius: 50px;
    font-weight   :  600;
  transition: all 0.3s ease;
    font-size: 1.05rem;
     }

/* Production ready */

.cta-final-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	
}
/* Responsive design */
/* Colors and backgrounds */

.thankyou-section {
   padding: 5rem 2rem;
    min-height   :        100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thankyou-container {
   max-width: 1000px;
   margin: 0 auto;
}

.thankyou-success {
  text-align: center;
	    margin-bottom: 4rem;
}

.success-icon {
    width: 120px;
    height: 120px;
  margin: 0 auto 2rem;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);


}

.success-icon svg {
  width:  100%;
   height: 100%;
  filter: drop-shadow(0 4px 15px rgba(46, 204, 113, 0.3));
}
@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-success h1 {
  font-size: 2.8rem;
 color:      #1a1a1a;
   margin-bottom   :       1rem;
}

.thankyou-subtitle {
  font-size: 1.3rem;
  color: #667eea;
  font-weight: 600;
}

.thankyou-content {
	    display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom :       4rem;


}

.content-box {
	   background: white;
	 padding: 3rem;
  border-radius    :    12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	}

.content-box h2 {

  font-size: 2rem;
    color: #1a1a1a;
  margin-bottom: 2rem;
   border-bottom: 3px solid #667eea;
	 padding-bottom   :    1rem;}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.step {
    text-align: center;
}

.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-size   :      1.5rem;
    font-weight: bold;
  margin: 0 auto 1rem;
}

.step h3


{
    color    :    #1a1a1a;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.step p {
   color: #555;
               line-height: 1.6;
     font-size     :      0.95rem; 

}

.waiting-actions {
  display: flex;
   gap: 1.5rem;
    margin-top: 2rem;
  flex-wrap :       wrap;
}

.action-link {
  flex: 1;
  min-width: 200px;
	display: inline-block;
    padding :      1rem 1.8rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color     :  white;
    text-decoration: none;
   border-radius  :8px;
  font-weight: 600;
  text-align: center;
        transition: all 0.3s ease;
}

.action-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.faq-help {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
	 padding: 2rem;
  border-radius: 8px;
   border-left     :    4px solid #667eea;
}



.faq-help h2

{
  padding: 0;
  font-size: 1.6rem;
    margin-bottom: 1.5rem;
      border: none; 

}

.mini-faq  {
    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

   gap: 1.5rem;

}

.mini-faq-item p {
     color: #555;
    line-height: 1.6;
   margin-bottom: 0.5rem;
}

.mini-faq-item p:first-child {
   font-weight: 600;
  color: #1a1a1a;
    margin-bottom :        0.8rem;
}

.thankyou-cta {
    background: white;
   padding     : 3rem;
	 border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thankyou-cta h2 {
    font-size   :2rem;
    color:        #1a1a1a;
    margin-bottom: 1rem;
}

.thankyou-cta p {
   font-size: 1.1rem;
	color: #555;
 margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-quick {
          display   :  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
               gap: 2rem;
	margin-top: 2rem;
}

.contact-method {

    padding  : 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
   border-radius     :  8px;
   border-left: 4px solid #667eea;
}

.contact-method p:first-child {

	   font-weight: 600;
   color: #667eea;
  margin-bottom: 0.5rem;
	}

.contact-method p:last-child {
  color: #1a1a1a;
    font-size: 1.05rem;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 1.5rem;
    }

    .service-detail-card.service-alt {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-detail-card.service-alt > * {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .choose-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .waiting-actions {
        flex-direction: column;
    }

    .action-link {
        flex: none;
        width: 100%;
    }

    .thankyou-success h1 {
        font-size: 2rem;
    }

    .content-box {
        padding: 1.5rem;
    }

    .contact-quick {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 2.5rem 1rem;
    }

    .services-detailed {
        padding: 3rem 1rem;
    }

    .service-detail-card {
        padding: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.4rem;
    }

    .service-detail-content h3 {
        font-size: 1.2rem;
    }

    .service-comparison {
        padding: 3rem 1rem;
    }

    .why-choose {
        padding: 3rem 1rem;
    }

    .choose-item {
        padding: 1.5rem;
    }

    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }

    .cta-final {
        padding: 2.5rem 1rem;
    }

    .cta-final h2 {
        font-size: 1.6rem;
    }

    .thankyou-section {
        padding: 3rem 1rem;
    }

    .thankyou-success h1 {
        font-size: 1.6rem;
    }

    .content-box {
        padding: 1.2rem;
    }

    .content-box h2 {
        font-size: 1.4rem;
    }
}.policySection {
    padding: 80px 2rem;
    background: #f8f9fa;
    min-height: 80vh;
	
}

.policyContainer {
    max-width     : 900px;
  margin     :       0 auto;
  text-align  :  left;
   background: white;
    padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
	font-size: 3rem;
	color: #1a1a1a;
	margin-bottom: 2rem;
  padding-bottom: 1rem;
   border-bottom: 3px solid #667eea;
	
}

.policyContainer h2 {
    font-size: 1.8rem;
   color: #667eea;
	margin-top :2.5rem;
    margin-bottom: 1.2rem;
	font-weight: 700;
    line-height: 1.3;
}

.policyContainer p{
	    color: #555;
     margin-bottom: 1.2rem;
       line-height: 1.8;
      font-size: 1rem;
      text-align: justify;

}

.policyContainer strong {
	color: #1a1a1a;
  font-weight: 600;
}

.policyContainer p strong {
	color    :#1a1a1a;
    margin-bottom: 0.5rem;
   margin-top: 1rem;
   display: block;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.8rem;
        min-height: auto;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
        border-radius: 6px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .policyContainer h1 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
}

@media print {
    .navbar-main,
    .footer-main {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        box-shadow: none;
        max-width: 100%;
        padding: 0;
    }
}