* {
     padding: 0;
    margin: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
	 height: 100%;
	
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color   :      #2c3e50;
          background-color: #f8f9fa;
    line-height: 1.6;
}

.navbar  {
   background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   position: sticky;
  top: 0;
  z-index: 1000;
   width:       100%;
}

.nav-container {

    max-width: 1200px;
		margin :        0 auto;
  padding: 15px 20px;
    display: flex;
   justify-content    :   space-between;
  align-items: center;

}  

.nav-logo {
   flex: 0 0 auto;
}

.logo-img {
   height    :        50px;
  width: auto;
  filter: brightness(0) invert(0);
}

.nav-links {
  display: flex;

	  list-style: none;

	    gap: 30px;

	   align-items: center;


}

.nav-links a {
       text-decoration     :   none;
   color: #2c3e50;
   font-weight: 500;
 transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
   color: #3498db;
}



.nav-links a::after {
  content: '';
    position:        absolute;
	 bottom     :-5px;
	left  :0;
    width: 0;
    height   :      2px;
  background-color: #3498db;
   transition: width 0.3s ease;
}

.nav-links a:hover::after {

	    width: 100%;}

.burger-menu {
    display: none;
	flex-direction: column;
   cursor: pointer;
         gap: 5px;
}

.burger-line {
   		 width: 25px;
  height: 3px;
  background-color: #2c3e50;
    transition: all 0.3s ease;
  border-radius: 2px;
     }

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);


}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero
	{
    max-width: 1200px;

	    margin: 0 auto;

	   padding :      60px 20px;

	   display: grid;

			grid-template-columns: 1fr 1fr;

	    gap: 40px;

	    align-items:    center;
}


.hero-content h1     {
  font-size: 3.5rem;
  color: #1a252f;
  margin-bottom: 20px;
   line-height: 1.2;
}

.hero-content p {
   font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.cta-button {
    transition: all 0.3s ease;
   border: none;
    font-weight: 600;
    background-color: #3498db;
         border-radius: 5px;
    padding: 15px 40px;
    display: inline-block;
  text-decoration: none;
	color    : white;
  cursor: pointer;
}

.cta-button:hover {
         background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.hero-image img		{
    width: 100%;
  height: auto;
       border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-section {
  background-color: #ecf0f1;
  padding: 60px 20px;
  margin: 40px 0;
}

.intro-container {
	max-width: 1200px;
  margin: 0 auto; 

}

.intro-section h2   {
    font-size: 2.5rem;
    margin-bottom: 20px;
   color: #1a252f;
   text-align:  center;
}

.intro-section > div > p {
   text-align: center;
	 font-size: 1.1rem;
    color: #555;
  margin-bottom: 40px;
   max-width: 800px;
         margin-left: auto;
  margin-right: auto;
}

.intro-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
	margin-top: 30px;
}

.intro-card 
 {
     background-color: white;
    padding:30px;
   border-radius   :      8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
	

}

.intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.intro-card h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.intro-card p {
    color: #666;
         line-height: 1.8;


}

.services-preview {
  max-width: 1200px;
   margin: 0 auto;
	 padding  :    60px 20px;
}

.services-container h2 {
  margin-bottom: 50px;
   font-size :    2.5rem;
   text-align: center;
  color: #1a252f;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: white;
    border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
	
}

.service-item img {
	 width: 100%;

    height: 220px;

    object-fit: cover;
}

.service-item h3 {
   font-size: 1.4rem;
  color: #2c3e50;
   padding: 20px 20px 10px;
}

.service-item p {
    color: #666;
  padding: 0 20px 20px;
	 line-height: 1.8;
  font-size :   0.95rem;
}

.webinar-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 60px 20px;
   color: white;
   margin: 60px 0;
}

.webinar-container
{
               max-width  :  1200px;
               margin: 0 auto;
} 

.webinar-section h2 {
      font-size    :      2.5rem;
	text-align:  center;
    margin-bottom: 15px;

}

.webinar-section > div > p {
   text-align: center;
	font-size   :      1.1rem;
    margin-bottom   :  40px;
    opacity: 0.95;
}

.events-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.event-card {
  background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
   border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.event-card:hover   {

	  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);}

.event-card h3 {
   margin-bottom: 12px;
         font-size: 1.3rem;
}

.event-card p {
        font-size:        0.95rem;
	margin-bottom: 15px;
  opacity: 0.9; 
	
}

.event-date {
      display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
               padding :  8px 15px;
         border-radius: 20px;
  font-size   :        0.85rem;
   font-weight: 600;
	
}

.cta-section {
  background-color: #2c3e50;
               color: white;
	padding: 80px 20px;
  text-align: center;
  margin: 60px 0;
}

.cta-content h2		{
    font-size: 2.5rem;
   margin-bottom :      20px;
}

.cta-content p     {
   opacity: 0.9;

   margin-bottom   : 30px;

    font-size: 1.2rem;
}

.cta-button-primary {
   display: inline-block;
    padding: 18px 50px;
    background-color: #3498db;
   color    :       white;
   text-decoration  :none;
   border-radius: 5px;
          font-weight: 600;
    font-size: 1.05rem;
   transition: all 0.3s ease;
    border: none;
       cursor: pointer;
}


.cta-button-primary:hover {
     background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.5);
}

.contact-section {
   max-width: 1200px;
    margin: 60px auto;
  padding: 60px 20px;
}

.contact-section h2 {
    font-size: 2.5rem;
  text-align: center;
	margin-bottom: 50px;
   color: #1a252f;
}

.contact-content {
      display: grid;
    grid-template-columns: 1fr 1fr;
   gap     : 40px;
}

.contact-info h3 {
	font-size: 1.3rem;
  color: #2c3e50;
  margin-top: 25px;
  margin-bottom: 10px;
}

.contact-info h3:first-child {
    margin-top: 0;
	}

.contact-info p {
	   color: #666;
  line-height  :     1.8;
  font-size: 1rem;
	
     }

.contact-form  
  {
   display: flex;
   flex-direction: column;
       gap: 20px;
}

.form-group {
         display: flex;
   flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	padding : 12px 15px;
   border:     2px solid #ecf0f1;
    border-radius    :   5px;
  font-family: inherit;
   font-size: 1rem;
  color: #2c3e50;
   transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color:      #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1); 
	
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.submit-button {
   background-color: #3498db;
		padding: 15px 30px;
                    border: none;
   font-size    :     1.05rem;
    border-radius: 5px;
	 transition: all 0.3s ease;
    cursor: pointer;
    color: white;
  font-weight: 600;
}

.submit-button:hover {
       background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
     } 

.footer {
	background-color: #1a1f2e;
  color: white;
	 padding: 50px 20px 20px;
          margin-top: 80px;
	}

.footer-container {
                    max-width: 1200px;
  margin :       0 auto;
}

.footer-logo {
    text-align: center;
    margin-bottom:     40px;
}

.footer-logo-img {
   height: 60px;
    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-section h4 {
        color: #3498db;
   font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom    :10px;
}

.footer-section a    {
       color: #bdc3c7;
  text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section a:hover
{
    color   :   #3498db;
}

.footer-section p {
	color: #bdc3c7;
 line-height: 1.8;
}

.footer-bottom {
    text-align: center;
	 padding-top: 30px;
		border-top: 1px solid #34495e;
    color: #95a5a6;
	 font-size: 0.9rem; 

}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        padding: 15px 20px;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-links a::after {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .intro-section h2,
    .services-container h2,
    .webinar-section h2,
    .cta-content h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .intro-grid,
    .services-grid,
    .events-list {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-item img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .cta-button,
    .cta-button-primary,
    .submit-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .intro-section h2,
    .services-container h2,
    .webinar-section h2,
    .cta-content h2,
    .contact-section h2 {
        font-size: 1.6rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
    }
}.services-hero {
     background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);

				color: white;

	   padding: 80px 20px;

	   text-align :       center;
	}


.services-hero-content h1
	{
                    font-size :   3rem;
  margin-bottom: 15px;
    font-weight: 700;
}

.services-hero-content p {
   font-size: 1.3rem;
   opacity: 0.95;
}

.services-detailed {
    max-width: 1200px;
   margin     :     0 auto;
   padding: 80px 20px;

}

.services-detailed-container {
   display: flex;
  flex-direction: column;
	gap: 80px;
}

.service-detailed-item {
     display: grid;
  grid-template-columns: 1fr 1fr;
      gap: 50px;
   align-items  : center;
}

.service-detailed-item.alternate
	{
               direction: rtl;
} 

.service-detailed-item.alternate > * {
   direction: ltr;
}

.service-img-wrapper {
   overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-img-wrapper img  {
   display   :block;
   height: auto;
    transition: transform 0.4s ease;
       width: 100%;
}

.service-img-wrapper:hover img {
  transform: scale(1.05);
}

.service-detail-content h2 {
  font-size    :       2.2rem;
   color: #1a252f;
  margin-bottom: 20px;

}

.service-detail-content p {
  color  :        #555;
    margin-bottom: 20px;
  line-height: 1.8;
	font-size    :    1rem;
	
}

.service-detail-content h3 {
	    color  :     #2c3e50;
  font-size: 1.2rem;
          margin-top: 25px;
   margin-bottom: 15px;
}

.service-list		{
   list-style: none;
  padding-left :     0;
    margin-bottom: 20px;
}

.service-list li {
    padding    :     8px 0; 
	    padding-left     :   25px; 
	  position   :        relative; 
		color: #555;


}

.service-list li::before {

  content: '✓';
  position: absolute;
  left: 0;
	 color  :   #3498db;
  font-weight: bold;


}

.service-duration {
  color: #666;
   font-size: 0.95rem;
                    margin-bottom: 20px;
}

.service-cta {
    display: inline-block;
    padding: 12px 30px;
	-moz-border-radius: 5px;
    background-color: #3498db;
    color: white;
    -webkit-border-radius    :5px;
   text-decoration: none;
   border-radius: 5px;
  font-weight: 600;
   transition: all 0.3s ease;
    margin-top: 15px;
}

.service-cta:hover     {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.webinar-offerings {
	background-color: #ecf0f1;
   padding: 60px 20px;
}

.webinar-container {
   max-width: 1200px;
   margin  :       0 auto;
}

.webinar-offerings h2 {
       font-size   :        2.5rem;
    text-align: center;
   margin-bottom: 15px;
  color     :  #1a252f;}

.webinar-offerings > div > p {
  text-align: center;
     font-size: 1.1rem;
    color   :#666;
         margin-bottom: 40px;
}

.webinar-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.webinar-box {


  background-color: white;
    padding  :   35px;
  border-radius     :      10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
                    transition: all 0.3s ease;
     }

.webinar-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.webinar-box h3   {
	font-size: 1.4rem;
        color: #2c3e50;
    margin-bottom: 15px;
}

.webinar-box p {
   color: #666;
  line-height    : 1.8;
    margin-bottom: 20px;
}

.webinar-freq {
   display: inline-block;
   background-color: #3498db;
	color: white;
    padding: 8px 15px;
  border-radius: 20px;
    font-size: 0.85rem;
   font-weight: 600;
}

.pricing-section {
   max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.pricing-container h2 {
   font-size: 2.5rem;
   text-align: center;
    margin-bottom: 15px;
	color: #1a252f;
}

.pricing-container > p {
   margin-bottom: 50px;
  color: #666;
  font-size: 1.1rem;
       text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
   margin-bottom: 50px;
}

.pricing-card {
    background-color: white;
   border: 2px solid #ecf0f1;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
    transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {

	  transform: translateY(-8px);
   border-color   :   #3498db;
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.pricing-card.featured {
  border-color: #3498db;
  box-shadow: 0 5px 20px rgba(52, 152, 219, 0.2);
  transform: scale(1.05);
}

.featured-badge {
      position: absolute;
	top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color :#3498db;
  color: white;
   padding: 8px 20px;
   border-radius   :      20px;
	 font-size: 0.85rem;
          font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.6rem;
  color   :#2c3e50;
       margin-bottom: 15px;
    margin-top: 10px;
}

.price {

	  font-size: 2.5rem;

    color   :    #3498db;

   font-weight: 700;

   margin: 15px 0;

}



.price-period    {
			color: #999;
    font-size: 0.95rem;
    margin-bottom    : 30px;
	}

.pricing-features {
  list-style :  none;
    margin: 30px 0;
  text-align    :left; 

}

.pricing-features li {
   padding: 12px 0;
         color: #666;
    border-bottom: 1px solid #f0f0f0;
   font-size: 0.95rem;
}

.pricing-features li:last-child  {
    border-bottom: none;}

.pricing-cta {


                    display: inline-block;
    padding: 12px 40px;
  background-color: #ecf0f1;
   color: #2c3e50;
   text-decoration: none;
		 border-radius: 5px;
  font-weight: 600;
    transition: all 0.3s ease;
	 margin-top: 20px;
   width: 100%;
   box-sizing: border-box;

}

.pricing-cta:hover {
		background-color: #3498db;
   color: white;
  transform: translateY(-2px);

}

.pricing-cta.premium {
    background-color: #3498db;
  color: white;
}

.pricing-cta.premium:hover {


   background-color: #2980b9;
}

.comparison-section 
 {

	       background-color: #f8f9fa;
   padding: 60px 20px;
   margin: 40px 0;


}

.comparison-container {
   max-width: 1200px;
	margin: 0 auto;
}

.comparison-section h2 {
  font-size     :  2.5rem; 
   text-align: center; 
   margin-bottom  :     50px; 
  color: #1a252f;
}

.comparison-table {
  overflow-x: auto;
}

.comparison-table table {
      width: 100%;
    border-collapse: collapse;
   background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	 border-radius: 8px;
	 overflow: hidden;
}

.comparison-table th     {
  background-color: #2c3e50;
               color: white;
  padding: 20px;
  text-align: left;
  font-weight    :      600;
}

.comparison-table td {
   padding: 18px 20px;
    border-bottom: 1px solid #ecf0f1;
   color: #555;
}

.comparison-table tbody tr:hover {
	          background-color: #f8f9fa;}

.comparison-table tbody tr:last-child td {
   border-bottom: none; 
	
}

.faq-section {
    max-width: 1000px;
 margin: 0 auto;
  padding: 80px 20px;
	
}

.faq-container h2 {
   font-size: 2.5rem;
   text-align: center;
    margin-bottom: 50px;
    color: #1a252f;

}

.faq-items {
    grid-template-columns    :1fr;
  gap: 20px;
  display: grid;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
 overflow: hidden;
}

.faq-question {
   padding: 25px;
  background-color: #f8f9fa;
    margin: 0;
    font-size:   1.1rem;
    color   :#2c3e50;
   cursor: pointer;
    user-select: none;
   transition:     all 0.3s ease;
   display: flex;
  justify-content: space-between;
  align-items :   center;
}

.faq-question:hover {

	   background-color: #ecf0f1;
}

.faq-question::after {
  content: '+';
   font-size: 1.5rem;
   font-weight     :   bold;
   color: #3498db;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  background-color: #ecf0f1;
}

.faq-item.active .faq-question::after {
  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: 25px;
   color:#666;
  line-height : 1.8;
  margin : 0; 
	
}

.cta-final {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
	padding: 80px 20px;
   text-align: center;
}

.cta-final-content h2 {
   font-size: 2.5rem;
   margin-bottom: 20px;
}

.cta-final-content p {
    font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-final-button   {
  display: inline-block; 
   padding: 18px 50px; 
          background-color: white; 
       color  :      #667eea; 
   text-decoration  :        none; 
	 border-radius: 5px; 
   font-weight: 600; 
   font-size: 1.05rem; 
   transition   : all 0.3s ease;
}



.cta-final-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.thank-you-section {
        min-height: 70vh;
    display: flex;
    align-items: center;
	 justify-content: center;
   padding:   60px 20px;
  background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
}

.thank-you-container     {
    width: 100%;
   max-width: 600px;
}

.thank-you-card {
    background-color: white;
  border-radius: 12px;
    padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	 text-align: center;
}

.success-icon {
  display: flex;
   margin-bottom: 30px;
     color: #2ecc71;
  justify-content: center;
}

.success-icon svg {
  stroke: #2ecc71;
    stroke-linecap: round;
    stroke-linejoin: round;
   animation: scaleIn 0.5s ease; 
	
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thank-you-card h1 {

	    font-size: 2.5rem;
  color: #1a252f;
   margin-bottom    :       10px;
     }

.thank-you-subtitle {
    font-size: 1.2rem;
    color: #3498db;
    margin-bottom: 30px;
  font-weight: 600;
}


.thank-you-content
{
	color   :       #666;

	    line-height: 1.8;

	        margin: 30px 0;

	    font-size: 0.95rem;
}

.thank-you-content p {
   margin-bottom: 15px;
}

.next-steps {
   background-color: #f8f9fa;
  padding:25px;
	border-radius: 8px;
   margin: 30px 0;
  text-align:        left;
}

.next-steps h2 {
   font-size: 1.3rem;
   color    :    #2c3e50;
   margin-bottom: 15px;
       text-align :center;
}

.steps-list

{
  list-style: decimal; 
    margin-left: 20px; 
   color: #666;
}

.steps-list li {
	margin-bottom :    10px;
  line-height: 1.6;
}

.contact-info-box {
   background-color  :#ecf0f1;
   padding: 25px;
  border-radius: 8px;
	 margin: 30px 0;

}

.contact-info-box h3 {
   color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info-box p {

	  color: #555;
    margin-bottom: 8px;


}

.contact-phone,
.contact-address {
   font-size: 0.95rem; 

}

.thank-you-buttons {
      display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 15px;
	 margin-top: 30px;


}

.button-home,
.button-services {
   padding: 15px 25px;
   text-decoration: none;
  border-radius: 5px;
	font-weight     : 600;
    transition    :     all 0.3s ease;
  display :      inline-block;
}

.button-home {
          background-color: #3498db;
	color: white;
}

.button-home:hover {
    background-color: #2980b9;
  transform: translateY(-2px);
}

.button-services
{
   background-color: #ecf0f1;
        color    :   #2c3e50;
}

.button-services:hover {

	  background-color: #3498db;
 color: white;
	}

.what-happens-next {
   max-width: 1200px;
	 margin: 0 auto;
        padding: 60px 20px;
}

.what-happens-next h2 {
    font-size: 2.2rem;
    text-align: center;
   margin-bottom: 50px;
    color: #1a252f;
}

.what-happens-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
}

.what-happens-item {
    text-align: center;
}

.step-number {
  display: inline-flex;
   align-items: center;
   justify-content: center;
    width: 60px;
   height: 60px;
         background-color: #3498db;
  color: white;
   border-radius: 50%;
	font-size: 1.8rem;
    font-weight: 700;
  margin-bottom: 20px;
}

.what-happens-item h3 {
    font-size     :1.3rem;
	 color: #2c3e50;
   margin-bottom: 12px;
}

.what-happens-item p {
   color: #666; 
	    line-height: 1.6;
}

.services-reminder {


  background-color: #ecf0f1;
   padding: 60px 20px; 
	
     }

.services-reminder-container		{
  max-width: 1200px;
        margin: 0 auto;
  text-align: center;
}

.services-reminder-container h2 {
	    color: #1a252f;
    margin-bottom: 15px;
	font-size: 2.2rem;
     }

.services-reminder-container > p {
  font-size: 1.1rem;
    color: #666;
   margin-bottom: 40px;
}

.services-quick-links {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap  :    20px;
	
}

.quick-link {


  padding: 18px 25px;
    background-color: white;
   color   :       #3498db;
   text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
    transition     :  all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	}

.quick-link:hover {
   background-color: #3498db;
   color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detailed-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detailed-item.alternate {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .thank-you-buttons {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .cta-final-content h2 {
        font-size: 2rem;
    }

    .thank-you-card {
        padding: 35px 25px;
    }

    .thank-you-card h1 {
        font-size: 2rem;
    }
}@media (max-width: 480px) {
    .services-hero {
        padding: 50px 15px;
    }

    .services-hero-content h1 {
        font-size: 1.6rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .what-happens-grid {
        grid-template-columns: 1fr;
    }

    .services-quick-links {
        grid-template-columns: 1fr;
    }

    .thank-you-card {
        padding: 25px 15px;
    }

    .success-icon svg {
        width: 60px;
        height: 60px;
    }

    .thank-you-card h1 {
        font-size: 1.6rem;
    }

    .next-steps {
        padding: 15px;
    }

    .steps-list {
        margin-left: 15px;
    }
}.policySection {
     padding: 80px 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ecf0f1 100%);
                    min-height: 80vh;
}

.policyContainer {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
   background-color: white;
    padding: 50px 40px;
   border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
  font-size     :   3rem; 
   color: #1a252f; 
  margin-bottom: 40px; 
  font-weight: 700; 
	line-height: 1.2;
	
}  

.policyContainer h2 {
                    font-size: 1.8rem;
   color: #2c3e50;
         margin-bottom: 20px;
  margin-top: 35px;
  font-weight: 600;
  border-left     :  4px solid #3498db;
  padding-left: 15px;
}

.policyContainer h2:first-of-type {
	 margin-top: 0;
}

.policyContainer p {
                    color: #555;
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 1rem;
  text-align: justify;
}

.policyContainer p:last-child {
       margin-bottom: 0;
}

.policyContainer a {
         color: #3498db;
   text-decoration: none;
                    transition     : color 0.3s ease;
}

.policyContainer a:hover {
	color  :       #2980b9;
    text-decoration: underline;
}

.policyContainer strong {
  color: #2c3e50;
  font-weight: 600;
}

.policyContainer ul,
.policyContainer ol {

				color: #555;
         margin  :      15px 0;
  padding-left: 25px;
	}

.policyContainer li  {
    margin-bottom: 10px;
    line-height: 1.7;
}



.policyContainer > section     {
   margin-bottom: 30px;
	padding-bottom: 30px;
    border-bottom: 1px solid #ecf0f1; 

}

.policyContainer > section:last-child {
   border-bottom: none;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 35px 25px;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        margin-top: 25px;
        padding-left: 12px;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 15px;
        text-align: left;
    }

    .policyContainer ul,
    .policyContainer ol {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 0.75rem;
    }

    .policyContainer {
        padding: 25px 15px;
        border-radius: 5px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 20px;
        margin-bottom: 12px;
        padding-left: 10px;
        border-left-width: 3px;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .policyContainer ul,
    .policyContainer ol {
        padding-left: 18px;
        font-size: 0.9rem;
    }

    .policyContainer li {
        margin-bottom: 8px;
        line-height: 1.6;
    }
}

@media print {
    .policySection {
        background: white;
        padding: 0;
    }

    .policyContainer {
        box-shadow: none;
        padding: 0;
        max-width: 100%;
    }

    .policyContainer h1,
    .policyContainer h2 {
        color: #000;
        page-break-after: avoid;
    }

    .policyContainer p {
        color: #000;
    }
}