* {
  margin     :      0;
	padding    :0;
   box-sizing: border-box; 

}

:root {
    --primary-dark: #1a1a2e;
    --primary-light: #0f3460;
    --accent-color: #e94560;
    --accent-light: #ff6b6b;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --neutral-gray: #95a5a6;
}

html {
     scroll-behavior: smooth;
}

body {
	  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-primary);
    background-color :   #ffffff;
   line-height: 1.6;
     }

.navbar {
  background-color: var(--primary-dark);
          padding: 1rem 0;
      position: sticky;
       top: 0;
       z-index: 1000;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width    :        1200px;
	margin: 0 auto;
  padding: 0 20px;
    display: flex;
       justify-content: space-between;
    align-items: center; 
	
}



.nav-brand {


   flex-shrink: 0;
	}

.nav-logo	{
  height    :  64px;
  width    :      auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
                    list-style: none;
    gap: 2rem;
   align-items: center;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
    font-weight: 500;
   transition: color 0.3s ease;
	 position: relative;
}

.nav-link:hover {

	  color: var(--accent-light);

}

.nav-link::after {
  content: '';
    position: absolute;
  bottom: -5px;
   left: 0;
    width: 0;
   height: 2px;
  background-color: var(--accent-light);
        transition    :     width 0.3s ease;
}

.nav-link:hover::after {

  width: 100%;
}

.burger-menu{
  display: none;
   flex-direction  : column;
        background: none;
  border    :       none;
  cursor: pointer;
          gap:  6px;
}

.burger-menu span {
	 width: 25px;
    height: 3px;
  background-color     :  #ffffff;
  transition: all 0.3s ease;
   border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}


.burger-menu.active span:nth-child(2) {
   opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
   color: #ffffff;
   padding: 80px 20px;
   display     : grid;
	grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
	max-width: 1200px;
    margin: 0 auto;
}


.hero-content h1 {
    font-size: 3rem;
  line-height: 1.2;
   margin-bottom: 20px; 

}

.hero-content p {


   font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;

}

.cta-button {
    display    :   inline-block;
  background-color: var(--accent-color);
   color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
   text-decoration :    none;
   font-weight: 600;
    transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.cta-button:hover {
   background-color  : transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
}

.hero-image img {
  width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.why-us {
               padding: 80px 20px;
     background-color: var(--bg-light);
}

.section-header


{

    text-align: center;
               margin-bottom   :      60px;
	max-width    :600px;
   margin-left: auto;
  margin-right: auto;

}

.section-header h2 {
  font-size: 2.5rem;
    margin-bottom  :       15px;
  color: var(--primary-dark);
}

.section-header p {
 font-size: 1.1rem;
  color: var(--text-secondary);
	
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
    background: #ffffff;
   padding: 40px;
  border-radius   :   12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          transition:     all 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-card h3 {


   font-size: 1.4rem; 
   margin-bottom: 12px; 
  color: var(--primary-dark);
     }

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.services-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.service-item {
   display: grid;
  grid-template-columns: 1fr 1fr;
	gap: 50px;
       align-items: center;
    margin-bottom: 80px;
	
}

.service-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-item.reverse img {
    order: -1;
}

.service-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.service-text p {
    font-size: 1rem;
  color: var(--text-secondary);
    margin-bottom: 25px;
  line-height: 1.8;

} 

.service-link {


    display: inline-block;
  color: var(--accent-color);
   text-decoration: none;
   font-weight: 600;
  border-bottom: 2px solid var(--accent-color);
               transition: all 0.3s ease; 



}

.service-link:hover {


  color: var(--accent-light);
  border-bottom-color: var(--accent-light);
    padding-left: 5px;
}

.service-item img {
  width    :     100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.webinars-conferences {


  background-color: var(--bg-light);
    padding: 80px 20px;


}

.events-container {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 30px;
  max-width     : 1200px;
   margin: 0 auto;
    margin-top: 40px;
}

.event-card {
   background: #ffffff;
  padding: 30px;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--accent-color);
   transition: all 0.3s ease;

}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.event-type {
   display: inline-block;
  background-color: var(--accent-color);
  color: #ffffff;
   padding: 6px 16px;
    border-radius: 20px;
    font-size    :  0.85rem;
    font-weight: 600;
        margin-bottom: 12px;
}

.event-card h4 {
    font-size: 1.3rem;
  color: var(--primary-dark);
                    margin-bottom: 12px;
}

.event-card p {
  color: var(--text-secondary);
    margin-bottom  :     18px;
   line-height     :  1.7;
}

.event-duration {
       display     :     block;

	  color: var(--accent-color);

	    font-weight: 600;

	  font-size  :     0.95rem;
}

.transformation {


  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: #ffffff;
    padding: 80px 20px;
 display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  align-items: center;
  max-width: 1200px;
	margin: 0 auto;
     }

.transformation img {
  width     :100%;
    height: auto;
  border-radius  :  12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.transformation-content h2 {
    font-size  : 2.2rem;
    margin-bottom:     20px;
}

.transformation-content p {
    font-size: 1.05rem;
  margin-bottom: 30px;
   opacity   :        0.95;
}

.transformation-list  
  {
    list-style: none;
} 

.transformation-list li {
   padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;}

.transformation-list li::before {
  content: '✓';
   position: absolute;
    left: 0;
  color: var(--accent-light);
         font-weight: bold;
    font-size: 1.2rem;
}

.testimonials		{
	 padding: 80px 20px;

  background-color: var(--bg-light);
}


.testimonials-grid {
  display    :        grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap:       30px;
   max-width: 1200px;
  margin: 0 auto;
    margin-top  :    50px;
}

.testimonial-card {
    background: #ffffff;
	padding:35px;
               border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
	  transform: translateY(-4px);


}

.testimonial-text {
    font-size: 1rem;
  color: var(--text-primary);
	margin-bottom: 20px;
  line-height: 1.8;
 font-style: italic;
}

.testimonial-author {
  color: var(--accent-color);
   font-weight: 600;
    font-size: 0.95rem;
}

.cta-section

{
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color    :      #ffffff;
    padding: 80px 20px;
     text-align    :        center;
}

.cta-content

{
    max-width: 700px;
	margin: 0 auto;
}

.cta-content h2 {
    font-size :   2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
        font-size: 1.1rem;
        margin-bottom  : 35px;
   opacity   : 0.95;
}

.cta-button-large {
   				 display: inline-block;
  background-color: var(--primary-dark);
               color: #ffffff;
	 padding   :16px 40px;
    border-radius: 8px;
   text-decoration: none;
   font-weight: 600;
   font-size: 1.05rem;
  transition  :  all 0.3s ease;
  border: 2px solid var(--primary-dark);
     }

.cta-button-large:hover {
        background-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-section {
  background-color: var(--bg-light);
    padding    :     80px 20px;
	
}


.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-wrapper h2 {
   text-align: center; 
	  font-size: 2.2rem; 
	  color: var(--primary-dark); 
	   margin-bottom    :   12px;
}

.contact-wrapper > p {
         text-align: center;
  color: var(--text-secondary);
    margin-bottom: 40px;
  font-size: 1.05rem;
}



.contact-form {
    background     :    #ffffff;
   padding: 40px;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
   margin-bottom: 20px;
}

.form-input,
.form-textarea {
	width: 100%;
  padding   : 14px 16px;
  border: 2px solid var(--border-color);
   border-radius     :       8px;
	font-size: 1rem;
  font-family: inherit;
    transition: all 0.3s ease;
  color: var(--text-primary);
  background-color: #ffffff;}

.form-input:focus,
.form-textarea:focus {
	   outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
     }

.form-textarea
	{
	 resize: vertical;
       min-height: 120px;
}

.submit-btn {
  width :       100%;
   padding: 14px;
  background-color: var(--accent-color);
   color: #ffffff;
         border   :      none;
   border-radius: 8px;
    font-size: 1rem;
   font-weight: 600;
  cursor: pointer;
   transition: all 0.3s ease;
}

.submit-btn:hover {

	  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);}

.footer {
  background-color: var(--primary-dark);
	 color: #ffffff;
        padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 50px;
   margin-bottom: 40px;
}

.footer-logo-section {
    margin-bottom     :   20px;
}

.footer-logo {
  height: 86px;
		width: auto;
	  filter: brightness(0) invert(1);
}

.footer-info {
  line-height: 1.8;
}

.footer-address 
 {
	font-size: 0.95rem;
    margin-bottom: 10px;
  opacity: 0.9;
}

.footer-phone {
   font-size: 0.95rem;
    opacity :    0.9;
     }

.footer-links {

   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 30px;

}

.footer-column h4 {
      font-size: 1rem;
		margin-bottom: 15px;
  color: var(--accent-light);
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: #ffffff;

    text-decoration: none;

   font-size: 0.95rem;

     transition:  color 0.3s ease;

         display: block;

    padding: 6px 0;

	opacity: 0.8;
}

.footer-column a:hover
	{
  color: var(--accent-light);
  opacity     :       1;
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
          padding-top: 20px;
   text-align    :    center;
        font-size: 0.9rem;
	 opacity   :  0.7;


}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--primary-dark);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .services-showcase {
        padding: 50px 20px;
    }

    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .transformation {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 25px;
    }

    .testimonials-grid,
    .events-container,
    .features-grid {
        gap: 20px;
    }

    .footer-logo {
        height: 64px;
    }

    .contact-wrapper > p {
        font-size: 0.95rem;
    }
}.services-hero  {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
     color:       #ffffff;
	padding     :  100px 20px;
	text-align :        center;
}



.services-hero-content h1 {
    font-size: 3rem;
 margin-bottom: 15px;
        line-height: 1.2;
}

.services-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.services-intro {

  background-color: var(--bg-light);
	 padding: 50px 20px;
  text-align: center; 
}



.services-intro-wrapper {
  max-width: 700px;
   margin: 0 auto;
}

.services-intro-wrapper h2 {
     font-size: 2rem;
                    margin-bottom: 20px;
  color: var(--primary-dark);



}

.services-intro-wrapper p {

	   font-size: 1.05rem;
  color: var(--text-secondary);

} 

.service-detailed {

	  max-width: 1200px;
	padding: 80px 20px;
    margin: 0 auto;}

.service-detail-card	{
   display: grid;
               grid-template-columns :      1fr 1fr;
  gap: 50px;
  align-items  : center;
   margin-bottom: 100px;

}

.service-detail-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detail-card.reverse .service-detail-image {
		order: -1;
}

.service-detail-image  
  {
    overflow: hidden;
	 border-radius:  12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
   width: 100%;

	  height: auto;

	  display: block;

	     transition: transform 0.3s ease;


}

.service-detail-card:hover .service-detail-image img {
  transform: scale(1.05);
}

.service-detail-content h3 {
	font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.service-subtitle {
  color: var(--accent-color);
    font-weight: 600;
				 font-size: 1rem;
   margin-bottom: 20px;


}

.service-detail-content p {
  color: var(--text-secondary);
   font-size     :        1rem;
  line-height  : 1.8;
	margin-bottom: 25px;
}

.service-features {
   list-style: none;
  margin-bottom    :30px;
}

.service-features li {
    padding: 10px 0;
  padding-left: 30px;
    position: relative;
  color: var(--text-primary);
     font-size: 0.95rem;
}

.service-features li::before {
  content: '→';
    position    :       absolute;
    left: 0;
  color: var(--accent-color);
	font-weight: bold;
   font-size: 1.2rem;
}

.service-price-info {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
               display: flex;
   align-items  :       center;
					gap: 15px;
}

.price-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.price-amount  {
    font-size: 1.8rem;
    font-weight: 700;
  color: var(--accent-color);
}

.price-duration {
  color: var(--text-secondary);
	font-size: 0.9rem;


}

.service-comparison {
  background-color: var(--bg-light);
      padding    :        80px 20px;
}

.service-comparison h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom  :50px;
}

.comparison-table {

	   max-width    :        1000px;
    margin: 0 auto;
  background: #ffffff;
	 border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	}

.comparison-row {

   display:    grid;
 grid-template-columns     :1fr 1fr 1fr 1fr;
    gap    :  0;
  border-bottom: 1px solid var(--border-color);}

.comparison-row.header-row {
  background-color: var(--primary-dark);
	color: #ffffff;
     }

.comparison-row:last-child {
             border-bottom: none;
	
}

.comparison-col {

	    padding: 20px;
     text-align  :        center;
     font-size  :0.95rem; 
	
     }

.comparison-row.header-row .comparison-col {
   font-size: 0.9rem;
	               font-weight: 600;

} 

.col-service {
    text-align     :     left;
      font-weight    : 600;
  color: var(--primary-dark);
}

.comparison-row.header-row .col-service {
    color: #ffffff;
}

.process-section
{
   max-width: 1200px;
	margin: 0 auto;
  padding: 80px 20px;
}

.process-section h2{
   text-align: center;

	   font-size:     2rem;

	  color: var(--primary-dark);

	               margin-bottom  :    60px;
}

.process-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:   30px; 

}

.process-step {
     background: #ffffff;

    padding: 40px;

    border-radius    :        12px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

  text-align: center;

   transition: all 0.3s ease;

  border-top: 4px solid var(--accent-color);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

}

.step-number {
  font-size: 2.5rem;
	 font-weight: 700;
  color: var(--accent-color);
   margin-bottom: 15px;
}

.process-step h4 {
      font-size: 1.2rem;
  color: var(--primary-dark);
   margin-bottom: 12px;
}  

.process-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
         line-height :    1.6;
}

.services-faq {
  background-color: var(--bg-light);
    padding: 80px 20px; 
	
}

.services-faq h2{
   text-align: center;
	font-size: 2rem;
  color: var(--primary-dark);
   margin-bottom: 50px;
}

.faq-items {
     max-width    :800px;
   margin  :   0 auto;
}

.faq-item {
   margin-bottom: 15px;
}

.faq-toggle {
	width: 100%;
   background: #ffffff;
  border: 2px solid var(--border-color);
   padding: 20px;
   text-align: left;
	cursor   :     pointer;
    font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
   border-radius    :  8px;
	 transition: all 0.3s ease;
   display: flex;
         justify-content: space-between;
  align-items:   center;
}

.faq-toggle:hover {
  border-color: var(--accent-color);
    background-color: #f9f9f9;
}  

.faq-toggle::after {
  content: '+';

	   font-size: 1.5rem;

	  color: var(--accent-color);

	  transition: transform 0.3s ease;
}



.faq-toggle.active {
  border-color: var(--accent-color);
  background-color: var(--bg-light);
}

.faq-toggle.active::after {
  transform: rotate(45deg);
}

.faq-content  
  {
   max-height: 0;
  overflow:   hidden;
    transition: max-height 0.3s ease;
}

.faq-content.show {
  max-height: 500px;
}

.faq-content p {
	background: #ffffff;
   padding: 20px;
  color: var(--text-secondary);
        font-size: 0.95rem;
   line-height    :     1.7;
    border-radius: 0 0 8px 8px;
  border: 2px solid var(--border-color);
    border-top: none;
}

.services-cta
	{
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: #ffffff;
  padding: 80px 20px;
   text-align: center;
}

.services-cta h2 {
	font-size: 2.5rem;
   margin-bottom: 15px;
}



.services-cta p {
    font-size:        1.1rem;
	 margin-bottom: 35px;
   opacity: 0.95;
}

.thank-you-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f0f4f8 100%);
  padding: 100px 20px;
 min-height: 100vh;
    display: flex;
    align-items: center;
   justify-content: center;
}

.thank-you-container {
    max-width   :700px;
   background: #ffffff;
   padding: 60px 40px;
    border-radius     :     16px;
   text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); 

}

.thank-you-icon {
    margin-bottom: 30px;
	}

.thank-you-icon svg {
                    width: 120px;
      height: 120px;
   animation :   scaleIn 0.6s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thank-you-container h1{
  font-size    :       2.5rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.thank-you-subtitle {
          font-size: 1.2rem;
  color: var(--accent-color);
    font-weight: 600;
  margin-bottom: 30px;
}

.thank-you-message {
  background-color: var(--bg-light);
       padding   :        25px;
    border-radius: 8px;
   margin-bottom: 40px;
}


.thank-you-message p {
  color: var(--text-secondary);
         font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.thank-you-message p:last-child		{
  margin-bottom   :        0;
}

.what-next {
  margin: 50px 0;

}


.what-next h2 {
    font-size: 1.5rem;
  color: var(--primary-dark);
   margin-bottom: 30px;
}

.next-steps {
	display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.next-step-item {
  background: var(--bg-light);
   padding: 25px;
   border-radius: 8px;
}

.step-icon {
    width: 50px;
                    height: 50px;
  background-color: var(--accent-color);
   color: #ffffff;
  border-radius: 50%;
         display:       flex;
          align-items     :  center;
   justify-content     : center;
	 font-size: 1.5rem;
  font-weight: 700;
   margin: 0 auto 15px;

}


.next-step-item h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
   margin-bottom: 10px;
}

.next-step-item p {
  color: var(--text-secondary);
		 font-size: 0.9rem;
   line-height: 1.5;
}

.thank-you-contact-info {
  background-color: var(--bg-light);
  padding: 25px;
    border-radius: 8px;
   margin: 40px 0;
}



.thank-you-contact-info p {
  color: var(--text-secondary);
   font-size: 0.95rem;
  margin-bottom: 10px;
}

.contact-phone {
   font-size: 1.3rem !important;
  color: var(--accent-color) !important; 
	
}

.thank-you-actions {
    display :  flex;
    gap: 15px;
   justify-content     :center;
    margin-top: 40px;
}

.button-primary,
.button-secondary {
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
   font-weight: 600;
   font-size: 0.95rem;
    transition: all 0.3s ease;
   display: inline-block;
}

.button-primary {
  background-color: var(--accent-color);
   color: #ffffff;
  border: 2px solid var(--accent-color);
}

.button-primary:hover {
   background-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
}

.button-secondary {
   background-color: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}

.button-secondary:hover {
  background-color: var(--primary-dark);
   color: #ffffff;
  transform: translateY(-2px);
}

.additional-resources {
	   max-width: 1200px;
  margin: 0 auto;
    padding: 80px 20px;


}

.additional-resources h2 {
	 text-align:     center;
  font-size: 2rem;
  color: var(--primary-dark);
    margin-bottom: 10px;
}

.additional-resources > p {

	  text-align: center;
  color: var(--text-secondary);
	 margin-bottom: 50px;
    font-size: 1.05rem;
     }

.resources-grid
{
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
               gap: 30px;


}

.resource-card {
   background:     #ffffff;

    padding: 35px;

   border-radius: 12px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

  border-left: 4px solid var(--accent-color);

  text-align: center;

    transition     :all 0.3s ease;
} 

.resource-card:hover {
  transform: translateY(-6px); 
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.resource-card h3 {
	font-size    :  1.2rem;
  color: var(--primary-dark);
   margin-bottom: 12px;
}

.resource-card p {
  color: var(--text-secondary); 
    font-size: 0.95rem; 
   line-height: 1.6;
} @media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .comparison-row {
        grid-template-columns: 1fr 1fr;
    }

    .next-steps {
        grid-template-columns: 1fr;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
        text-align: center;
    }

    .process-steps {
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .service-detail-content h3 {
        font-size: 1.5rem;
    }

    .what-next h2 {
        font-size: 1.3rem;
    }
}@media (max-width: 480px) {
    .thank-you-container {
        padding: 30px 20px;
    }

    .thank-you-icon svg {
        width: 80px;
        height: 80px;
    }

    .thank-you-container h1 {
        font-size: 1.8rem;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-col {
        padding: 12px;
        font-size: 0.85rem;
    }

    .faq-toggle {
        padding: 15px;
        font-size: 0.9rem;
    }

    .service-price-info {
        flex-direction: column;
        text-align: center;
    }

    .services-hero-content h1 {
        font-size: 1.3rem;
    }

    .services-intro-wrapper h2 {
        font-size: 1.3rem;
    }

    .service-detail-content h3 {
        font-size: 1.2rem;
    }

    .process-step {
        padding: 25px;
    }

    .step-number {
        font-size: 1.8rem;
    }

    .resources-grid {
        gap: 20px;
    }
}.policy-section {

  padding: 80px 2rem;
     background: var(--bg-light);
     min-height: calc(100vh - 300px);
	}

.policy-container {
   max-width: 800px;
  margin: 0 auto;
   text-align: left;
  background: #ffffff;
    padding: 50px;
	border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
	font-size: 2.8rem;
  color: var(--primary-dark);
                    margin-bottom: 40px;
    font-weight: 700;
  border-bottom: 3px solid var(--accent-color);
	padding-bottom     :        20px;
}

.policy-container h2

{
   font-size: 1.5rem;
  color: var(--primary-dark);
  margin-top: 35px;
    margin-bottom: 20px;
  font-weight:     600;
}

.policy-container p		{
  color: var(--text-secondary);
 margin-bottom: 20px;
	line-height: 1.8;
    font-size: 1rem;
   text-align    :       justify;
}

.policy-container strong {
  color: var(--primary-dark);
          font-weight: 600;
}

.policy-container p strong     {
	  color: var(--accent-color);
}

.policy-container h2 + p {
          margin-top: 15px;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container {
        padding: 30px;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container {
        padding: 20px;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .policy-container p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}