* {
   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;
    color: #2c3e50;
    background-color: #ffffff;
    line-height: 1.6;


}

img {
   max-width: 100%;
    height: auto;
    display: block;
}

a 
 {
    text-decoration: none;
   color: inherit;

} 

button {
   cursor: pointer;
      border: none;
     background: none;
     font-family: inherit;
}

header.header-main {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       position  :sticky;
       top   :    0;
   z-index: 1000;
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.1); 
	
}

.navbar-container {


  max-width: 1400px;
	 margin: 0 auto;
   padding: 0 20px;


}

.nav-wrapper {
        display: flex;
    justify-content:     space-between;
   align-items: center;
   height: 70px;
}

.nav-logo-section {
    flex: 0 0 auto;
}

.nav-brand {
  display:    block;
     }

.nav-logo-img {
    height  : 50px;
  filter: brightness(0) invert(1);
}

.burger-menu-btn {
  display: none;
  flex-direction: column;
        gap: 5px;
   width: 40px;
	height   :       30px;
}

.burger-line {
  width: 100%;
  -moz-border-radius: 2px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu-btn.active .burger-line:nth-child(1) {


  transform: rotate(45deg) translate(8px, 8px); 
	}  

.burger-menu-btn.active .burger-line:nth-child(2) {
   opacity: 0;
}

.burger-menu-btn.active .burger-line:nth-child(3)	{
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
   display: flex;
   list-style: none;
    gap: 30px;
}

.nav-item {
   margin: 0;
}

.nav-link {
   -moz-transition: opacity 0.3s ease;
   color:        white;
    font-size: 16px;
     font-weight: 500;
   -webkit-transition: opacity 0.3s ease;
     transition: opacity 0.3s ease;
    display: block;
    padding: 8px 0;
}

.nav-link:hover {
               opacity: 0.8;
}@media (max-width: 768px) {
    .burger-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        padding: 15px 20px;
    }
}.main-content
{
   min-height: 100vh;
}

.hero-section
	{
	  background: linear-gradient(to right, #f5f7fa 0%, #ffffff 50%, #f5f7fa 100%);
    padding: 80px 20px;}

.hero-wrapper {
   max-width: 1400px;
	margin: 0 auto;
  display: grid;
  grid-template-columns:    1fr 1fr;
    gap:60px;
    align-items    :center;
}

.hero-content {

	   display: flex;
   flex-direction: column;
  gap    :   25px;
     }

.hero-title {
    font-size: 48px;
    font-weight    :  700;
  line-height    :     1.2;
  color: #2c3e50;
}

.hero-subtitle {
    font-size: 18px;

   color: #555;

   line-height: 1.7;
	
}

.cta-button {
   display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	padding: 16px 40px;
    border-radius: 8px;
  font-size:       16px;
   font-weight: 600;
               transition :     transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
  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-image		{
    border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
}@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}.services-intro-section {


  padding: 80px 20px;

   background-color: #f8f9fa;
	}

.services-intro-wrapper {
   max-width: 1400px;
  margin: 0 auto;
}

.section-title {
    font-size  :  42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
   color: #2c3e50;
}

.section-description {
    font-size: 18px;
   text-align: center;
    color    :     #666;
     margin-bottom: 60px;
		 max-width  :       600px;
    margin-left     :  auto;
   margin-right   :auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
	
}

.service-card  {
  background: white;
   padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	
}



.service-card:hover

{
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.service-icon-holder {
   margin-bottom: 25px;
	display: flex;
         justify-content     :    center; 
	
}

.service-icon {
    fill: none;

	  stroke: #667eea;

		stroke-width: 2;

		 height: 60px;

	  width : 60px;
}

.service-card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
   color: #2c3e50;
}

.service-card-text{
  font-size  :    15px;
    color: #666;
   line-height: 1.8;
}@media (max-width: 768px) {
    .services-intro-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}.office-showcase-section {
 padding: 80px 20px;

	    background-color:        white;
}

.office-showcase-wrapper     {
   	 max-width: 1400px;
  margin :  0 auto;
       display: grid;
   grid-template-columns: 1fr 1fr;
   gap   :        60px;
		align-items: center;

}

.office-showcase-reverse .office-showcase-wrapper {
    grid-template-columns: 1fr 1fr;
}

.showcase-image-left,
.showcase-image-right {
	border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.showcase-image-left img,
.showcase-image-right img {
    width: 100%;
    height     :     auto;
}

.showcase-content-left,
.showcase-content-right  {

    display :    flex;
  flex-direction: column;
    gap    :       25px;}



.showcase-title {
  font-size: 38px;
 font-weight: 700;
       color:     #2c3e50;
  line-height: 1.3;
}

.showcase-text {
	font-size: 16px;
   color: #555;
    line-height: 1.8;
}

.showcase-list {
    list-style: none;
    display: flex;
  flex-direction: column;
    gap: 15px;
}

.showcase-item {
  font-size: 15px;
  color: #666;
	padding-left: 25px;
  position: relative;
}

.showcase-item::before   {
  content: '✓';

	  position: absolute;

	   left: 0;

	  color: #667eea;

	   font-weight: bold;

		font-size: 18px;
}

.cta-link		{
  display: inline-block;

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	    color: white;

	    padding: 14px 35px;

	   border-radius  :     8px;

	   font-size: 15px;

	    font-weight: 600;

	   transition  :        transform 0.3s ease, box-shadow 0.3s ease;

	 width: fit-content;

	  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4); 

}@media (max-width: 1024px) {
    .office-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .office-showcase-section {
        padding: 50px 20px;
    }
}.training-conference-section {
   padding: 80px 20px;

	  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.training-wrapper {
   max-width :1400px;

        margin: 0 auto;
}

.offers-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
   margin-top    :    50px;
}

.offer-card {
	 background: white;
   padding    :40px 30px;
   border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display     :      flex;
    flex-direction:    column;
  gap   :       20px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
} 

.offer-featured {
   border: 2px solid #667eea;
  transform: scale(1.05);
	}

.offer-featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.offer-badge {
	  position: absolute;
  top :  -15px;
  left: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 8px 16px;
  border-radius: 20px;
	 font-size: 12px;
   font-weight: 600;
     }

.offer-title {
    font-size: 24px;
  font-weight: 600;
   color: #2c3e50;
}

.offer-duration {

  font-size: 14px;
    color: #667eea;
    font-weight: 600;
	}

.offer-description {
  flex-grow :  1;
   line-height: 1.7;
    color: #666;
   font-size: 15px;
}

.offer-button {
  display  : inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding    :     12px 30px;
	border-radius  :        8px;
   font-size: 14px;
   font-weight: 600;
   text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3); 
	
}

.offer-button:hover {


  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);}
@media (max-width: 768px) {
    .training-conference-section {
        padding: 50px 20px;
    }

    .offer-featured {
        transform: scale(1);
    }

    .offer-featured:hover {
        transform: translateY(-8px);
    }

    .section-title {
        font-size: 32px;
    }
}.cta-final-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 80px 20px;
    text-align    :   center;
}

.cta-final-wrapper {
  max-width     :     800px;
  margin: 0 auto;
    display: flex;
  flex-direction: column;
  gap: 30px;

}

.cta-final-title {
    font-size: 42px; 
   font-weight: 700; 
  color: white; 
        line-height: 1.3;
}

.cta-final-text {

    font-size     :       18px;
  color: rgba(255, 255, 255, 0.9);
   line-height: 1.7;

}

.cta-button-large {
  display  :    inline-block;
	 background: white;
    color: #667eea;
  padding: 18px 50px;
	 border-radius: 8px;
  font-size: 16px;
  font-weight     : 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
   margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .cta-final-section {
        padding: 50px 20px;
    }

    .cta-final-title {
        font-size: 28px;
    }

    .cta-final-text {
        font-size: 16px;
    }
}.contact-section {
   padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact-wrapper {
	max-width: 1400px;
    margin: 0 auto;
}

.contact-content {
   display: grid;
	grid-template-columns: 2fr 1fr;
        gap: 60px;
   margin-top: 50px;
} 

.contact-form {
   display: flex;
   flex-direction: column;
   gap: 25px;
}

.form-group {
		display    :   flex;
   flex-direction :column;
	gap :    10px;
}

.form-label {
   font-size :    14px;
   font-weight: 600;
	color: #2c3e50;
}

.form-input,
.form-textarea   {
   padding :    14px 16px;
	 border: 2px solid #e0e0e0;
    border-radius: 8px;
   font-size    :      15px;
   font-family: inherit;
  transition: border-color 0.3s ease;


}

.form-input:focus,
.form-textarea:focus {
  outline: none;
    border-color:       #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea     {

	   resize: vertical;
  min-height: 120px;


     }

.form-submit


{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    color: white; 
    padding: 16px 40px; 
   border-radius: 8px; 
   font-size: 16px; 
  font-weight :     600; 
	 transition  :transform 0.3s ease, box-shadow 0.3s ease; 
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.contact-info     {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   display : flex;
   flex-direction: column;
  gap: 30px;
   height: fit-content;
}

.info-title {
    font-size: 22px;
   font-weight: 600;
   color    :#2c3e50;
}

.info-block {
       display: flex;
    flex-direction :  column;
    gap :     8px;
}

.info-label

{
   font-size: 13px;
               font-weight: 600;
    color: #667eea;
  text-transform: uppercase;
 letter-spacing: 0.5px;
}

.info-text {
   font-size: 15px;
		color: #555;
	line-height: 1.6;
}@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        height: auto;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 20px;
    }
}footer.footer-main {
  background    :     #2c3e50;
  color  :       white;
   padding: 60px 20px 20px;

}



.footer-wrapper {
   max-width: 1400px;
  margin: 0 auto;
}

.footer-top     {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
 padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 40px;
}

.footer-logo-section {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
    height: 50px;
  filter: brightness(0) invert(1);
}

.footer-title {
    font-size  :  16px;
    font-weight: 600;
   margin-bottom: 20px;
   color: white;
} 

.footer-menu {


  list-style: none;
  display: flex;
   flex-direction: column;
   gap :  12px;


}

.footer-link {
   font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
	 transition: color 0.3s ease;
}

.footer-link:hover {


    color: white;
     }

.footer-text {
   font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
}

.footer-bottom {
   padding-top:       20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright   {
    font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer.footer-main {
        padding: 40px 20px 20px;
    }
}.services-hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 padding: 100px 20px;
   text-align: center;
	color: white;
}


.services-hero-wrapper	{
   max-width: 900px;
   margin: 0 auto;
  display :   flex;
  flex-direction: column;
          gap: 25px;
}

.services-hero-title {

  font-size    :   48px;
               font-weight: 700;
   line-height: 1.2;
}

.services-hero-subtitle {
    font-size: 18px;
	 line-height: 1.7;
	 opacity: 0.95;
}@media (max-width: 768px) {
    .services-hero-section {
        padding: 60px 20px;
    }

    .services-hero-title {
        font-size: 32px;
    }

    .services-hero-subtitle {
        font-size: 16px;
    }
}.detailed-services-section {

    padding     :       80px 20px;
    background-color: white;


	}

.detailed-services-wrapper {
  max-width   :        1400px;
   margin  :0 auto;
  display: flex;
    flex-direction: column;
   gap: 80px;
}

.service-detail-card {


 display: grid;
  grid-template-columns: 1fr 1fr;
       gap: 60px;
   align-items:    start;

}

.service-detail-reverse

{
     direction: rtl;
	} 

.service-detail-reverse > * {
	direction: ltr;
}

.service-detail-image  
  {
   border-radius: 12px;
      overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-image img 
 {
   width: 100%;
   height  :    auto;
  display: block;

}

.service-detail-content {
   display: flex;
    flex-direction: column;
  gap: 25px;
}  

.service-detail-title {
                    font-size    :       36px;
 font-weight   :700;
   color: #2c3e50;
   line-height:    1.3;
}

.service-detail-description {
       font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.service-detail-list {
   					list-style: none;
    display: flex;
   flex-direction: column;
   gap: 15px; 
	
	}

.service-detail-list li {
       font-size: 15px;
  line-height: 1.6;
				 position: relative;
	 color: #666;
	padding-left  :     28px;
}

.service-detail-list li::before {
  content: '✓';
	 position: absolute;
  left: 0;
   color  :       #667eea;
 font-weight: bold;
   font-size :      18px;
}

.service-detail-meta {
    display: flex;
    flex-direction: column;
       gap:   12px;
    padding-top: 20px;
   border-top: 2px solid #e0e0e0;
}

.detail-duration,
.detail-format {
  font-size    :     14px;
  color: #667eea;
    font-weight: 600;

}@media (max-width: 1024px) {
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-reverse {
        direction: ltr;
    }

    .service-detail-title {
        font-size: 28px;
    }

    .detailed-services-wrapper {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .detailed-services-section {
        padding: 50px 20px;
    }

    .service-detail-title {
        font-size: 24px;
    }
}.services-comparison-section {
  padding: 80px 20px;
    background-color: #f8f9fa;
}
/* Framework override */

.comparison-wrapper {
    max-width     :       1400px;
   margin: 0 auto;
}

.comparison-table-responsive {
	  overflow-x: auto;
    margin-top: 50px;
   border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);


}

.comparison-table    {
  width:     100%;
      border-collapse: collapse;
  background: white;
}  

.comparison-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
  color: white;
}

.comparison-table th
	{
         padding   : 20px 15px;
    text-align: left;
    font-weight: 600;
               font-size: 14px;
}

.comparison-table td {
  padding   :    18px 15px;
    border-bottom: 1px solid #e0e0e0;
  font-size :   14px;
}

.comparison-table tbody tr:hover {
	background-color: #f5f7fa;
}

.feature-name {
 font-weight     :       600;
      color: #2c3e50;
}

.comparison-table tbody td{
	text-align: center;
   color: #667eea;
	 font-weight :   500;
}

.comparison-table tbody tr:last-child td {
   border-bottom: none;
}
@media (max-width: 768px) {
    .services-comparison-section {
        padding: 50px 20px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 12px;
    }
}.why-choose-section {
   padding: 80px 20px;
   background-color: white;
}

.why-choose-wrapper 
 {
	max-width: 1400px;
  margin: 0 auto;
}

.reasons-grid {
  display   :grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap :  35px;
   margin-top: 60px;
}

.reason-card {

	  background: linear-gradient(135deg, #f5f7fa 0%, white 100%);
    padding     :       40px 30px;
   border-radius: 12px;
                    text-align: center;
       transition: transform 0.3s ease, box-shadow 0.3s ease;
   border: 1px solid #e0e0e0;
	}

.reason-card:hover {

  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
    border-color :        #667eea;}

.reason-icon {
   margin-bottom: 25px;
    display: flex;
	 justify-content: center;
}

.reason-icon-svg {
   stroke: #667eea;
  width: 60px;
    height: 60px;
   fill: none;
    stroke-width: 2;
}

.reason-title {
   font-size: 22px;
   font-weight   : 600;
    color: #2c3e50;
  margin-bottom: 15px;


}

.reason-text {
    font-size: 15px;
   color: #666;
  line-height: 1.8;
}@media (max-width: 768px) {
    .why-choose-section {
        padding: 50px 20px;
    }

    .reasons-grid {
        gap: 25px;
    }

    .reason-card {
        padding: 30px 20px;
    }
}.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%); 

}

.faq-wrapper {
    max-width: 900px;
  margin: 0 auto;
}

.faq-items {
  margin-top    :      50px;
	 display: flex;
   flex-direction: column;
    gap: 20px;
}

.faq-item		{
   background: white;
        border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
}

.faq-question {
  width: 100%;
    padding: 25px 30px;
  text-align    :     left;
   font-size: 16px;
	font-weight: 600;
    color   :   #2c3e50;
    background: white;
         cursor: pointer;
  display :flex;
    justify-content: space-between;
   align-items: center;
	transition: background-color 0.3s ease;
}


.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-text {
   flex-grow: 1;
}

.faq-toggle-icon {
    flex-shrink: 0;
  margin-left:    15px;
    color: #667eea;
   font-size: 24px;
  transition: transform 0.3s ease;
	 display: inline-block;


}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
	   max-height:      0;
       overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 500px;

}

.faq-answer p {
   padding: 0 30px 25px;
   font-size: 15px;
   color: #666;
  line-height    :      1.8;
}@media (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}.cta-final-services-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	    padding: 80px 20px; 
	    text-align   :   center;
}

.cta-final-services-section .cta-final-wrapper {
     max-width: 800px;
   margin: 0 auto;

}

.cta-final-services-section .cta-final-title {
         font-size     :        42px;
    font-weight: 700;
	color: white;
}

.cta-final-services-section .cta-final-text {
      font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.thankyou-hero-section     {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 120px 20px;
  text-align   :center; 

}

.thankyou-hero-wrapper {
	max-width: 600px;
	        margin: 0 auto;
	    display: flex;
	               flex-direction: column;
	  gap  :      30px;
	    align-items: center;
}

.thankyou-icon-container {
      width: 120px;
  height: 120px;

}

.thankyou-checkmark {
      width: 100%;
    height: 100%;
  animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-title {
   font-size: 42px;
  font-weight: 700;
    color: white;
	line-height: 1.2;
}

.thankyou-subtitle {
   font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}@media (max-width: 768px) {
    .thankyou-hero-section {
        padding: 80px 20px;
    }

    .thankyou-title {
        font-size: 28px;
    }

    .thankyou-subtitle {
        font-size: 16px;
    }

    .thankyou-icon-container {
        width: 90px;
        height: 90px;
    }
}.thankyou-info-section    {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.thankyou-info-wrapper {
  max-width    :   1400px;
                    margin: 0 auto;
}

.info-cards-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  margin-bottom: 80px;
}

.info-card {
    background: white;
   padding: 40px 30px;
        border-radius: 12px;
   text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition :        transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.info-card-icon  
  {
    margin-bottom: 20px;
  display: flex;
	justify-content: center;
}

.info-card-svg {
       width: 50px;
    height: 50px;
   stroke: #667eea;
   fill: none;
  stroke-width: 2;
}

.info-card-title {
    font-size    :     20px;
   font-weight: 600;
   color: #2c3e50;
	margin-bottom: 12px;
	
}

.info-card-text {
    font-size: 15px;
  line-height: 1.7;
   color    :    #666;
}

.next-steps-container {

   background: white;
	  padding: 50px 40px;
	  border-radius     :   12px;
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	}

.next-steps-title


{
   font-size: 28px;
	font-weight: 700;
   color: #2c3e50;
  margin-bottom :     35px;
    text-align: center;
}


.next-steps-list {
	 list-style: none;
	display: flex;
  flex-direction: column;
	gap: 25px;
	
}

.next-step-item {
	display: flex;
    gap: 25px;
}

.step-number	{

   flex-shrink: 0;
  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: 18px;
	font-weight: 700;
	}

.step-content {
   flex-grow: 1;
    padding-top: 5px;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
    color: #2c3e50;
	margin-bottom: 8px;
}

.step-text {


 font-size: 14px;
   color: #666;
        line-height: 1.7;
	}
@media (max-width: 768px) {
    .thankyou-info-section {
        padding: 50px 20px;
    }

    .next-steps-container {
        padding: 30px 20px;
    }

    .info-cards-grid {
        margin-bottom: 50px;
    }
}.while-you-wait-section {
  padding: 80px 20px;
   background-color: white;
}

.while-you-wait-wrapper{
                    max-width: 1400px;
    margin: 0 auto;
	
}

.suggestions-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
   margin-top: 50px; 

}

.suggestion-card


{
  background: linear-gradient(135deg, #f5f7fa 0%, white 100%);
    padding: 40px 30px;
               border-radius: 12px;
    text-align: center;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, border-color 0.3s ease; 
	
}

.suggestion-card:hover {
  transform: translateY(-5px);
  border-color: #667eea;
}

.suggestion-card-title {
   font-size: 20px; 
    font-weight: 600; 
    color    :   #2c3e50; 
   margin-bottom: 15px;
}

.suggestion-card-text {
	font-size: 15px;
   color: #666;
                    line-height: 1.7;
}@media (max-width: 768px) {
    .while-you-wait-section {
        padding: 50px 20px;
    }

    .suggestions-grid {
        grid-template-columns: 1fr;
    }
}.questions-section {
       padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
     }

.questions-wrapper {

	    max-width: 1400px;
                    margin: 0 auto;
	}

.contact-options-grid{
    display  :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
   margin-top  :50px;
}

.contact-option {


  background: white;
    padding: 40px 30px;
	 border-radius: 12px;
   text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);}  

.option-title {
    font-size: 22px;
    font-weight  :     600;
               color: #2c3e50;
               margin-bottom     :15px;


}

.option-text {
   font-size: 16px;
   color: #667eea;
   font-weight    :     500;
  margin-bottom: 8px; 
	
}

.option-note {
  font-size: 14px;
  color: #999;
}@media (max-width: 768px) {
    .questions-section {
        padding: 50px 20px;
    }
}.cta-return-section {
               padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-return-wrapper    {
  max-width: 800px;
    margin: 0 auto;
    text-align: center;
   display    :       flex;
    flex-direction: column;
 gap: 30px;
}

.return-text {
  font-size: 20px;
      color     :    white;
      font-weight: 500;
}

.cta-return-buttons {
  display     :  flex;
  gap: 20px;
  justify-content: center;
    flex-wrap     :       wrap;


}

.cta-return-button	{

	display: inline-block;
   padding: 14px 35px;
   border-radius: 8px;
     font-size: 15px;
      font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
       color: #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

}

.cta-return-button:hover     {
  transform: translateY(-2px); 
	  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-return-secondary     {
   background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow:none;
}

.cta-return-secondary:hover {


  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);}@media (max-width: 768px) {
    .cta-return-section {
        padding: 40px 20px;
    }

    .cta-return-buttons {
        flex-direction: column;
    }

    .cta-return-button {
        width: 100%;
    }
}.policy-hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 20px;
   text-align: center;
}

.policy-hero-container {
    max-width  :      900px;
    margin: 0 auto;
   display: flex;
  flex-direction: column;
   gap: 20px;
}

.policy-hero-title {
  font-size: 48px;
         font-weight: 700;
   	color: white;
     line-height: 1.2;
}

.policy-hero-subtitle {
    font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.policySection {
  padding: 80px 20px;
 background: #f8f9fa;
}

.policyContainer {
   max-width: 900px;

	   margin :    0 auto;

	    text-align: left;
}

.policyContainer h2 {
                    font-size: 28px;
   color: #2c3e50;
                    margin:   40px 0 20px 0;
   font-weight    :  700;
   line-height: 1.3;
}

.policyContainer h2:first-child {
    margin-top: 0;
}

.policyContainer p {
    line-height: 1.8;
   margin-bottom: 20px;
    color: #555;
	font-size: 15px;
}

.policyContainer p:last-child {
   margin-bottom: 0;
}@media (max-width: 768px) {
    .policy-hero-section {
        padding: 60px 20px;
    }

    .policy-hero-title {
        font-size: 32px;
    }

    .policy-hero-subtitle {
        font-size: 14px;
    }

    .policyContainer h2 {
        font-size: 22px;
        margin: 30px 0 15px 0;
    }

    .policyContainer p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .policySection {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .policy-hero-title {
        font-size: 24px;
    }

    .policyContainer h2 {
        font-size: 20px;
    }

    .policyContainer p {
        font-size: 13px;
    }
}