* {
  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;
		 line-height: 1.6;
	 color: #2c3e50;
  background-color : #ffffff;


}

.navbar {
    background-color: #ffffff;
   border-bottom: 1px solid #ecf0f1;
    position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-container{
  max-width    :        1200px;
   margin: 0 auto;
    padding    :        0 20px;
    display: flex;
  justify-content: space-between;
   align-items: center;
  height :   80px;
}

.nav-brand {
  flex: 0 0 auto;
}

.logo {
    height: 64px;
  width: auto;
    display: block;
} 

.nav-menu {
  list-style: none;
    display: flex;
  gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
        font-weight: 500;
	font-size: 16px;
   -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
          position: relative;
}

.nav-menu a:hover {
    color: #3498db;
}

.nav-menu a::after {

  content: '';
  position: absolute;
          bottom: -5px;
    left  :        0;
   width: 0;
   height: 2px;
  background-color :       #3498db;
  transition  :    width 0.3s ease;
}

.nav-menu a:hover::after {
    width    : 100%;
}

.burger-btn {
  display :     none;
		flex-direction: column;
    background: none;
	 border: none;
 cursor: pointer;
   gap: 6px;
    padding     :        5px;
}

.burger-btn span   {
  width: 25px;
  height  :     3px;
   background-color: #2c3e50;
   border-radius    :2px;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
} @media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        border-bottom: 1px solid #ecf0f1;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu a {
        font-size: 18px;
    }
}.hero {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap     :    60px;
    align-items: center;
    padding: 100px 20px;
  max-width    :  1200px;
   margin: 0 auto;
}

.hero-content h1 {
	  font-size: 48px;
    font-weight: 700;
    line-height  : 1.2;
   margin-bottom :       20px;
   color: #1a252f;

}



.hero-content p {
    font-size: 18px;
         color: #555;
  margin-bottom: 30px;
			line-height  :        1.8; 
	
}

.hero-btn {
	display: inline-block;
       background-color: #3498db;
	color:    #ffffff;
  padding   :    16px 40px;
   border-radius: 8px;
   text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.hero-btn:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hero-image img {
    width: 100%;
    height: auto;
   border-radius: 12px;
                    object-fit: cover;
}@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }
}.why-section
	{
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 100px 20px;
}

.why-container {
    max-width: 1200px;
  margin:   0 auto;
}

.why-section h2 {
  margin-bottom: 50px;
	font-size: 42px;
   text-align: center;
  color     :   #1a252f;
}

.why-grid  {
    display   :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 30px;
}

.why-card  
  {
       background-color: #ffffff;
                    padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;


}

.why-card:hover


{
     transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);


}


.why-card h3
{
    font-size: 22px;
    margin-bottom: 15px;
   color: #2c3e50;
} 

.why-card p

{


    color    :      #666;
   font-size: 15px;
  line-height: 1.8;}

.services-overview {
  padding: 100px 20px;
    max-width:        1200px;
    margin: 0 auto;

	}

.services-wrapper {
  display :        grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items: center;
}

.services-overview h2 {
    font-size: 40px;
  margin-bottom:25px;
  color: #1a252f;
}

.services-overview > div > p {
  font-size: 16px;
      color: #555;
   margin-bottom: 30px;
   line-height: 1.8;
}

.services-list {
   list-style: none;
   margin-bottom:    30px;
}

.services-list li
{

	   padding: 12px 0;

  padding-left: 30px;

   position:      relative;

  color: #555;

    font-size: 15px;
     }

.services-list li::before {
  content: '✓';

	  position: absolute;

	  left: 0;

	      color: #27ae60;

	    font-weight: bold;

	    font-size: 18px;
}

.services-link {
     -o-transition     :all 0.3s ease;
   -moz-transition: all 0.3s ease;
  display :      inline-block;
  background-color: #27ae60;
 color: #ffffff;
  padding: 14px 35px;
     border-radius: 8px;
   -webkit-border-radius    :  8px;
     -moz-border-radius: 8px;
  text-decoration: none;
   font-weight :        600;
   transition: all 0.3s ease;
   -webkit-transition: all 0.3s ease;
}

.services-link:hover {
   background-color: #229954; 
  transform: translateX(5px);
}

.services-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 400px;
}@media (max-width: 900px) {
    .services-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-overview h2 {
        font-size: 32px;
    }

    .services-image img {
        height: 300px;
    }
}.workshop-section {
	          background-color: #f8f9fa; 
   padding: 100px 20px;

}

.workshop-section {
    max-width : 1200px;
               margin-left: auto;
   margin-right: auto;
}

.workshop-section h2


{
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
 color: #1a252f;
}



.workshop-grid 
 {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap   :        40px;
}

.workshop-card {
  background-color: #ffffff; 
	 border-radius: 12px; 
			overflow    :  hidden; 
	  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); 
	    transition    :    all 0.3s ease;
}

.workshop-card:hover {

  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);


}

.workshop-card img {
   width: 100%;
    height: 240px;
   object-fit: cover;
}

.workshop-card h3 {
   font-size: 22px;
   padding: 20px 20px 10px;
  color:   #2c3e50; 
	
}



.workshop-card p {
  padding   :   0 20px;

	        color: #666;

	   font-size: 14px;

	  line-height: 1.7;
}

.workshop-duration {
   display: block;
				 padding :  15px 20px 20px;
        color: #3498db;
  font-weight: 600;
   font-size: 13px;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 padding: 80px 20px;
    text-align: center;
  color: #ffffff;
}

.cta-content {
    max-width: 700px;
  margin   :       0 auto;
}

.cta-content h2
	{
   font-size    :      38px;
   margin-bottom: 20px;
         font-weight: 700;
}


.cta-content p {

	  font-size: 18px;
    margin-bottom:    40px;
   line-height: 1.8;
    opacity: 0.95;


}

.cta-button {
   display: inline-block;
  background-color: #ffffff;
  color: #667eea;
    padding: 16px 45px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
   font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); 

}

.conference-section {
  padding: 100px 20px;
    max-width  :  1200px;
    margin: 0 auto; 

}

.conference-section h2 {
  font-size: 40px;
 text-align: center;
    margin-bottom: 50px;
   color: #1a252f;
}

.conference-wrapper {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 35px;
}

.conference-item {
   background-color: #f8f9fa;
    padding: 40px;
   border-radius: 12px;
	border-left: 5px solid #3498db;
  transition: all 0.3s ease;
}

.conference-item:nth-child(2) {
  border-left-color: #27ae60;
	
}

.conference-item:nth-child(3) {


  border-left-color: #e74c3c;}

.conference-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.conf-number    {
       font-size:48px;
    font-weight:        700;
   color: #3498db;
   margin-bottom: 10px;
}

.conference-item:nth-child(2) .conf-number {
		 color: #27ae60;
	}

.conference-item:nth-child(3) .conf-number {
   color: #e74c3c;
}

.conference-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
  color     :#2c3e50; 
	
}

.conference-item p {
	   color: #666;
    font-size    : 15px;
    line-height: 1.8;
}

.contact-section {
  background-color: #f5f7fa;
	 padding: 100px 20px;
}

.contact-container {
    max-width: 600px;
      margin: 0 auto;

}

.contact-section h2 {
    font-size: 38px;
    text-align :      center;
    margin-bottom: 20px;
   color: #1a252f;
}

.contact-section > p {

	  text-align: center;
          color: #666;
	margin-bottom: 50px;
   font-size: 16px;
   line-height:  1.8;

}

.contact-form {
      display: flex;

	    flex-direction    :       column;

	    gap: 25px;
}

.form-group
{

       display: flex;
                    flex-direction   : column;

}



.form-group label {
    font-weight: 600;
  margin-bottom: 8px;
  color  :     #2c3e50;
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea
{
         padding: 12px 15px;

    border: 2px solid #ecf0f1;

    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;
   background-color     :        #f8fbfe;
  box-shadow: 0 0 10px rgba(52, 152, 219, 0.2);
}

.form-group textarea {
   resize: vertical;
    min-height : 120px;
}

.form-submit {
    background-color: #3498db;
   color: #ffffff;
       padding: 14px 40px;
  border: none;
 border-radius: 8px;
    font-weight: 700;
   font-size: 16px;
   cursor: pointer;
    transition:all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
	margin-top: 15px;
}

.form-submit:hover {
	background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.form-submit:active {
  transform: translateY(0);
}

.footer {
               color    :   #ecf0f1;
    background-color: #1a252f;
  padding: 60px 20px 20px;

}

.footer-container {
  max-width   : 1200px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 40px;
}

.footer-logo-img {
                    height: 86px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-content {
		display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;

}

.footer-column h3     {


    font-size: 18px;
   margin-bottom: 15px;
    color: #ffffff;
	font-weight: 700;
	}

.footer-column p {
   font-size: 14px;
    line-height: 1.8;
    margin-bottom   :       10px;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bdc3c7;
    text-decoration: none;
   font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #3498db;
}

.footer-bottom {
  border-top     :    1px solid #34495e;
	padding-top: 20px;
   text-align: center;
  color :     #95a5a6;
    font-size: 13px;
}@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo-img {
        height: 64px;
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .workshop-grid {
        grid-template-columns: 1fr;
    }

    .conference-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 60px 15px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .why-section h2,
    .workshop-section h2,
    .conference-section h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ffffff;
   padding: 80px 20px;
   text-align: center;
}

.services-hero-content {
   max-width: 900px;
   margin: 0 auto;
}

.services-hero h1 {
    font-size: 48px;
   margin-bottom: 20px;
     font-weight: 700;
   line-height: 1.2;
}

.services-hero p {
   font-size: 18px;
    opacity: 0.95;
	line-height: 1.8;
}

.services-grid {
    padding: 100px 20px;
  background-color     :       #ffffff;
}

.services-grid-container {
   max-width :    1200px;
	margin: 0 auto;
   gap   : 50px;
   grid-template-columns: 1fr;
  display: grid;
}

.service-card {
   display: grid;
       grid-template-columns: 1fr 1fr;
   gap: 40px;
  align-items: stretch;
    background-color: #f8f9fa;
  border-radius: 12px;
    overflow     :        hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card:nth-child(even)     {
    grid-template-columns: 1fr 1fr;
}

.service-card:nth-child(even) .service-card-image {

	  order     :   2;
	}


.service-card:nth-child(even) .service-card-content {
  order: 1;
}

.service-card-image {
      overflow: hidden;}

.service-card-image img {
	    height    :     100%;
  transition: transform 0.3s ease;
               object-fit: cover;
    width: 100%;}

.service-card:hover .service-card-image img {
     transform: scale(1.05);


     }

.service-card-content {
      padding: 40px;
  display: flex;
    flex-direction: column;

}

.service-card h2 {
    font-size: 28px;
   margin-bottom    :     20px;
		 color: #2c3e50;
}

.service-card p {
     font-size: 15px;
  color:     #666;
  margin-bottom: 25px;
   line-height: 1.8;
	

}

.service-features  {
  list-style: none;
   margin-bottom: 25px;
  flex-grow: 1; 
	
}

.service-features li {
   padding: 10px 0;
    padding-left: 25px;
    position: relative;
  color: #555;
  font-size: 14px;
}

.service-features li::before {
	  content: '✓';
  position: absolute;
   left: 0;
  color: #3498db;
  font-weight: bold;
    font-size: 16px;
     }

.service-price {
     display: block;
  font-size    :16px;
    font-weight   :  700;
         color: #3498db;
   padding-top: 15px;
  border-top: 2px solid #ecf0f1;
}@media (max-width: 900px) {
    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(even) .service-card-image {
        order: unset;
    }

    .service-card:nth-child(even) .service-card-content {
        order: unset;
    }

    .service-card-content {
        padding: 30px;
    }

    .service-card h2 {
        font-size: 22px;
    }

    .services-hero h1 {
        font-size: 32px;
    }
}.services-packages
{
    background-color: #f5f7fa;
  padding: 100px 20px;

}

.packages-container {
        max-width   :        1200px;
  margin: 0 auto;
}

.packages-container h2 {
        font-size: 40px;
    text-align: center;
	 margin-bottom: 15px;
	color: #1a252f;
}

.packages-container > p {
	  text-align: center;
  color: #666;
 margin-bottom: 50px;
    font-size: 16px;


}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap   :  30px;
}

.package-card 
 {
  background-color: #ffffff;
  -moz-transition: all 0.3s ease;
 -webkit-transition: all 0.3s ease;
   border-radius: 12px;
    padding  :     40px;
	 border: 2px solid #ecf0f1;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
  position :      relative;
}

.package-card:hover {
    border-color: #3498db;
     box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
     transform: translateY(-5px);
}

.package-card.featured {
  transform: scale(1.05);
   border-color: #3498db;
  box-shadow: 0 10px 35px rgba(52, 152, 219, 0.25);
}

.package-badge


{
  -moz-transform: translateX(-50%);
    position: absolute;
    top   :        -12px;
   left: 50%;
  transform: translateX(-50%);
   background-color : #3498db;
    color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
    font-size: 12px;
    font-weight   :       700;
  text-transform: uppercase;
}

.package-card.featured .package-badge		{
	 background-color: #e74c3c;
}

.package-card h3
	{
  font-size: 24px;
    margin-bottom: 20px;
   color: #2c3e50;
}  

.package-price {
          font-size: 42px;
        font-weight: 700;
    color: #3498db;
   margin-bottom:    5px;
}

.package-card.featured .package-price  {
   color    :#e74c3c;
}

.package-period {
  color: #999;
   font-size: 14px;
   margin-bottom: 30px;
}

.package-features {
	 list-style: none;
      text-align: left;
          margin-bottom: 30px;
}

.package-features li  
  {
    padding    :  12px 0;
    font-size: 14px;
   border-bottom :    1px solid #f0f0f0;
  color     : #666;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-btn{
  width: 100%;

	padding: 14px 30px;

   border: 2px solid #3498db;

  background-color: transparent;

   color: #3498db;

   border-radius: 8px;

   font-weight: 700;

   font-size: 15px;

         cursor: pointer;

  transition: all 0.3s ease;
}

.package-btn:hover {
  background-color     :    #3498db;
  color: #ffffff;
}

.package-btn-primary {
  color :   #ffffff;
   border-color: #3498db;
	background-color: #3498db;
}

.package-btn-primary:hover {
  border-color: #2980b9;
  background-color: #2980b9;
}

.process-section {
    padding    :100px 20px;
    background-color   :    #ffffff;
}

.process-container {
	 max-width: 1200px;
	    margin    :   0 auto;
}

.process-section h2 {
  font-size: 40px;
    text-align   :      center;
       margin-bottom: 60px;
    color: #1a252f;
}

.process-timeline {


 justify-content: space-between;
   flex-wrap: wrap;
    display  : flex;
	align-items: flex-start;
    gap: 20px;

}

.process-step {
   text-align: center;
                    position    :      relative;
       min-width :200px;
   flex: 1;
}

.step-number {
	 width: 60px;
  height   :      60px;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: #ffffff;
   border-radius: 50%;
	display  : flex;
  align-items     :  center;
    justify-content: center;
   font-size: 28px;
   font-weight: 700;
    margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.process-step h3 {
   margin-bottom: 12px;
   font-size: 18px;
    color: #2c3e50;
}

.process-step p {
     line-height   :1.7;
                       font-size    :  14px;
        color: #666;
     }

.process-arrow {
  width: 40px;
    height:     3px;
   background-color     :   #bdc3c7;
   margin-top: 30px;
    display:    none;
}@media (min-width: 900px) {
    .process-timeline {
        flex-direction: row;
    }

    .process-arrow {
        display: block;
    }

    .process-arrow:last-of-type {
        display: none;
    }
}

@media (max-width: 900px) {
    .process-timeline {
        flex-direction: column;
    }

    .process-step {
        margin-bottom: 30px;
    }
}.testimonials-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
	padding :     100px 20px;

} 

.testimonials-container {

	   max-width: 1200px;
   margin    :  0 auto;
}

.testimonials-section h2 {
    font-size: 40px;
  text-align: center;
   margin-bottom: 50px;
     color: #1a252f; 

}

.testimonials-grid {
	  display    :  grid;

	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

	   gap: 30px;

}

.testimonial-card {
  background-color    :#ffffff;
	padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
        font-style: italic;
   line-height: 1.8;
  font-size: 15px;
 color: #555;
    margin-bottom: 25px;
}

.testimonial-author {
      border-top: 2px solid #ecf0f1;
  padding-top     :      15px;
	}

.author-name {
    font-weight     :       700;
    color     :      #2c3e50;
	font-size: 15px;
}



.author-title {
   font-size: 13px;
   color: #999;
  margin-top    :      5px;


}

.faq-section {
 padding: 100px 20px;
   background-color:    #ffffff;
}

.faq-container {
	 max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {

  margin-bottom: 50px;
     text-align    :  center;
   font-size: 40px;
    color: #1a252f;}

.faq-grid {
  display: grid;
	  gap: 15px;
}

.faq-item {
    background-color: #f8f9fa;
  border-radius: 8px;
  border: 2px solid #ecf0f1;
  transition   :  all 0.3s ease;
}

.faq-item.active {
  border-color: #3498db;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
   border    :  none;
    cursor: pointer;
  display: flex;
    justify-content :     space-between;
	align-items: center;
      font-size: 16px;
   font-weight  :  600;
		 color: #2c3e50;
  transition: color 0.3s ease;
}



.faq-question:hover {
   color: #3498db;
}

.faq-toggle {
  -moz-transition: transform 0.3s ease;
   font-size: 24px;
    color: #3498db;
  transition: transform 0.3s ease;
   -o-transition: transform 0.3s ease;
   -webkit-transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer     {
               max-height: 0;

	   overflow: hidden;

				transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {

	   max-height: 300px;

}

.faq-answer p {
   padding: 0 20px 20px;
  font-size: 14px;
    color: #666;
	line-height: 1.8;
}

.thankyou-section {
   padding :      80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
  min-height: calc(100vh - 340px);
	 display: flex;
  align-items: center;
   justify-content: center;
}

.thankyou-container {
   max-width    :  700px;
   background-color: #ffffff;
   border-radius: 12px;
   padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   text-align: center;
}

.success-icon {
    width: 100px;
  height: 100px;
   margin: 0 auto 30px;
   animation: scaleIn 0.5s ease;
}

.success-icon svg {
	   width: 100%;
   height: 100%; 
	
} @keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {
       font-size :    36px;
   color: #27ae60;
   margin-bottom: 15px;
	
}

.thankyou-subtitle {
    font-size: 18px; 
  color: #666; 
    margin-bottom: 40px; 
   line-height: 1.6;
}

.thankyou-content {


  text-align: left;
  margin-bottom: 40px;

}

.thankyou-content p {
  font-size: 15px;
	color: #555;
  line-height: 1.8;
    margin-bottom: 30px;
}

.next-steps {
	margin-bottom: 30px; 
			padding :     30px; 
	    border-radius: 8px; 
	   background-color: #f8f9fa;
}

.next-steps h2 {
  font-size:       20px;
    color: #2c3e50;
    margin-bottom: 20px;
}



.next-steps ol {
	list-style: decimal;
   margin-left    : 20px;

}


.next-steps li {
   margin-bottom: 18px;
   font-size: 14px;
        color: #555;
}

.next-steps strong {
   color  : #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.next-steps span {
   font-size: 13px;
    color  :  #999;
   display: block;

}

.helpful-info {

  background-color: #ecf8f0;
	    padding     :   25px;
	  border-radius: 8px;
	  margin-bottom: 30px;
	  border-left: 4px solid #27ae60;
}

.helpful-info h3 {
  font-size: 16px;
   color: #27ae60;
  margin-bottom: 12px; 
	
}

.helpful-info p {
	   font-size :14px;
	color: #555;
   margin-bottom:      15px; 
}

.info-links  {


   list-style: none;
    display: flex;
    gap: 20px;
   justify-content: center;}



.info-links a {
   font-weight: 600;
   color:   #27ae60;
   transition: color 0.3s ease;
  font-size: 14px;
    text-decoration: none;
}

.info-links a:hover {

	color: #229954;

}

.contact-quick		{
    border-left: 4px solid #3498db;

	   border-radius     :       8px;

	     background-color: #e3f2fd;

	  padding: 20px;
}

.contact-quick p {
   font-size: 14px;
    color: #555;
          margin-bottom: 12px;
}

.contact-details	{
   font-size: 14px;
   color    :        #2c3e50;
  line-height: 1.8;
}@media (max-width: 600px) {
    .thankyou-container {
        padding: 40px 25px;
    }

    .thankyou-container h1 {
        font-size: 28px;
    }

    .thankyou-subtitle {
        font-size: 16px;
    }

    .next-steps {
        padding: 20px;
    }

    .info-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .info-links a {
        display: inline-block;
    }
}.policy-section {
   padding     :80px 2rem;
   background: #f8f9fa;
  min-height: calc(100vh - 340px);
}

.policy-container {
  max-width: 800px;
	margin: 0 auto;
    text-align: left;
	 background-color: #ffffff;
	 padding: 50px 40px;
	border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
    font-size: 2.8rem;
     color: #1a252f;
    margin-bottom: 40px;
  font-weight: 700;
 line-height: 1.2;

}

.policy-container h2 {
  font-size: 1.8rem;
		 color   :    #2c3e50;
	    margin-top: 35px;
		 margin-bottom: 15px;
	    font-weight: 700;
	                    line-height: 1.3;
}

.policy-container p {
   		color: #555;

  margin-bottom: 15px;

  line-height: 1.8;

   font-size: 1rem;

}

.policy-container strong	{
   color: #2c3e50;
   font-weight: 600; 

}

.policy-container ul {
  margin-left: 20px;
       margin-bottom: 15px;
}

/* Debug styles */

.policy-container li {
  color:   #555;
      margin-bottom: 10px;
    line-height  :  1.7;
		 font-size: 1rem;
}

.policy-container a {
	    color: #3498db;
  text-decoration: none;
	transition: color 0.3s ease;

}

.policy-container a:hover {
    text-decoration    :  underline;
         color  :      #2980b9;
}
@media (max-width: 768px) {
    .policy-container {
        padding: 30px 25px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .policy-section {
        padding: 60px 1rem;
    }
}

@media (max-width: 600px) {
    .policy-container {
        padding: 20px 15px;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .policy-section {
        padding: 40px 0.5rem;
        min-height: auto;
    }
}