* {
    margin:   0;
   padding  :        0;
    box-sizing: border-box;
}

html {


	 scroll-behavior :      smooth;
}

body     {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    line-height: 1.6;

   color: #2c3e50;

    background-color: #ffffff;
}

.nav-main {
  background-color   :      #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
    z-index: 1000;
  padding: 0 20px;
}

.nav-container {
	max-width: 1200px;
   margin: 0 auto;
          display: flex;
    justify-content: space-between;
  align-items: center;
	height: 70px;
}

.nav-logo-wrapper {
    display    : flex;
          align-items  :       center;
     }

.nav-logo {
  height: 74px;
 width: auto;
  display: block;
}

.nav-menu {
	display     :     flex;
    list-style: none;
	 gap: 40px;
}

.nav-link    {
	text-decoration: none;
	     color: #2c3e50;
	  font-weight: 500;
	    font-size: 15px;
	  transition:color 0.3s ease;
}

.nav-link:hover
	{
    color: #3498db;
}

.nav-burger {
    display: none;
  background: none;
  border: none;
    cursor: pointer;
   flex-direction: column;
    gap: 6px;
}

.burger-line {
    width: 25px; 
	  height:   3px; 
	    background-color: #2c3e50; 
	    transition: all 0.3s ease; 
	  border-radius: 2px;


}@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        gap: 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
    }

    .nav-burger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translateY(13px);
    }

    .nav-burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translateY(-13px);
    }
}.hero-section {
        margin :        0 auto;
               grid-template-columns: 1fr 1fr;
   display: grid;
    gap: 60px;
    padding: 80px 20px;
         max-width: 1200px;
  align-items: center;
}

.hero-content    {
     display: flex;
   flex-direction: column;
                    gap: 20px;
}

.hero-title {
   color: #1a252f;
       line-height: 1.2;
    font-weight:700;
	 font-size: 48px;
}

.hero-subtitle {
    font-size: 18px;
  color :   #555555;
  line-height: 1.7;
}

.hero-cta {
   display: inline-block;
          background-color  :#3498db;
  color: white;
   padding     :     15px 40px;
          border-radius: 8px;
   text-decoration: none;
   font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: fit-content; 

}

.hero-cta:hover {
	 background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.hero-image {
  width: 100%;
}

.hero-img {
	    width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

}
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}.section-intro {
    max-width: 1200px;
   margin: 0 auto;
     padding: 80px 20px;
}

.section-wrapper {
    display: grid;
  grid-template-columns: 1fr 1fr;
         gap  :       60px;
	align-items    :  center;


}

.intro-text h2 {
   font-size: 38px;
  font-weight     : 700;
  color: #1a252f;
   margin-bottom   :       20px;
   line-height: 1.3;

}

.intro-text p {
   font-size: 16px; 
  color: #555555; 
  line-height     :   1.8; 
	 margin-bottom: 15px;
}  

.intro-image {
  width: 100%;
}

.intro-img {
	    width: 100%;
		 height: auto;
                    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .section-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-text h2 {
        font-size: 28px;
    }
}.section-benefits {
    background-color   :#f8f9fa;
   padding: 80px 20px;
}

.section-benefits h2     {
  text-align  :       center;
   font-size: 38px;
    font-weight: 700;
   color: #1a252f;
  margin-bottom    :  60px;
    max-width: 1200px;
  margin-left: auto;
   margin-right   : auto; 
	
}

.benefits-grid {
		max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
}

.benefit-card {
  background-color: white;
    padding: 40px 30px;
 border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
   transition: all 0.3s ease;

}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
	   height: 60px;
  border-radius   : 12px;
   background-color    :#e8f4f8;
   margin: 0 auto 20px;
   align-items: center;
   display: flex;
   justify-content: center;
  width: 60px;

}

.benefit-svg {
                    width: 32px;
    height: 32px;
    stroke: #3498db;
	fill: none;
  stroke-width :   2;
  stroke-linecap   :round;
    stroke-linejoin   :    round;
}

.benefit-card h3 {
		font-size: 20px;
   font-weight: 700;
    color     :#1a252f;
  margin-bottom: 15px; 

}

.benefit-card p {
    font-size: 15px;
   color: #666666;
      line-height: 1.6;
	
}

.section-services {
   max-width: 1200px;
    margin: 0 auto;
  padding: 80px 20px;
}

.section-services h2{
    text-align: center;
  font-size: 38px;
      font-weight: 700;
    color: #1a252f;
  margin-bottom: 60px;
}

.services-container {


  display    :  grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;}

.service-item  {
   background-color: white;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.service-item:hover

{
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
  height: 250px;
   overflow: hidden;
}

.service-img {
  height     :    100%;
	object-fit: cover;
   width     :   100%;
          transition: transform 0.4s ease;
}

.service-item:hover .service-img {
  transform: scale(1.05);
}

.service-details {
  padding: 30px;
}

.service-details h3 {

  font-size: 22px;
  font-weight: 700;
  color     :    #1a252f;
   margin-bottom: 15px; 
	
     }

.service-details p {
   font-size: 15px;
  color: #666666;
        line-height: 1.7;
	 margin-bottom: 20px;
}

.service-badge {
   display: inline-block;
    background-color: #e8f4f8;
    color: #3498db;
   padding: 6px 14px;
   border-radius    :   20px;
  font-size: 13px;
   font-weight: 600;
}

.section-process {
          background-color: #f8f9fa;
  padding: 80px 20px;
}  

.section-process h2
{
  text-align: center;
         font-size     :      38px;
  font-weight: 700;
    color: #1a252f;
    margin-bottom: 60px;
  max-width: 1200px;
   margin-left :     auto;
  margin-right: auto;
}

.process-timeline  
  {
  max-width:    1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.process-step {
  background-color: white;
  padding: 35px 25px;
   border-radius    :    12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   position: relative;
  padding-top     :        70px;
}

.step-number {
  position: absolute;
    top: -20px;
   left: 50%;
  transform: translateX(-50%);
   background-color: #3498db;
  color: white;
    width: 60px;
   height  :       60px;
  border-radius: 50%;
	display: flex;
   align-items    :    center;
     justify-content: center;
  font-size: 24px;
    font-weight: 700;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.process-step h3
{
	   font-size: 18px;

	  font-weight: 700;

	   color     :#1a252f;

	  margin-bottom: 12px;

	    text-align: center;


}

.process-step p {
  font-size     :        14px;
  color    :        #666666;
    line-height: 1.6;
   text-align   :    center;
}@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}.section-events {
	 max-width: 1200px;
      margin    :0 auto;
     padding: 80px 20px;
}

.section-events h2 {
   text-align: center;
    font-size: 38px;
          font-weight     :700;
	color: #1a252f;
  margin-bottom: 60px;
     }

.events-wrapper {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
           gap: 40px;

}

.event-card {

	   padding: 40px;
          border-radius: 12px;
	color: white;
   transition: all 0.3s ease;
    position: relative;
   overflow  :     hidden;
     }

.event-card:before {
		 right: 0;
  z-index: -1;
  position :absolute;
    opacity: 0;
   transition :   opacity 0.3s ease;
   top: 0;
  content: '';
     left :   0;
   bottom: 0;


}

.event-card:hover {

  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
     }

.event-conference {

	  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	

}



.event-meetup {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.event-webinar {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.event-card h3	{
    font-size: 24px; 
   font-weight  :       700; 
  margin-bottom: 15px;
}

.event-card p {
   font-size: 15px;
  line-height  :       1.7;
                    margin-bottom: 25px;
  opacity     : 0.95;
}

.event-meta {
         flex-wrap: wrap;
   display: flex;
  gap: 20px;
}

.event-detail {
    display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
   border-radius: 20px;
  font-size: 13px;
  font-weight  :  600;
	
}

.section-testimonials {
  background-color: #f8f9fa;
    padding     :  80px 20px;
}

.section-testimonials h2 {
   text-align: center;
  font-size: 38px;
	font-weight: 700;
                    color: #1a252f;
  margin-bottom: 60px;
 max-width: 1200px;
    margin-left: auto;
  margin-right: auto; 
	
}

.testimonials-grid {
	max-width: 1200px;
  margin    :     0 auto;
   display     :    grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 40px;
}

.testimonial-box {
    background-color: white;
  padding: 35px;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
 border-left: 4px solid #3498db;
}

.testimonial-text {
		font-size: 15px;
	 color: #555555;
  line-height: 1.8;
   margin-bottom  :    20px;
  font-style     :italic;
}

.testimonial-author {
   font-size :      14px;
  font-weight: 600;
   color: #2c3e50;
}

.section-cta-main {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   padding: 80px 20px;


}

.cta-box {
   	 max-width: 800px;
    margin: 0 auto;
    text-align: center;
  color: white;}

.cta-box h2 {
    font-size: 42px; 
  font-weight:  700; 
    margin-bottom: 20px; 
  line-height  : 1.3;
}

.cta-box p	{
	 font-size: 18px;
  margin-bottom: 30px;
   opacity: 0.95;
}

.cta-button {
		display: inline-block;
  background-color     :     white;
   color: #3498db;
   padding: 15px 45px;
	border-radius: 8px;
   text-decoration    :   none;
  font-weight: 700;
	font-size: 16px;
  transition: all 0.3s ease; 



}

.cta-button:hover {


  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);

}@media (max-width: 768px) {
    .cta-box h2 {
        font-size: 28px;
    }

    .cta-box p {
        font-size: 16px;
    }
}.section-contact {
	 margin: 0 auto;
  padding: 80px 20px;
  max-width: 1200px;
}

.section-contact h2 
 {
   	 text-align: center;
    font-size: 38px;
   font-weight: 700;
    color: #1a252f;
    margin-bottom: 60px;
	}

.contact-wrapper {
       display: grid;

	   grid-template-columns: 2fr 1fr;

	   gap: 60px;
}

.contact-form

{

    background-color: white;
    padding  :  40px;
		 border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	}

.form-group {
	 margin-bottom:   25px;
    display: flex;
	flex-direction: column;


}

.form-group label {
  font-size : 15px;
   font-weight: 600;
  color  :      #2c3e50;
    margin-bottom :      8px;
}

.form-group input,
.form-group select,
.form-group textarea {
	 padding: 12px 15px;
   border: 1px solid #ddd;
   border-radius: 8px;
    font-size: 15px;
		 font-family   :    inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus
{
    outline   : none;
    border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-submit {
                    background-color: #3498db;
    color: white;
  padding: 14px 40px;
    border: none;
   border-radius: 8px;
    font-size:      16px;
   font-weight: 700;
   cursor: pointer;
	 transition: all 0.3s ease;
   width: 100%;
    margin-top: 10px;
}

.form-submit:hover {
    background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
   gap: 40px;
}

.info-item h3 {
   font-size: 18px;

  font-weight: 700;

   color: #1a252f;

  margin-bottom: 10px;
}

.info-item p {
   color :        #666666;
        font-size: 15px;
	line-height: 1.7;
}@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px;
    }
}.footer-main {
  background-color     :      #2c3e50;

   color: white;

  padding    :   60px 20px 20px;
}

.footer-container {

    max-width: 1200px;
    margin:    0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 50px;
   margin-bottom: 40px;


}

.footer-logo-img {
  height: 96px;
               width :      auto;
  display: block;
  filter: brightness(0) invert(1);

}

.footer-section h4 {
    font-size   :    16px;
  font-weight: 700;
  margin-bottom: 20px;
   color: white;
}  

.footer-section ul {
   list-style: none;
}

.footer-section ul li {

  margin-bottom :    12px;}

.footer-section a {
               color: #ecf0f1; 
		text-decoration: none; 
	  font-size: 14px; 
	                    transition:     color 0.3s ease;
}

.footer-section a:hover {
    color     :     #3498db;
}

.footer-contact p {
   font-size  :    14px;
  color: #ecf0f1;
    line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
   text-align: center;
}

.footer-bottom p {
       font-size: 14px;
      color: #bdc3c7;
}@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}.cookie-alert {
  position: fixed;
  bottom: 0;
	left     :   0;
    right:0;
  background-color: #2c3e50;
   color: white;
 padding: 20px;
    display: flex;
	justify-content: space-between;
    align-items :       center;
  gap     : 20px;
  z-index: 2000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
	 flex-wrap: wrap;
}  

.cookie-alert.hidden {
   display: none;
}

.cookie-content {
  flex : 1; 
		min-width: 250px;
}

.cookie-content p {
    font-size   :    14px;
	 line-height: 1.6;
}

.cookie-buttons {
  display: flex;
	   gap: 10px;
		flex-wrap  :      wrap; 
	
}

.cookie-btn {
   font-size: 14px;
   cursor: pointer;
    -webkit-transition: all 0.3s ease;
   -moz-border-radius: 6px;
   border-radius: 6px;
  border: none;
  -moz-transition: all 0.3s ease;
    font-weight: 600;
	-o-transition: all 0.3s ease;
  padding: 8px 16px;
  transition: all 0.3s ease;
}

.cookie-accept    {
  background-color: #3498db;
    color: white;
}

.cookie-accept:hover {
   background-color: #2980b9;
}



.cookie-reject {
   background-color: transparent;
   color     :       white;
   border: 1px solid white;
}

.cookie-reject:hover {


  background-color: rgba(255, 255, 255, 0.1);}

.cookie-settings {
   background-color: transparent;
               color: white;
   border: 1px solid white;

}

.cookie-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal {
    position     :   fixed;
   top: 0;
  left: 0;
   right: 0;
         bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
   display: flex;
    align-items: center;
  justify-content: center;
	 z-index: 2100;
}

.cookie-modal.hidden {
    display: none;
}

.cookie-modal-content		{
                  background-color: white;
    padding   :      40px;
   border-radius: 12px;
    max-width    :      500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);


}

.cookie-modal-content h2 {
    font-size: 24px;
  font-weight: 700;
                    color: #2c3e50;
  margin-bottom    :       30px;
}

.cookie-options {
	 display: flex;
       flex-direction: column;
    gap: 15px;
  margin-bottom: 30px;
}

.cookie-option {
	display: flex;
  align-items: center;
  gap: 12px;
  cursor     :        pointer;
    font-size: 15px;
  color: #2c3e50;
}

.cookie-option input {

    width: 18px;
    height: 18px;
         cursor: pointer;


}

.cookie-modal-buttons {

	  display: flex;
  gap: 10px;




}

.cookie-modal-buttons .cookie-btn {
  flex: 1;
}

.services-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 80px 20px;
  text-align  : center;


}

.services-header-content {
	  max-width: 1200px;

  margin: 0 auto;


}

.services-header-content h1		{
  font-size: 48px;
    font-weight: 700;
   margin-bottom: 15px;
  line-height: 1.2;
}

.services-header-content p {
   font-size    :    18px;
    opacity  : 0.95;
} @media (max-width: 768px) {
    .services-header-content h1 {
        font-size: 32px;
    }

    .services-header-content p {
        font-size: 16px;
    }
}.service-detailed-section {
    max-width :       1200px;
    margin: 0 auto;
        padding  :      80px 20px;
}

.service-detailed-wrapper {
	display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
}

.service-detailed-image {
	    width    :        100%; 
	
     }

.detailed-img {
     width: 100%;
  height :    auto;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

}


.service-detailed-content h2 {
	font-size: 38px;
  font-weight: 700;
  color: #1a252f;
   line-height: 1.3;
    margin-bottom    :        20px;
}

.service-detailed-content > p {

   font-size: 16px;
    color: #555555;
  line-height: 1.8;
   margin-bottom: 30px; 

     }

.service-details-list {
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 30px;
  margin-bottom: 30px;
}

.detail-item h4 {
  font-size: 16px;
    font-weight: 700;
   color: #2c3e50;
  margin-bottom: 12px;
}

.detail-item ul {
          list-style: none;
}

.detail-item li  {
   font-size: 14px;
   color: #666666;
   padding :    8px 0;
  padding-left: 20px;
               position    :     relative;


}

.detail-item li:before {
  content: '→';
  position: absolute;
    left: 0;
			color: #3498db;
  font-weight: bold;
}

.service-description-long


{
		background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
   border-left: 4px solid #3498db;
	font-size: 15px;
   color: #555555;
    line-height: 1.7;

}


.service-alt {
    background-color: #f8f9fa;
}

.service-reversed {
   grid-template-columns: 1fr 1fr;
}@media (max-width: 768px) {
    .service-detailed-wrapper,
    .service-reversed {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-details-list {
        grid-template-columns: 1fr;
    }

    .service-detailed-content h2 {
        font-size: 28px;
    }
}.services-comparison {
	max-width: 1200px;
	   margin: 0 auto;
	   padding: 80px 20px;
}

.services-comparison h2 {
    text-align: center;
    font-size: 38px;
	 font-weight: 700;
	 color:  #1a252f;
    margin-bottom: 50px;


}

.comparison-table   {
  background-color  :  white;
    border-radius    :     12px;
   overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	
}

.comparison-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
    gap: 0;
   border-bottom: 1px solid #ecf0f1;
}

.comparison-row:last-child {
    border-bottom: none;
}


.comparison-header {
  background-color: #2c3e50;
  color: white;


}

.comparison-header .comparison-cell {


   color: white;
  font-weight: 700; 



}

.comparison-cell {
  padding  :    20px;
    font-size: 14px;
  color   :   #2c3e50;
	 display: flex;
  align-items: center;
   text-align:   center;


}

.comparison-row:nth-child(odd):not(.comparison-header) {
  background-color: #f8f9fa;
}

.comparison-row:hover:not(.comparison-header) {
        background-color: #e8f4f8;
}@media (max-width: 768px) {
    .comparison-row,
    .comparison-header {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        text-align: left;
        padding: 15px;
    }

    .comparison-cell:before {
        content: attr(data-label);
        font-weight: 700;
        display: block;
        margin-bottom: 5px;
        color: #3498db;
    }
}.services-faq {
    padding: 80px 20px;
   background-color: #f8f9fa;
}

.services-faq h2 {
 text-align: center;
  font-size: 38px;
   color: #1a252f;
   margin-bottom: 60px;
   font-weight     :700;
  margin-right: auto;
	max-width: 1200px;
   margin-left: auto;
}

.faq-container {
				 max-width: 900px;
  margin     :   0 auto;
	display: grid;
    grid-template-columns    :1fr;
    gap: 20px;
}

.faq-item {
    background-color: white;
    padding: 25px;
        border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {


  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

}



.faq-question {
   font-size: 16px;
               font-weight: 700;
  color    :    #2c3e50;
   margin-bottom  :        12px;
         cursor: pointer;
  display     :     flex;
	justify-content: space-between;
   align-items: center;
}

.faq-question:before {
  content: '+';
   color :   #3498db;
  font-size: 20px;
	font-weight: bold;
}

.faq-answer {
   line-height: 1.7;
    color :#666666;
    font-size: 15px;
}

.services-cta     {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);

  color: white;

          padding: 80px 20px;

  text-align: center;
}

.services-cta h2{
	 font-size: 42px;
	font-weight: 700;
  margin-bottom     :       20px;
   line-height: 1.3;

}

.services-cta p {
   font-size: 18px; 
   margin-bottom: 40px; 
       opacity: 0.95; 
    max-width: 800px; 
   margin-left    :   auto; 
  margin-right: auto;
}  

.cta-back   {
   display: inline-block;
    background-color: white;
  color: #3498db;
    padding: 15px 45px;
  border-radius: 8px;
  text-decoration: none;
    font-weight   :     700;
   font-size: 16px;
	transition :all 0.3s ease;
}

.cta-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.thankyou-section {
  max-width: 900px;
    margin: 0 auto;
   padding: 80px 20px;
  min-height: calc(100vh - 450px);
} 

.thankyou-container {
   text-align: center;
}

.thankyou-icon
	{
  margin-bottom: 30px;
}

.success-icon {
  width :    100px;
                    height: 100px;
    stroke: #2ecc71;
    fill: none;
   stroke-width: 2;
    animation: scaleIn 0.6s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-title 
 {
   font-size: 48px;
 font-weight: 700;
        color: #1a252f;
    margin-bottom: 15px;
  line-height     :     1.2;}

.thankyou-subtitle	{
   color: #666666;
  font-size: 18px;
    margin-bottom :   50px;
}

.thankyou-message {
   background-color: #f8f9fa;
    padding: 50px;
          border-radius: 12px;
   margin-bottom: 50px;
}

.thankyou-message h2


{
  font-size: 28px;
   font-weight    :      700;
  color: #2c3e50;
          margin-bottom: 30px;


}

.message-steps {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.step {
    text-align: center;


}

.step-number {
    display     : inline-flex;
   align-items: center;
  justify-content: center;
	 width: 60px;
  height     : 60px;
   border-radius: 50%;
 background-color: #3498db;
          color: white;
  font-size: 24px;
  font-weight: 700;
    margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.step h3 {
   font-size: 18px;
    font-weight: 700;
   color: #2c3e50;
   margin-bottom: 10px;
}

.step p

{
    font-size: 14px;
  color  :        #666666;
	line-height: 1.6;
}

.thankyou-info 
 {
   margin-bottom    :       50px;
}

.thankyou-info h2 {


   font-size  : 28px;
	 font-weight: 700;
    color: #2c3e50;
  margin-bottom: 30px;
     }  

.info-boxes {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		 gap    :      25px;
}

.info-box {

  background-color: white;
       padding: 30px;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-box h3  {
   font-size: 18px;
      font-weight: 700;
                    color: #2c3e50;
    margin-bottom: 12px;
}

.info-box p     {
	font-size: 14px;
    color: #666666;
    line-height: 1.7;
	
}

.thankyou-cta {
     flex-wrap: wrap;
          gap: 15px;
     display: flex;
   justify-content: center;
               margin-bottom: 50px;


}

.btn-primary,
.btn-secondary {
  display: inline-block;
   padding: 15px 40px;
   border-radius :   8px;
  text-decoration: none;
         font-weight  :  700;
  font-size: 16px;
	transition: all 0.3s ease;
}

.btn-primary {
         background-color :      #3498db;

  color: white;
}

.btn-primary:hover {


  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
     }

.btn-secondary {
    background-color: white;
   color   :#3498db;
    border:2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #e8f4f8;
  transform: translateY(-2px);
}

.thankyou-footer-info {
  padding-top: 30px;
 border-top: 1px solid #ecf0f1;
}

.thankyou-footer-info p


{
    font-size: 14px;
    color     :    #999999;
} @media (max-width: 768px) {
    .thankyou-section {
        padding: 40px 20px;
        min-height: auto;
    }

    .thankyou-title {
        font-size: 32px;
    }

    .thankyou-message {
        padding: 30px;
    }

    .thankyou-message h2 {
        font-size: 22px;
    }

    .message-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}.policySection {
  padding  :     80px 2rem;
    background: #f8f9fa;
}

.policyContainer {
	 max-width: 800px;
    margin: 0 auto;
    text-align: left; 
	
}

.policyContainer h1 {
    font-size: 2.8rem;
   color: #1a252f;
   margin-bottom: 2rem;
   font-weight: 700;
  line-height: 1.2;
}

.policyContainer h2 {

	  font-size : 1.8rem;
          color: #2c3e50;
  margin-bottom: 1rem;
	margin-top: 2rem;
  font-weight: 700;
	border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
	}

.policyContainer h3 {
   font-size: 1.4rem;
   color: #34495e;
  margin-bottom: 0.8rem;
  margin-top:  1.5rem;
       font-weight: 600;
}

.policyContainer p  
  {

   color: #555555;
  margin-bottom: 1.5rem;
   line-height: 1.8;
		font-size: 1rem;
         text-align : justify;


}

.policyContainer li

{
  color: #555555;
    margin-bottom: 0.8rem;
   line-height: 1.7;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
    }

    .policyContainer h3 {
        font-size: 1rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }
}