* {
   margin: 0;
	   padding: 0;
	  box-sizing: border-box;
}

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --accent-color: #fbbc04;
    --dark-bg: #0f1419;
    --light-bg: #ffffff;
    --text-dark: #202124;
    --text-light: #5f6368;
    --border-color: #dadce0;
    --hover-color: #f8f9fa;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  background-color: var(--light-bg);
    line-height: 1.6;
    font-size: 16px;
}

.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    padding: 1.2rem 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 2rem;
    display: flex;
    justify-content: space-between;
  align-items :        center;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
    max-height: 94px;
      width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
   display: flex;
    gap: 2.5rem;
 list-style: none;
}

.nav-link {
    color: #ffffff;
  text-decoration: none;
  font-weight: 500;
                    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 0.5rem;
}

.nav-link:hover,
.nav-link.active-nav {
	  color: var(--accent-color);}

.nav-link::after {


  content: '';
   position: absolute;
  width   :       0;
	 height   :2px;
  bottom: 0;
    left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;}

.nav-link:hover::after,
.nav-link.active-nav::after {
  width: 100%; 

}

.hamburger {
	display: none; 
   flex-direction: column; 
    cursor: pointer; 
   gap    :        0.4rem;
}

.hamburger.active {
   position: fixed; 

}

.bar {
    width :       25px;
	 height: 3px;
  background-color: #ffffff;
    border-radius: 3px;
   transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {

	  transform: rotate(-45deg) translate(-8px, 8px);
	
	}

.hamburger.active .bar:nth-child(2) {
      opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-8px, -8px);
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-container {
        padding: 0 1rem;
    }
}.hero {
         display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
    max-width: 1200px;
	margin: 0 auto;
   padding: 4rem 2rem;
  min-height: 600px;
}

.hero-content h1 {

  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--primary-color);
   margin-bottom: 1.5rem;
    line-height: 1.3;
	}

.hero-content p {
            font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
	}

.cta-button {
	display  :inline-block;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2d8659 100%);
    color: white;
   padding: 1rem 2.5rem;
  border-radius: 8px;
   text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 168, 83, 0.4); 
	
}

.hero-image {
  position: relative;
}

.hero-image img {
   width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.section-expertise {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.container-expertise h2 {
    font-size: 2.5rem;
  color: var(--primary-color);
   text-align: center;
    margin-bottom: 1rem;
}

.section-lead {
   text-align: center;
  color: var(--text-light);
  font-size : 1.1rem;
  margin-bottom: 3rem;
   max-width: 700px;
    margin-left: auto;
 margin-right: auto;
}

.expertise-grid {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
} 

.expertise-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
  border-left: 5px solid var(--secondary-color);
   transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.expertise-card:hover {

  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);}

.expertise-card h3 {
  color: var(--primary-color);
               margin-bottom: 1rem;
 font-size: 1.3rem;
}

.expertise-card p {
  color: var(--text-light);
    line-height: 1.8;
}

.section-workshop {
   max-width: 1200px; 
   margin: 0 auto; 
  padding: 5rem 2rem;
}

.workshop-content {
   display: grid;
   grid-template-columns  :  1fr 1fr;
	 gap: 4rem;
  align-items: center;
	
}

.workshop-text h2 {
  color: var(--primary-color);
    font-size: 2.2rem;
   margin-bottom: 1.5rem;
}

.workshop-text p {
  color: var(--text-light);

  font-size: 1rem;

   margin-bottom: 1.5rem;

  line-height: 1.8;
}


.feature-list {
    list-style: none;
      padding: 0;
}

.feature-list li {
   padding     :        0.8rem 0;
  padding-left: 2rem;
        position: relative;
  color: var(--text-dark);

}

.feature-list li:before {
  content: '✓';
    position   :    absolute;
   left :  0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.3rem;
}

.workshop-image img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .workshop-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}.section-ecommerce {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
   padding: 5rem 2rem;
   max-width: 1400px;
    margin: 0 auto;
}

.ecommerce-intro {
   text-align: center;
      margin-bottom   :3rem;
}

.ecommerce-intro h2 {
  color: var(--primary-color);
    font-size: 2.3rem;
       margin-bottom: 1rem;
}

.ecommerce-intro p {
  color: var(--text-light);
    max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.ecommerce-layout {
   display: grid;
         grid-template-columns     :      1fr 1fr;
  gap: 3rem;
    align-items: center;
}

.ecommerce-details h3 {


  color: var(--primary-color);
  font-size: 1.5rem;
   margin-bottom: 2rem; 
	
     }

.lessons-block {
    background: #ffffff;
   padding: 1.5rem;
  margin-bottom: 1.5rem;
	 border-radius: 10px;
  border-top: 4px solid var(--accent-color);
}

.lessons-block h4     {
     color: var(--primary-color);
  margin-bottom: 0.5rem;
	}

.lessons-block p {
  color: var(--text-light);
    font-size: 0.95rem;
}

.ecommerce-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .ecommerce-layout {
        grid-template-columns: 1fr;
    }
}
/* Vendor-specific */
.section-consultant {
    max-width: 1200px;
   margin: 0 auto;
	 padding   :      5rem 2rem;
}

.consultant-flex {
   display     :grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
       align-items:      center;
}

.consultant-text h2 {
  color: var(--primary-color);
  font-size : 2.2rem;
   margin-bottom: 1.5rem;
	
}

.consultant-text p {
  color: var(--text-light);
    margin-bottom     :   1.5rem;
     line-height: 1.8;
}

.benefit-list p
	{
        background: #f8f9fa;
  padding: 1.2rem;
    margin-bottom: 1rem;
   border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
  color: var(--text-dark);
}

/* Component styles */

.benefit-list strong {
  color: var(--primary-color);
}

.consultant-image img {
    width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

}
@media (max-width: 768px) {
    .consultant-flex {
        grid-template-columns: 1fr;
    }
}.section-webinar {
  background: #f8f9fa;
    padding: 5rem 2rem;
    max-width: 1200px;
  margin: 0 auto;
}

.section-webinar h2 {
	text-align: center;
  color: var(--primary-color);
   font-size: 2.5rem;
    margin-bottom: 1rem;
}

.webinar-intro {
   text-align: center;
  color: var(--text-light);
   max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

.webinar-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.webinar-card {
   background     :       #ffffff;
   padding  :   2rem;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.webinar-card:hover
{
  transform: translateY(-5px);

	  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.webinar-card h3	{
  color: var(--primary-color);
   margin-bottom: 1rem;
    font-size: 1.2rem;
}

.webinar-card p {

  color: var(--text-light);
  font-size: 0.95rem;
    line-height: 1.7;
}

.section-professional {
   	max-width: 1200px;
    margin: 0 auto;
  padding: 5rem 2rem;
}

.professional-reverse {
   display: grid;
       grid-template-columns: 1fr 1fr;
          gap: 4rem;
   align-items: center;
}

.professional-reverse {
    grid-template-columns: 1fr 1fr;
}

.professional-reverse .professional-image {
  order: -1;
}

.professional-content h2		{
  color: var(--primary-color);
          font-size: 2.2rem;
  margin-bottom   :  1.5rem;
}

.professional-content p
	{
  color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.training-modules {

	    margin-top: 2rem;
     }

.module-item {
    background: #f8f9fa;
   padding: 1.5rem;
 margin-bottom: 1rem;
  border-radius: 8px;
  border-left: 5px solid var(--accent-color);
  color: var(--text-dark);
	line-height: 1.7;
}

.professional-image img 
 {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .professional-reverse {
        grid-template-columns: 1fr;
    }

    .professional-reverse .professional-image {
        order: 0;
    }
}.section-conference {
	  background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
  color: #ffffff;
  padding: 5rem 2rem;
    max-width: 1200px;
  margin: 0 auto;
	}

.conference-header  
  {
    text-align: center;

      margin-bottom: 3rem;
}

.conference-header h2 {
  color: #ffffff;
    font-size: 2.5rem;
      margin-bottom: 1rem;
}

.conference-header p {
    opacity: 0.95;
  font-size: 1.1rem;
}

.conference-highlights {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.1);
     padding: 2rem;
     border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
   transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.highlight-item h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
   font-size: 1.2rem;
}

.highlight-item p {
    font-size    : 0.95rem;
	line-height: 1.7;
}

.section-cta {
  background: linear-gradient(135deg, #34a853 0%, #2d8659 100%);
   color: #ffffff;
       padding: 5rem 2rem;
    text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
}

.cta-wrapper h2 {
  font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-wrapper p {
  font-size: 1.1rem;
   margin-bottom: 2rem;
    opacity: 0.95; 
	
}

.cta-button-large {
    display    : inline-block;
  background: linear-gradient(135deg, var(--accent-color) 0%, #f5b800 100%);
  color: var(--primary-color);
	padding: 1.2rem 3rem;
  border-radius: 10px;
   text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
   transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.contact-section {
        max-width: 800px;
  margin: 0 auto;
    padding: 5rem 2rem;
}


.contact-section h2 {
    text-align :   center;
  color: var(--primary-color);
  font-size: 2.3rem;
  margin-bottom: 1rem;
}


.contact-desc {
   text-align: center;
  color: var(--text-light);
   font-size: 1.05rem;
    margin-bottom: 3rem;
	max-width: 600px;
    margin-left: auto;
   margin-right: auto;
}

.contact-form {
   background: #f8f9fa;
    padding   : 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
      display:   block;
   margin-bottom: 0.5rem;
  color: var(--text-dark);
    font-weight: 600;
	}

.form-group input,
.form-group select,
.form-group textarea   {
  width :      100%;
   padding: 0.8rem;
  border: 2px solid var(--border-color);
  border-radius: 6px;
    font-size: 1rem;
	font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}



.form-submit {
   width: 100%;
	padding: 1rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
   color: white;
	border: none;
  border-radius: 6px;
  font-weight: 600;
          font-size: 1rem;
   cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.form-submit:hover {
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}@media (max-width: 600px) {
    .contact-form {
        padding: 1.5rem;
    }
}.footer {
  background: var(--dark-bg);
   color: #ffffff;
   padding: 3rem 2rem 1.5rem;
 margin-top: 5rem;
}

.footer-content {
  max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 3rem;
        margin-bottom: 2rem;
}

.footer-section h4 {

    margin-bottom: 1.2rem;
  color: var(--accent-color);
  font-size: 1.1rem;
     }

.footer-logo-img {
	    max-height: 136px;
  width: auto;
  filter: brightness(0) invert(1);
    margin-bottom: 1rem;


}

.footer-links {
  list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration :     none;
   transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-address {


	 font-size: 0.95rem;
  line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;

}

.footer-phone {
	  color: var(--accent-color);
  font-weight: 600;

}

.footer-section p {
    font-size: 0.95rem;
   line-height: 1.7;
  opacity: 0.85;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  text-align: center;

  padding-top: 2rem;

  color: #9e9e9e;

   font-size: 0.9rem;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-address {
        text-align: left;
    }
}.container-expertise {
   margin  :     0 auto;
   max-width  :1200px;
}@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .hero {
        padding: 1.5rem 1rem;
    }

    .section-expertise,
    .section-workshop,
    .section-ecommerce,
    .section-consultant,
    .section-webinar,
    .section-professional,
    .section-conference,
    .contact-section {
        padding: 3rem 1rem;
    }

    h2 {
        font-size: 1.8rem !important;
    }
}.hero-services {
    display: grid;
  grid-template-columns  :     1fr 1fr;
    gap:    3rem;
    align-items:  center;
	 max-width: 1200px;
  margin: 0 auto;
        padding: 4rem 2rem;
      min-height     :    600px;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.05) 0%, rgba(52, 168, 83, 0.05) 100%);
	
}

.hero-services-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--primary-color);
    margin-bottom: 1.5rem;
   line-height: 1.3;
}

.hero-services-content p {


    font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width   :    600px;}

.hero-services-image img {
               width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .hero-services {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        min-height: auto;
    }
}.services-intro {
   background: #f8f9fa;
    padding: 5rem 2rem;
  max-width: 1200px;
    margin: 0 auto;
}

.intro-container h2 {
   font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
         margin-bottom: 1rem;
}

.intro-container > p  {
    text-align: center;
	  color: var(--text-light);
	    font-size: 1.05rem;
	   margin-bottom: 3rem;
	   max-width: 800px;
	  margin-left: auto;
	    margin-right: auto;
}

.why-choose-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.why-item {
  background: #ffffff;
    padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--secondary-color);
   transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.why-item h3 {
  color: var(--primary-color);
   margin-bottom: 1rem;
      font-size: 1.2rem;
}

.why-item p    {
  color: var(--text-light);
   line-height: 1.8;
   font-size: 0.95rem;
}

.services-detailed {
  max-width: 1200px;
  margin :      0 auto;
  padding: 5rem 2rem; 
	
}

.services-detailed h2 {
   text-align: center;
  color: var(--primary-color);
 font-size: 2.5rem;
    margin-bottom     :        3rem;
}

.services-container {
    display: flex;
    flex-direction: column;
   gap: 3rem;
}

.service-card-main {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
  background: #f8f9fa;
  padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card-main:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.service-card-main.alternate {
    grid-template-columns: 1fr 1fr;
}

.service-card-main.alternate .service-card-image {
   order: 2;
	
}

.service-card-main.alternate .service-card-content {
  order: 1;
}

.service-card-image {
    min-height: 300px;
}

.service-card-image img {

	  width: 100%;

	   height: 100%;

	   object-fit: cover;

	   border-radius: 10px;

	  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);


}

.service-card-content h3 {
  color: var(--primary-color);
   font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.price-tag {
  color: var(--secondary-color);
   font-size: 1.3rem;
      font-weight: 700;
   margin-bottom: 1.5rem;
}

.service-card-content > p:not(.price-tag) {
  color: var(--text-light);
    line-height: 1.8;
   margin-bottom :      1.5rem;
}

.service-card-content h4
{
  color: var(--text-dark);
          margin-bottom: 1rem;
   font-size: 1.1rem;
}

.service-list {
  list-style: none;
  padding: 0;
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.6rem 0;
         padding-left: 1.8rem;
    position: relative;
  color: var(--text-dark);
   font-size: 0.95rem;
   line-height: 1.7;
}

.service-list li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
	 font-weight  :      bold;
}

.service-card-content > p:last-child {
   margin-top     :    1.5rem;
   padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}@media (max-width: 1024px) {
    .service-card-main {
        grid-template-columns: 1fr;
    }

    .service-card-main.alternate .service-card-image {
        order: 1;
    }

    .service-card-main.alternate .service-card-content {
        order: 2;
    }
}@media (max-width: 768px) {
    .service-card-main {
        padding: 1.5rem;
    }

    .service-card-image {
        min-height: 200px;
    }
}.services-comparison {
    max-width: 1200px;
    margin    : 0 auto;
    padding:       5rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%); 
	
}
	/* Component styles */


/* Layout styles */
	/* Layout styles */

.services-comparison h2 {
   text-align: center;
  color: var(--primary-color);
    font-size: 2.3rem;
    margin-bottom    :3rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
   border-collapse: collapse;
  background: #ffffff;
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
  color: white;
}

.comparison-table th {

	    padding: 1.2rem;
	 text-align: left;
   font-weight: 600;
    font-size: 0.95rem;


}

.comparison-table td {
    padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}

.comparison-table tbody tr:hover

{
 background-color  :      #f8f9fa;
}

.comparison-table tbody tr.alt-row {
    background-color: #f8f9fa;
}

.comparison-table tbody tr.alt-row:hover {
   background-color: #eff1f5;
}

.table-service-name {
  font-weight: 600; 
	  color: var(--primary-color);
}
@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.7rem;
    }
}.services-cta {
    max-width: 900px;
    margin: 3rem auto;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2d8659 100%);
   color: #ffffff;
     padding: 4rem 2rem;
  border-radius: 16px;
   text-align: center;
}

.services-cta h2 {
  color: #ffffff;
    font-size: 2.2rem;
  margin-bottom: 1rem;
}

.services-cta p		{
   font-size: 1.05rem;
         margin-bottom:       2rem;
    opacity: 0.95;
}

.thankyou-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2d8659 100%);
   color: #ffffff;
  padding:       6rem 2rem;
  text-align: center;
  min-height: 400px;
   display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-content {
    max-width     :  600px;
}

.success-icon {
   width : 120px;
   height :    120px;
  background: rgba(255, 255, 255, 0.2);
    border: 3px solid #ffffff;
    border-radius: 50%;
  display: flex;
               align-items: center;
    justify-content: center;
   font-size: 60px;
    color: #ffffff;
   margin: 0 auto 2rem;
  animation: successBounce 0.6s ease-out;

}@keyframes successBounce {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}.thankyou-hero h1 {
    font-size: 2.8rem; 
	  margin-bottom: 1rem;
}

.thankyou-subtitle {
               font-size: 1.2rem;
    opacity: 0.95;
}

.thankyou-details   {
   max-width: 800px;
   margin: 0 auto;
	 padding: 4rem 2rem;
}

.details-container h2 {
   text-align: center;
  color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.summary-box {
   background: #f8f9fa;
   padding: 2rem;
   border-radius: 10px;
  border-left: 5px solid var(--secondary-color);
}

.summary-row {
       display     :        grid;
  grid-template-columns: 200px 1fr;
			gap: 2rem;
  padding :      1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row label {
   font-weight: 600;
  color: var(--primary-color);
}

.summary-row p {
  color: var(--text-dark);
}@media (max-width: 600px) {
    .summary-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}.thankyou-next-steps {


  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem 2rem;
    max-width: 1200px;
	margin: 0 auto;


}

.next-steps-container h2 {
   text-align: center;
  color: var(--primary-color);
    font-size : 2.2rem;
               margin-bottom: 3rem;
}

.steps-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.step-card {
   background     :    #ffffff;
	 padding: 2rem;
    border-radius: 10px;
   text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
   width: 60px;
   height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
  color: #ffffff;
    border-radius: 50%;
    display: flex;
   align-items: center;
  justify-content: center;
   font-size: 1.8rem;
    font-weight    :700;
   margin: 0 auto 1rem;
}

.step-card h3 {
  color: var(--primary-color);
   margin-bottom: 1rem;
  font-size: 1.2rem;
}

.step-card p {
  color: var(--text-light);
   font-size: 0.95rem;
  line-height: 1.7;
}

.thankyou-resources {
		max-width   :       1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.resources-container h2 {
   text-align: center;
  color: var(--primary-color);
  font-size: 2.2rem;
    margin-bottom: 1rem;
}

.resources-intro
	{
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
	font-size     :   1.05rem;
}

.resources-grid {
    display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
   gap   :      2rem;
}

.resource-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding  :   2rem;
  border-radius: 10px;
  border-top: 4px solid var(--accent-color);
   text-align: center;
   transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}  

.resource-card h3		{
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.resource-card p {


  color: var(--text-light);
      font-size: 0.95rem;
	margin-bottom: 1.5rem;
  line-height: 1.6;}

.resource-link    {


    display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
   color: #ffffff;
   padding: 0.7rem 1.5rem;
   border-radius: 6px;
	 text-decoration: none;
               font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.2);

}

.resource-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.thankyou-faq {
               background: #f8f9fa;
   padding: 4rem 2rem;
  max-width: 1200px;
   margin: 0 auto;
}

.faq-container h2 {
  text-align: center;
  color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
    background: #ffffff;
   padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--secondary-color);
}

.faq-item h3 {
  color: var(--primary-color);
               margin-bottom: 1rem;
   font-size: 1.1rem;
}

.faq-item p {
  color: var(--text-light);
	font-size: 0.95rem;
    line-height: 1.7;
} 

.thankyou-cta {
  max-width: 700px;
  margin: 0 auto;
        padding    :4rem 2rem;
  text-align    :     center;
}


.thankyou-cta h2    {
  color: var(--primary-color);
   font-size: 2rem;
  margin-bottom: 1rem;
} 

.thankyou-cta p {
  color: var(--text-light);
   font-size: 1.05rem;
    margin-bottom: 2rem;
}  

.cta-buttons {
	                    display: flex;
  gap: 1.5rem;
  justify-content: center;
    flex-wrap: wrap;
}

.cta-button{
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    color: white;
    padding    :      1rem 2.5rem;
    border-radius: 8px;
	text-decoration: none;
  font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);


}

.cta-button:hover {
  transform: translateY(-3px); 
	  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}

.cta-button.secondary {


  background: linear-gradient(135deg, var(--secondary-color) 0%, #2d8659 100%);
  box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);

}

.cta-button.secondary:hover {

	  box-shadow: 0 6px 20px rgba(52, 168, 83, 0.4);}@media (max-width: 600px) {
    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .services-detailed h2,
    .services-comparison h2,
    .next-steps-container h2,
    .resources-container h2,
    .faq-container h2 {
        font-size: 1.8rem;
    }

    .services-cta {
        padding: 2rem 1.5rem;
    }

    .thankyou-hero {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .thankyou-hero h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .service-card-main {
        padding: 1rem;
    }

    .services-detailed,
    .services-comparison,
    .thankyou-details,
    .thankyou-next-steps,
    .thankyou-resources,
    .thankyou-faq {
        padding: 2rem 1rem;
    }

    .summary-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .price-tag {
        font-size: 1.1rem;
    }
}.policySection {
   padding: 80px 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  min-height: calc(100vh - 300px);
}

.policyContainer {
   max-width: 900px;
      margin: 0 auto;
    text-align: left;
}

.policyContainer h1 {
	 font-size     :        3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
	font-weight: 700;
  line-height: 1.2;
}

.policyContainer h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin  :  2.5rem 0 1rem 0;
  font-weight: 600;
  border-bottom: 2px solid var(--secondary-color);
   padding-bottom: 0.5rem;
}

.policyContainer p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
   font-size: 1rem;
   text-align: justify;
}

.policyContainer p strong {
  color: var(--text-dark);
	font-weight: 600;
}

.policyContainer p:first-of-type {
  margin-top: 1rem;
}

.policyContainer h2:first-child

{
    margin-top: 0;
}@keyframes policyFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.policyContainer h1 {

   animation: policyFadeIn 0.6s ease-out;
     }

.policyContainer h2 {
   animation: policyFadeIn 0.5s ease-out;
   animation-fill-mode: both;
}



.policyContainer h2:nth-of-type(1) {
	animation-delay: 0.1s;
}

.policyContainer h2:nth-of-type(2) {
  animation-delay :        0.2s;


}

.policyContainer h2:nth-of-type(3) {
    animation-delay: 0.3s;
}

.policyContainer h2:nth-of-type(4)		{
    animation-delay: 0.4s;
}

.policyContainer h2:nth-of-type(5) {
   animation-delay: 0.5s;


}

.policyContainer h2:nth-of-type(6) {
   animation-delay: 0.6s;
}

.policyContainer h2:nth-of-type(7) {
	animation-delay: 0.7s;
}

.policyContainer h2:nth-of-type(8) {
   animation-delay: 0.8s;
}

.policyContainer h2:nth-of-type(9) {
  animation-delay: 0.9s;
}@media (max-width: 1024px) {
    .policySection {
        padding: 70px 2rem;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
        min-height: auto;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin: 2rem 0 0.8rem 0;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .policySection {
        padding: 50px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem 0;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.8rem;
    }

    .policyContainer h1 {
        font-size: 1.4rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.6rem 0;
    }

    .policyContainer p {
        font-size: 0.85rem;
    }
}.policyContainer > p:last-child {
   margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
  color: var(--text-dark);
   font-size  :  0.95rem;
          text-align: center;
}

.navbar {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer {
  margin-top: 3rem;
}@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        padding: 0;
        background: #ffffff;
    }

    .policyContainer h1,
    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        page-break-inside: avoid;
    }
}