* {
  margin: 0;
    padding: 0;
  box-sizing   : border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-bg: #ecf0f1;
    --dark-bg: #1a252f;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #bdc3c7;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body    {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
   line-height: 1.6;
     }

.navbar-main {
  background: var(--primary-color);
  padding: 1rem 2rem;
   position    :        sticky;
   top: 0;
	 z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    max-width: 1200px;
 margin: 0 auto;
   display: flex;
                    justify-content: space-between;
	align-items: center;
}

.logo-section  
  {
  flex-shrink: 0;
}

.logo-img  
  {

	    height    :  74px;
	 width:      auto;
  filter: brightness(0) invert(1);
   display: block;
	}

.nav-menu {
  display   :   flex;
    gap :       2.5rem;
  align-items: center;
}
	/* Browser compatibility */

.nav-link  
  {

  color: var(--white);
  text-decoration: none;
   font-weight: 500;
  transition: var(--transition);
    padding: 0.5rem 1rem;
  border-radius: 4px;
  position: relative;


}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
}

.burger-btn {
    display     :   none;
	 flex-direction: column;
    background: none;
  border: none;
    cursor    :   pointer;
    padding :    0.5rem;
}

.burger-line  {
  width   :    25px;
  height  :     3px;
  background: var(--white);
                    margin  :    5px 0;
  transition: var(--transition);
    border-radius: 2px;
}

.hero-section {
    display: grid;
   grid-template-columns: 1fr 1fr;
    align-items: center;
  gap: 3rem;
  padding     :    4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  max-width: 1200px;
   margin: 0 auto;
}  

.hero-content {
	 z-index: 10;


}

.hero-content h1 {
  font-size: 3rem;
        font-weight: 700;
	 margin-bottom: 1.5rem;
  color: var(--primary-color);
    line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
   margin-bottom: 2rem;
}

.hero-image   {
  position: relative;
   height: 100%;
   min-height    :       400px;
}

.hero-image img	{
    width: 100%;
    height   :   100%;
   object-fit: cover;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cta-btn, .primary-btn, .secondary-btn 
 {

     padding: 1rem 2.5rem; 
    border: none; 
   border-radius: 8px; 
      font-weight: 600; 
    cursor: pointer; 
  transition: var(--transition); 
  font-size    :    1rem; 
   text-transform: uppercase; 
    letter-spacing: 0.5px;
}

.primary-btn, .cta-btn {
  background: var(--secondary-color);

  color: var(--white);
}

.primary-btn:hover, .cta-btn:hover {
   background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.secondary-btn
{
    background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.secondary-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* State modifiers */

.benefits-section


{

  padding   :  4rem 2rem;
  background: var(--white);
    max-width  :1200px;
  margin: 0 auto;
	}

.benefits-section h2 {
	font-size: 2.5rem;
  text-align: center;
 margin-bottom: 3rem;
  color: var(--primary-color);


}

.benefits-grid {
    display :  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap  :2rem;
}

.benefit-card {
  background: var(--light-bg);
	padding: 2rem;
  border-radius: 12px;
    text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}  

.benefit-card:hover  
  {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  background: var(--white);
}

.benefit-icon {
  margin-bottom: 1.5rem;
   height: 60px;
   display: flex;
   align-items: center;
               justify-content: center;
}

.benefit-icon img {
	width: 60px;
    height: 60px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.benefit-card h3 {
  font-size: 1.5rem;
   margin-bottom  : 1rem;
  color: var(--primary-color);
}

.benefit-card p {


  color: var(--text-light);
    line-height :1.8;
}

.training-section {
   padding: 4rem 2rem;
  background: var(--light-bg);
					max-width: 1200px;
  margin   :0 auto;
}

.training-content    {
	 display: grid;

    grid-template-columns: 1fr 1fr;

  gap    :  3rem;

   align-items: center;
}

.training-content img {
    width: 100%;
	 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.training-text h2

{
    font-size: 2.2rem;
	margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.training-text p {
  color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.training-features {
	 list-style: none;
   margin-top: 1.5rem;
}

.training-features li {
					padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-dark);
}

/* Custom modifications */

.training-features li:before {
  content: "✓";
   position: absolute;
  left: 0;
  color: var(--secondary-color);
         font-weight: bold;
  font-size: 1.3rem;
}

.webinar-section {
   padding: 4rem 2rem;
     background: var(--white);
           max-width: 1200px;
       margin    :     0 auto;
     text-align: center;
}

.webinar-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  color: var(--primary-color);
}

.webinar-section > p {
  font-size :1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}


.webinar-grid	{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.webinar-card {
  background: var(--white);
  border: 1px solid var(--border-color);
    border-radius: 12px;
   overflow: hidden;
  transition: var(--transition);
   display: flex;
	 flex-direction: column;
}

.webinar-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}  

.webinar-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Production ready */

.webinar-card h3 {
    font-size: 1.4rem;
  padding: 1.5rem 1.5rem 0;
  color: var(--primary-color);
}

.webinar-card p {
    flex-grow: 1;
         padding: 1rem 1.5rem;
     color: var(--text-light);
}

/* Browser compatibility */

.webinar-card .secondary-btn	{
   margin: 1rem 1.5rem 1.5rem;
  width: calc(100% - 3rem);
}

.conference-section {
	padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
    max-width: 1200px;
	margin: 0 auto;
}

.conference-section h2 {
   font-size: 2.5rem;
    margin-bottom: 2rem;
  text-align: center;
  color: var(--white);
}

.conference-content {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
}

.conference-content img {
                  width: 100%;
    border-radius:        12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.conference-text p {
	font-size: 1.1rem;

	    margin-bottom: 1.5rem;

	   line-height: 1.8;

	       opacity: 0.95;
}

/* Framework override */


.conference-text h3 {
    font-size: 1.5rem;
       margin-bottom: 1rem;
     color: var(--white);
}

.conference-text ul {
		list-style: none;
    margin-bottom: 2rem;
}

.conference-text li {
          padding: 0.75rem 0;
   padding-left    :    2rem;
  position: relative;
}

.conference-text li:before {
     content: "▸";
    position: absolute;
    left: 0;
  color: #fff;
    font-size: 1.2rem;


}

.coaching-section {
    padding:    4rem 2rem;
  background: var(--light-bg);
	max-width: 1200px;
        margin: 0 auto;
    text-align :  center;
}

.coaching-section h2 {


	 font-size: 2.5rem;
   margin-bottom  :        1rem;
  color: var(--primary-color);


}

.coaching-section > p {
       font-size: 1.1rem;
  color: var(--text-light);
   margin-bottom: 3rem;
	}

.coaching-grid {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
} 

.coaching-card		{
  background: var(--white);
    padding: 2.5rem;
	border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.coaching-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
  transform: translateY(-5px);
}

.coaching-card h3 {
   font-size: 1.4rem;
               margin-bottom:   1rem;
  color: var(--primary-color);
}

.coaching-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.coaching-price {
  font-size: 2rem;
    font-weight     :700;
  color: var(--secondary-color);
}

.cta-final-section {
	padding: 4rem 2rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: var(--white);
       text-align: center;
     max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
   margin-bottom: 4rem;
}

.cta-final-section h2 {
  font-size: 2.5rem;
    margin-bottom: 1rem;
  color: var(--white);
}

/* Component styles */

.cta-final-section p {
  font-size: 1.2rem;
   margin-bottom: 2rem;
   opacity: 0.95;
} 

.cta-final-section .primary-btn

{
  background: var(--white);
     color: #f5576c;
}

.cta-final-section .primary-btn:hover {
  background: var(--light-bg);
  color: #f5576c;
}



.contact-section {
          padding: 4rem 2rem;
  background: var(--white);
               max-width  :  1200px;
  margin: 0 auto;
}

.contact-section h2 {
   font-size   :   2.5rem;
   text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.contact-wrapper {
    display: grid;
  grid-template-columns   :2fr 1fr;
  gap     :  3rem;
}

.contact-form {
   flex-direction  :  column;
  display: flex;
    gap: 1.5rem;
}

.form-group {
  display  :     flex;
  flex-direction: column;
}

.form-group label {
	font-weight: 600;
    margin-bottom: 0.5rem;
  color: var(--primary-color);
} 

.form-group input,
.form-group select,
.form-group textarea {
   padding :       0.75rem;

	  border: 2px solid var(--border-color);

	    border-radius: 8px;

	        font-family: inherit;

	    font-size: 1rem;

	  transition: var(--transition);

	  color: var(--text-dark);
}



.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Framework override */
/* Vendor-specific */

.contact-form button {
  margin-top: 1rem;
}

.contact-info {
  background: var(--light-bg);
   padding: 2rem;
    border-radius: 12px;
	height: fit-content;
}

.contact-info h3 {
    font-size: 1.5rem;
  margin-bottom  :       1.5rem;
  color: var(--primary-color);
}


.contact-info p {
   margin-bottom: 1.5rem;
  color: var(--text-dark);
    line-height: 1.8;

}

.contact-info strong {
  color: var(--primary-color);
   display: block;
   margin-top: 1rem;
}

.footer-main {


  background: var(--dark-bg);
  color: var(--white);
    padding: 3rem 2rem 1rem;
	

}

.footer-content {
   max-width: 1200px;
	margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4  {
   font-size: 1.2rem;
    margin-bottom: 1rem;
  color: var(--secondary-color); 
	

}

.footer-section ul {

	list-style: none;
	}

.footer-section ul li {
   margin-bottom: 0.75rem;
}

.footer-section ul li a {
     color: #ecf0f1;
   text-decoration: none;
  transition: var(--transition);

}

.footer-section ul li a:hover {
     color: var(--secondary-color);

}

.logo-footer {
	 display :    flex;
   align-items    :    flex-start;
}

.footer-logo {
     height: 96px;

	    width  :        auto;

	  filter: brightness(0) invert(1);

	  display: block;
}

.footer-bottom {
   text-align: center;
     padding-top:        2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
                       color   :   #bdc3c7;
     max-width: 1200px;
   	margin  :     0 auto;
}

.cookie-alert {
  position    :    fixed;
    bottom: 0;
      left: 0;
   right: 0;
  background: var(--primary-color);
  color: var(--white);
    padding: 1.5rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
   z-index: 999;
 display: flex;
  justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content {
  flex    :   1;
}

.cookie-content p {
         margin: 0;
   font-size: 0.95rem;
}

/* Performance critical */

.cookie-buttons  
  {
  gap: 1rem;
    flex-shrink: 0;
  display: flex;

}  

.cookie-btn {
     padding: 0.6rem 1.2rem;
	 border: none;
   border-radius: 6px;
   cursor: pointer;
	 font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;}

.accept-btn {

	  background: var(--secondary-color);
  color: var(--white);}

.accept-btn:hover {
   background: #2980b9;
}

.reject-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}  

.reject-btn:hover {
  background: rgba(255, 255, 255, 0.1);
} 

.settings-btn	{
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.settings-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}
	/* Vendor-specific */
.cookie-alert.hidden {
    display:       none;
}

.cookie-modal {


 position: fixed;
  top: 0;
	left: 0;
   right: 0;
   bottom: 0;
  background: rgba(0, 0, 0, 0.5);
	display: flex;
  align-items: center;
   justify-content: center;
               z-index: 2000;
     }

.cookie-modal.hidden {
	display: none;
}

.cookie-modal-content {
  background: var(--white);

  padding :     2rem;

    border-radius: 12px;

    max-width   :500px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}  

.cookie-modal-content h3 {
   font-size: 1.5rem;
    margin-bottom: 1rem;
  color: var(--primary-color);
}

.cookie-modal-content p {
  color: var(--text-light);

	   margin-bottom: 1.5rem;
}

.cookie-options {
       margin     :  1.5rem 0;
	 display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-options label {

   display: flex;
    align-items: center;
    cursor: pointer;
  color: var(--text-dark);}

.cookie-options input[type="checkbox"] {
	  margin-right: 1rem;
   cursor: pointer;
  width     :18px;
   height: 18px;
}

.cookie-options input[type="checkbox"]:disabled  {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-modal-buttons  {
    display: flex;
  gap: 1rem;
  margin-top: 2rem;
	}
/* Component styles */
.cookie-modal-buttons .accept-btn,
.cookie-modal-buttons .reject-btn {

	   padding: 0.8rem;
  flex: 1;

}
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        border: none;
        border-radius: 0;
    }

    .burger-line.active:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .burger-line.active:nth-child(2) {
        opacity: 0;
    }

    .burger-line.active:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -8px);
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-image {
        min-height: 250px;
    }

    .benefits-section,
    .training-section,
    .webinar-section,
    .coaching-section,
    .contact-section {
        padding: 2rem 1rem;
    }

    .benefits-section h2,
    .webinar-section h2,
    .coaching-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .training-content,
    .conference-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .cookie-alert {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .benefits-section h2,
    .webinar-section h2,
    .coaching-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .benefits-grid,
    .webinar-grid,
    .coaching-grid {
        grid-template-columns: 1fr;
    }

    .cta-btn, .primary-btn, .secondary-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 50px;
    }

    .footer-logo {
        height: 60px;
    }
}.services-hero {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  max-width     :     1200px;
  margin: 0 auto;
	}

.services-hero-content h1 {
    font-size: 2.8rem;
	margin-bottom: 1rem;
	font-weight : 700;
}

.services-hero-content p {
  font-size  :    1.3rem;
	opacity: 0.95;
}

.services-grid-section {
    max-width    :   1200px;
        margin : 0 auto;
   padding: 4rem 2rem;
}

.services-grid-section h2 {
   font-size   :  2.5rem;
      text-align: center;
     margin-bottom: 3rem;
     color: var(--primary-color);
}

.services-container     {
  display: grid;
	    grid-template-columns: 1fr;
		gap: 2.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-color);
   border-radius:     12px;
    overflow: hidden;
   display: grid;
	grid-template-columns: 1fr 1fr;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover
{

	  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); 
	  transform: translateY(-5px); 
	  border-color: var(--secondary-color); 



}

.service-card img {
	  width: 100%;
        height: 100%;
   object-fit: cover;
    min-height: 300px;
	}  

.service-content {
   padding: 2.5rem;
    display: flex;
  flex-direction: column;
  justify-content: center;
	
}

.service-content h3 {
	font-size: 1.8rem;
  color: var(--primary-color);
	 margin-bottom: 1rem;
}

.service-content p {
  color: var(--text-light);
	font-size    :  1.05rem;
    margin-bottom    :      1.5rem;
	 line-height: 1.8;
}

.service-list {
    list-style  :  none;

  margin: 1.5rem 0;
}

.service-list li {
    padding: 0.75rem 0;
   padding-left: 2rem;
   position  :     relative;
  color: var(--text-dark);
}

.service-list li:before {
  content: "✓";
   position: absolute;
	left: 0;
  color: var(--secondary-color);
     font-weight: bold;
   font-size: 1.3rem;
}

.service-duration {
  background: var(--light-bg);
    padding: 0.75rem 1rem;
    border-radius    :6px;
  color: var(--primary-color);
    font-weight: 600;
   margin-top: auto;
  display: inline-block;
}

.pricing-section {
  padding: 4rem 2rem;
  background: var(--light-bg);
  max-width: 1200px;
    margin: 0 auto;
}

.pricing-section h2 {
  font-size: 2.5rem;
  text-align     :  center;
  margin-bottom :      3rem;
  color: var(--primary-color);
}

.pricing-grid

{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; 

}

.pricing-card {
  background: var(--white);
					padding: 2rem;
   border-radius  : 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
   display: flex;
    flex-direction: column; 
	
}  

.pricing-card:hover {
  border-color: var(--secondary-color);

  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);

  transform: translateY(-8px);
}

.pricing-card.featured {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(52, 152, 219, 0.02) 100%);
  transform: scale(1.05);
}

.pricing-card.featured:hover     {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
    left: 20px;
  background: var(--secondary-color);
  color: var(--white);
    padding: 0.5rem 1rem;
   border-radius: 4px;
	 font-weight: 700;
    font-size: 0.85rem;
} 

.pricing-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
          margin-bottom :0.5rem;
}

.pricing-card > p

{
     color: var(--text-light);
   margin-bottom: 1.5rem;
  font-size :      0.95rem; 
	

}


.pricing-value {
    font-size: 2.5rem;
  color: var(--secondary-color);
	font-weight     :      700;
    margin-bottom: 1.5rem;}

.pricing-features 
 {
  list-style  :  none;
   flex-grow: 1;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text-dark);
	font-size: 0.95rem;
   padding-left: 1.5rem;
  position: relative;
}

.pricing-features li:before {
     content: "✓";
  position: absolute;
   left: 0;
  color: var(--secondary-color);
  font-weight     :    bold;
}

.comparison-section {
   padding: 4rem 2rem;
   max-width  :  1200px;
  margin: 0 auto;
}

.comparison-section h2   {
    font-size: 2.5rem;
   text-align   :  center;
  margin-bottom: 3rem;
  color: var(--primary-color); 
	
}

.comparison-table {
  overflow-x: auto;
	
}

.comparison-table table  
  {

    width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
          overflow: hidden;
	} 

.comparison-table thead {
  background: var(--primary-color);
  color: var(--white);
}

.comparison-table th  {
    padding: 1.5rem;
    text-align: center;
  font-weight: 600;
}

.comparison-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
    text-align: center; 

}

.comparison-table td:first-child {
    text-align :left;
  color: var(--primary-color);
   font-weight: 600;
  background: var(--light-bg);
}

.comparison-table tbody tr:last-child td {
   border-bottom: none; 
	
}

.comparison-table .check {
  color: var(--secondary-color);
    font-weight: 700;
   font-size: 1.3rem;
}  

.comparison-table .cross {
          color: #bdc3c7;


}

.testimonials-section {
   padding :      4rem 2rem;
  background: var(--light-bg);
	max-width :       1200px;
    margin :   0 auto;
}


.testimonials-section h2		{
         font-size  :    2.5rem;
	  text-align    :       center;
	    margin-bottom: 3rem;
	  color: var(--primary-color);
}  

.testimonials-grid {
	 display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	  gap    :   2rem;

}

.testimonial-card {
  background: var(--white);
   padding: 2rem;
    border-radius:    12px;
  border-left: 4px solid var(--secondary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
} 

.testimonial-card p {

  color: var(--text-light);
    font-size: 1.05rem;
   margin-bottom: 1.5rem;
   font-style: italic;
  line-height  :   1.8;


}

.testimonial-author	{
  display: flex;
   flex-direction: column;
	}



.testimonial-author strong {
  color: var(--primary-color);
    font-size     :  1.05rem;

}

.testimonial-author span {
  color: var(--text-light);
   font-size: 0.9rem;
   margin-top: 0.25rem;
}

.faq-section {
  padding: 4rem 2rem;
  max-width: 1200px;
    margin: 0 auto;
	
}

.faq-section h2{
  font-size: 2.5rem; 
    text-align: center; 
	margin-bottom: 3rem; 
  color: var(--primary-color);
}

.faq-container {
    display: grid;
   gap   :1rem;
    max-width: 800px;
          margin    :   0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
    overflow: hidden;
  background: var(--white);

}

.faq-button		{
  width   :   100%;
    padding: 1.5rem;
  background: var(--white);
  border: none;
   cursor: pointer;
	display: flex;
    justify-content: space-between;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-button:hover {

  background: var(--light-bg);}

.faq-button h3 {

    margin: 0;
  color: var(--primary-color);
   font-size: 1.1rem;
  text-align: left;
   font-weight: 600;

}

.faq-icon {
	 font-size :       1.5rem;
  color: var(--secondary-color);
	font-weight: bold;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
    margin-left     :1rem;
}


.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
   overflow:        hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--light-bg);
}

.faq-item.active .faq-answer {
	 max-height: 500px; 

}

.faq-answer p		{

    padding: 0 1.5rem 1.5rem 1.5rem; 
	  color: var(--text-light); 
	   line-height: 1.8; 
	   margin: 1.5rem 0 0 0;
     }

.services-cta {
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: var(--white);
    text-align  :   center;
          max-width: 1200px;
               margin    :       0 auto;
    border-radius: 12px;
  margin-bottom: 4rem;
}

.services-cta h2 {
   font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
} 

.services-cta p    {
	font-size: 1.2rem;
                    margin-bottom: 2rem;
  opacity: 0.95;
}

.services-cta .primary-btn	{
	  background: var(--white);
    color: #f5576c;
	}

.services-cta .primary-btn:hover {
  background: var(--light-bg);
}

.thankyou-hero {
  padding: 4rem 2rem;
    max-width:   900px;
  margin: 0 auto;
					text-align     :        center;
  min-height: 600px;
	display: flex;
	 align-items: center;
}

.thankyou-container {
   width: 100%;
}

.success-icon {
    margin-bottom: 2rem;
      height: 100px;
    display     :      flex;
   align-items: center;
	justify-content    :       center;


}

.success-icon img {
    width: 100px;
    height: 100px;
  filter: drop-shadow(0 5px 15px rgba(52, 152, 219, 0.3));
}

.thankyou-hero h1 {
  font-size: 3rem;
  color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.thankyou-subtitle {
       font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom    :  2rem;
}

.thankyou-content {
  background: var(--light-bg);
  padding: 3rem;
   border-radius: 12px;
  margin-top    :    2rem;
}

.thankyou-content p {
   font-size: 1.1rem;
  color: var(--text-dark);
          margin-bottom: 2rem;
    line-height  :       1.8;
}

.next-steps {
	 text-align    :left;
        margin     : 3rem 0;
  background: var(--white);
   padding: 2rem;
	border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
}

.next-steps h2 {
  color: var(--primary-color);
   margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.steps-list {
         list-style: none;
    display: grid;
    gap: 1.5rem;
}

.steps-list li {
   padding-left: 3rem;
    text-align   :  left;
  position: relative;
}

.steps-list li:before {

	  content: counter(step-counter);
  counter-increment: step-counter;
    position: absolute;
   left  :  0;
 top :     0;
   width: 2.5rem;
    height: 2.5rem;
  background: var(--secondary-color);
  color: var(--white);
          border-radius: 50%;
   display: flex;
          align-items: center;
         justify-content: center;
    font-weight: bold;
  font-size: 1.2rem;
	}

.steps-list {
    counter-reset: step-counter;
}

.steps-list li strong	{
     color: var(--primary-color);
	 display: block;
    font-size: 1.1rem;
                    margin-bottom     :   0.5rem;
     }

.steps-list li p {
  color: var(--text-light);
	  font-size: 1rem;
	    margin:  0;
}

.contact-details {
          text-align: left;
  background: var(--white);
   padding: 2rem;
   border-radius: 12px;
   margin: 2rem 0;
}



.contact-details h2 {
  color: var(--primary-color);
       margin-bottom: 1.5rem;
   	font-size   :        1.3rem;
}

.contact-details p {
	    margin-bottom: 1.5rem;
  color: var(--text-dark);
   line-height     :    1.8;
  font-size: 1rem;
}

.contact-details strong {
  color: var(--primary-color);
   display: block;
  margin-top: 0.5rem;
}

.faq-quick {
     text-align: left;

}

.faq-quick h2 {
  color: var(--primary-color);
    margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.faq-quick ul {
  list-style: none;
}

.faq-quick li
{
 margin-bottom: 1rem;
}

.faq-quick a {
  color: var(--secondary-color);
	text-decoration: none;
   font-weight   : 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
  display: inline-block;
  border-radius: 6px;
	
}

.faq-quick a:hover {
  background: rgba(52, 152, 219, 0.1);
        color: #2980b9;
}

.back-buttons {
    display: flex;
   gap   :       1rem;
   justify-content:       center;
	margin-top: 2rem;
  flex-wrap: wrap;
}

.back-buttons a {

         text-decoration: none;
	}

.why-choose-section {
    padding: 4rem 2rem;
  background: var(--white);
    max-width: 1200px;
    margin: 0 auto;


}

.why-choose-section h2 {
   font-size: 2.5rem;
   text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.why-grid  
  {
    display    :      grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
	text-align: center;
  padding:2rem;
  background: var(--light-bg);
       border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
     transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  background: var(--white);
	}

.why-number {
  width: 60px;
	height: 60px;
  background: var(--secondary-color);
  color: var(--white);
	border-radius    :    50%;
    display: flex;
   align-items: center;
   justify-content: center;
  font-size: 2rem;
    font-weight: bold;
               margin: 0 auto 1.5rem;
}

.why-card h3 {

	  color: var(--primary-color);
	font-size: 1.3rem;
  margin-bottom: 1rem; 

     }

.why-card p  
  {
  color: var(--text-light);
        line-height   :     1.8;
}@media (max-width: 768px) {
    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card img {
        min-height: 250px;
    }

    .service-content {
        padding: 2rem;
    }

    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: scale(1) translateY(-8px);
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .back-buttons {
        flex-direction: column;
    }

    .back-buttons a {
        width: 100%;
    }

    .next-steps,
    .contact-details {
        padding: 1.5rem;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-hero h1 {
        font-size: 2rem;
    }
}@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-grid-section h2,
    .pricing-section h2,
    .comparison-section h2,
    .testimonials-section h2,
    .faq-section h2 {
        font-size: 1.5rem;
    }

    .service-card {
        gap: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .faq-button {
        padding: 1rem;
    }

    .faq-button h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem 1rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .steps-list li {
        padding-left: 2.5rem;
    }
}.policySection {
  padding: 80px 2rem;
  background: #f8f9fa;
  min-height: calc(100vh - 400px);
}

.policyContainer {
    max-width: 800px;
	margin  :  0 auto;
	text-align: left;
}

.policyContainer h1 {
  font-size: 2.8rem;
   color: #2c3e50;
    margin-bottom: 2rem;
   font-weight: 700;
   text-align: center;
	}

.policyContainer h2 {
  font-size: 1.6rem;
	color: #2c3e50;
    margin-top: 2.5rem;
   margin-bottom: 1rem;
   font-weight: 700;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.75rem;
}

.policyContainer h2:first-of-type {
	    margin-top: 1rem;
	}

.policyContainer p {
  color    :#7f8c8d;
	margin-bottom: 1.5rem;
   line-height: 1.8;
  font-size:      1.05rem;
   text-align: justify;
}

.policyContainer strong {
      color: #2c3e50;
  font-weight: 600;


}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
        min-height: calc(100vh - 300px);
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
        min-height: calc(100vh - 250px);
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}