*


{
   margin  :       0;
  padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {

	  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
     line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;}

.navbar-main {
 background-color:#ffffff;
   border-bottom: 1px solid #ecf0f1;
    position    :  sticky;
    top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-container {
  max-width: 1200px;
	 margin     :      0 auto;
	padding: 16px 20px;
     display: flex;
  justify-content: space-between;
   align-items: center;
	
}

.navbar-logo-section {
   flex: 0 0 auto;
	}

.navbar-logo {
    height: 74px;
    width: auto;
 display: block;
}

.navbar-links {
      display: flex;
   gap: 30px;
    align-items: center;
}  

.nav-link {
    text-decoration     :none;
   color    :  #2c3e50;
    font-weight: 500;
  font-size:       16px;
    transition: color 0.3s ease;
         position    :    relative;
}

.nav-link::after {
  content: '';
	    position: absolute;
	  bottom: -5px;
	 left     :  0;
	    width :   0;
	   height: 2px;
	    background-color: #3498db;
	   transition: width 0.3s ease;
}

.nav-link:hover::after {
	    width     :        100%;

}

.burger-menu {

	   cursor: pointer;
  height    : 40px;
	gap: 6px;
    border: none;
  background: none;
  justify-content: center;
    display: none;
  flex-direction: column;
     width: 40px;
   align-items   :        center;


     }

.burger-line {
       width: 24px;
    height: 2px;
 background-color: #2c3e50;
    transition :     all 0.3s ease;
  display: block;
}

/* Responsive design */

/* Framework override */

.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(7px, -7px);
}

.hero-section {
     background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding    :     80px 20px;
   display: grid;
   grid-template-columns: 1fr 1fr;
  align-items: center;
   gap: 40px;
	max-width: 1200px;
  margin: 0 auto;

}

.hero-content {
  display: flex;
  flex-direction: column;
    gap :  24px;
}

.hero-title    {
                    font-size: 48px;
    font-weight    :      700;
  line-height: 1.2;
  color: #1a252f;
}

.hero-subtitle		{
       font-size: 18px;
   color: #555;
  line-height    :      1.6;
}

.hero-button {
    display: inline-block;
   background-color: #3498db;
    color: white;
    padding: 16px 32px;
   border-radius    :        8px;
  text-decoration     :        none;
    font-weight: 600;
  font-size: 16px;
    transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2); 

}

.hero-button:hover {
	    background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
	}

.hero-visual {

	  overflow: hidden;
	  border-radius: 12px;
	
} 

.hero-image {
	width: 100%;
   height: auto;
  display: block;
    object-fit: cover;
}

.section-title {
   font-size     :  40px;
	   font-weight: 700;
	      text-align: center;
	   margin-bottom: 40px;
	    color: #1a252f;
}

.section-image-wide {
    width:100%;
    height: auto;
   margin-top    : 50px;
    border-radius: 12px;
  display: block;
  object-fit: cover;
}

.section-why-us  
  {
    background-color:       #f8f9fa;

   padding    :   80px 20px;

  max-width :      1200px;

    margin: 0 auto;
}

.cards-grid {


    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	  gap: 30px;
	   margin-bottom: 50px;
     }

.card-item {
    background :        white;
   padding    : 32px;
   border-radius: 10px;
  border-left:    5px solid #3498db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

/* State modifiers */

.card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-header {
  font-size  :  20px;
    font-weight: 700;
   margin-bottom: 16px;
    color: #2c3e50;
}

.card-text {
    font-size:15px;
	  line-height: 1.8;
	  color: #555; 
	
}

.section-services-preview {
    margin: 0 auto;
  background: white;
      max-width  :1200px;
    padding: 80px 20px;
}

.services-container {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.service-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   padding: 40px;
   border-radius: 12px;
  display: flex;
   flex-direction: column;
   gap: 20px;
    border: 1px solid #e9ecef;
	transition: all 0.3s ease;
	position: relative;
    overflow: hidden;
}

/* Third-party styles */

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
      left: 0;
	 right:0;
   height: 4px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
	}

.service-card:hover {

  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);}
/* Vendor-specific */
	/* Component styles */


.service-title {
    font-size: 22px;
    font-weight: 700;
 color: #2c3e50;
     }

.service-description {
   font-size: 15px;
	 line-height  :      1.8;
          color: #666;
    flex-grow: 1;
}

.service-link {
	    display: inline-block;
  color: #3498db;
    text-decoration: none;
      font-weight: 600;
	transition: all 0.3s ease;
    font-size: 14px;
     }

.service-link:hover {

	color: #2980b9;
  transform: translateX(5px);


} 

.section-case-studies {
   background: #f8f9fa;
   margin: 0 auto;
   padding: 80px 20px;
   max-width: 1200px;
}

.case-study-item 
 {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
   margin-bottom     :      60px;
}
/* FIXME: IE11 compatibility */

.case-image {
  width: 100%;

	  height  :   auto;

	  border-radius    :    12px;

	  object-fit: cover;
}

.case-content {
	 display: flex;
  flex-direction: column;
    gap: 20px;
}

.case-title {
     font-size: 28px;
    font-weight: 700;
	 color   : #1a252f;}



.case-text {
  font-size: 16px;
   line-height: 1.8;
    color: #555;
}

.case-metric {
    display : inline-block;
  background-color: #3498db;
  color: white;
    padding: 16px 24px;
  border-radius: 8px;
   font-weight    :   700;
 font-size: 18px;
	width  :    fit-content;
}

.section-features {
	padding: 80px 20px;
         background: white;
    max-width: 1200px;
	margin: 0 auto;
}

.features-list {
  margin-bottom: 50px;

}

.feature-row {
  margin-bottom: 40px;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
   display: grid;

}
/* Development only */


	/* Browser compatibility */


.feature-item {
  background: #f0f4f8;
    padding: 30px;
    border-radius: 10px;
  border-top   : 3px solid #3498db; 
	
}


.feature-name {
    font-size: 18px;
    font-weight:  700;
	margin-bottom   :       12px;
    color: #2c3e50;
}

/* Experimental feature */

.feature-description {
    font-size: 14px;
  line-height: 1.8;
    color: #666; 
	
}

.section-cta {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 20px;
   text-align: center;
   max-width: 1200px;
  margin: 0 auto;
    border-radius    :     12px;
	}

.cta-title {
               font-size: 36px;
    font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
  max-width: 600px;
    margin-left: auto;
  margin-right: auto;
}

.cta-button {
   display: inline-block;
  background-color     :  white;
   color: #667eea;
  padding: 14px 40px;
    border-radius    :      8px;
	text-decoration: none;
  font-weight: 600;
  font-size: 16px;
               transition: all 0.3s ease;
}

/* Minified version */

.cta-button:hover {
     background-color: #f0f0f0;
  transform: scale(1.05);

}

/* Debug styles */

.section-contact {

   padding   : 80px 20px;
   background: #f8f9fa;
  max-width: 1200px;
   margin: 0 auto;
	}

.contact-intro {
  font-size    :     18px;
    margin-bottom: 40px;
    color: #555;
   max-width: 600px;
  text-align:   center;
               margin-left: auto;
    margin-right     :      auto;
}

.contact-form {
  background: white;
  padding: 40px;
    border-radius: 12px;
               max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
	/* Generated styles */

/* Experimental feature */


/* Development only */


.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.form-label  
  {
    font-weight: 600;
  margin-bottom: 8px;
  color: #2c3e50;
    font-size: 14px;
}

.form-input{
  padding: 12px 16px;
    border: 1px solid #ddd;
	border-radius: 6px;
    font-size: 14px;
  font-family: inherit;
       transition:       all 0.3s ease;
}

.form-input:focus {
			outline: none;
	border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
	}

.form-textarea {
    resize: vertical;
  min-height: 120px;
}

.form-button {
    background-color   :   #3498db;
	color: white;
    padding: 14px 32px;
         border: none;
	border-radius: 6px;
	 font-weight: 600;
    font-size: 16px;
  cursor: pointer;
    transition: all 0.3s ease;
  width: 100%;
}

.form-button:hover     {
	background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);


} 

.footer-main {
   background-color: #1a252f;
    padding: 60px 20px 20px;
    color: white;
}

.footer-container {
	   max-width: 1200px;
               margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
   padding-bottom:30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     }

.footer-brand  
  {

  display: flex;
  align-items: flex-start;

}

.footer-logo {
	height     :        96px;
	    width: auto;
		display: block;
	  filter: brightness(0) invert(1);
}

.footer-info {
  display: flex; 
    flex-direction: column; 
  gap: 12px;
}
/* Development only */


	/* Framework override */



/* Development only */

.footer-address

{
   font-size: 14px;
   line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-phone {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
    font-weight  : 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
  gap: 12px;
}

.footer-link {


  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
   font-size :14px;
          transition    :        color 0.3s ease;


}

.footer-link:hover
	{
	color: white;
}

.footer-bottom {
   max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
    text-align: center;
}

.footer-copyright {
	font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.cookie-alert {

	  position: fixed;
   bottom: 20px;
                    left: 20px;
         background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index  :     999;
    max-width: 360px;
	 display    :     flex;
    flex-direction: column;
  gap: 16px;
	}

.cookie-alert.hidden {
  display: none;
}

.cookie-content {
  display: flex;
    flex-direction: column;
    gap: 16px;


	}

.cookie-text {
  font-size: 14px;

  color: #2c3e50;

    line-height: 1.6;

      margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
    flex-wrap: wrap;}

.cookie-btn {
    padding: 10px 16px;
  border  :none;
   border-radius: 6px;
	cursor: pointer;
    font-size: 13px;
   font-weight: 600;
   transition: all 0.3s ease;
}

.cookie-accept {
   background-color: #3498db;
  color: white;
  flex: 1;
  min-width: 100px; 

}  

.cookie-accept:hover {
    background-color: #2980b9;
}

.cookie-decline		{
  background-color: #ecf0f1;
    color: #2c3e50;
  flex: 1;
    min-width: 100px;
}

.cookie-decline:hover     {
  background-color: #d5dbdb;
} 

.cookie-settings {
    background-color: transparent;
     color: #3498db;
   border: 1px solid #3498db;
    flex: 1;
    min-width: 100px;
}


.cookie-settings:hover {
  background-color: rgba(52, 152, 219, 0.1);
	
}

.gdpr-modal {
  position: fixed;
    top: 0;
               left :        0;
       width: 100%;
    height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
    display: none;
  justify-content     :center;
    align-items:    center;
   z-index: 1001;
}

.gdpr-modal.show {
   display: flex;
}

/* Production ready */

.gdpr-content {
		background: white;
  padding: 40px;
    border-radius    : 12px;
         max-width: 400px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);

}

.gdpr-title {
     font-size: 22px;
    font-weight: 700;
   margin-bottom: 24px;
    color: #2c3e50;

}

.gdpr-options {
	display: flex;
  flex-direction: column;
    gap :        16px;
    margin-bottom: 24px;
}

.gdpr-label    {
          display: flex;
  align-items: center;
	 gap: 12px;
    cursor     :  pointer;}

.gdpr-label input {
    width: 18px;
  height :     18px;
    cursor: pointer;
}

.gdpr-text {
    font-size: 14px;
  color: #2c3e50;
}

.gdpr-button {
  width: 100%;
    padding    :   12px;
   background-color: #3498db;
    -o-transition: all 0.3s ease;
    color: white;
         -moz-border-radius: 6px;
  -webkit-border-radius  :     6px;
  border     :  none;
    border-radius  :        6px;
   font-weight: 600;
	cursor   :     pointer;
       transition: all 0.3s ease;
}

.gdpr-button:hover {
   background-color: #2980b9;
}
@media (max-width: 768px) {
    .navbar-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid #ecf0f1;
    }

    .navbar-links.active {
        max-height: 300px;
    }

    .nav-link {
        display: block;
        padding: 16px 20px;
        border-bottom: 1px solid #ecf0f1;
    }

    .burger-menu {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 50px 20px;
        gap: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .case-study-item {
        grid-template-columns: 1fr;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .cookie-alert {
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .gdpr-content {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .cta-title {
        font-size: 24px;
    }

    .feature-item {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}.services-hero 
 {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 20px;
    text-align  :   center;
       color: white;}

.services-hero-content {
   max-width: 1200px;
    margin : 0 auto;
}
/* Custom modifications */

/* Experimental feature */


.services-hero-title {
   font-size: 48px;
    font-weight: 700;
 margin-bottom: 16px;
   line-height: 1.2;
}

.services-hero-subtitle {
   opacity    :  0.95;
    font-size: 20px;
   line-height: 1.6;
}

.services-max-width
{
  max-width: 1200px; 
	margin    :0 auto;}

.services-detailed {

	    padding: 80px 20px; 
	

}

.services-detailed.alt-bg


{
   background-color: #f8f9fa;

}

.services-section-title {
	font-size: 36px;
    font-weight: 700;
   margin-bottom: 50px;
   color: #1a252f; 

}

.service-detail-grid {
     display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items    :      start;
}

.service-detail-grid.reverse {
   direction: rtl;
}

/* NOTE: keep for legacy support */

.service-detail-grid.reverse > * {


   direction:  ltr; 
	


}

.service-detail-content {
   display: flex; 
	    flex-direction: column; 
						gap: 24px;
}

.service-detail-text {
    font-size: 16px;
  line-height: 1.8;
	color: #555;
}

.service-detail-image {
    overflow  : hidden;
   border-radius:   12px;
} 

.service-image {
  width: 100%;
   height: auto;
  display: block;
 object-fit: cover;


}

.service-features-list {

	   display: flex;
   gap: 20px;
   flex-direction   : column;


}

.feature-item-service	{
   background: #f0f4f8;
    padding: 24px;
	 border-radius: 8px;
  border-left: 4px solid #3498db;
}

.feature-title-service


{
  font-size: 16px;
    font-weight: 700;
  margin-bottom    :  8px;
	color: #2c3e50;
}

.feature-desc-service {
   color: #666;
  margin: 0;
  font-size: 14px;
  line-height: 1.7; 

}

.webinar-schedule		{
   display: flex;
     flex-direction   : column;
   gap: 16px;
}

.webinar-item {

          background : #f0f4f8;
  padding:  20px;
                    border-radius: 8px;
    border-left :      4px solid #2ecc71;
}

.webinar-title {
  font-size: 15px;
	font-weight: 700;
   margin: 0 0 8px 0;
	 color: #2c3e50;
}

.webinar-info {
    font-size: 13px;
  color: #888;
  margin: 0; 

}

.conference-highlights {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Generated styles */


/* Third-party styles */


/* Colors and backgrounds */

.highlight-box	{
   background: #f0f4f8;
  padding  :24px;
   border-radius: 8px;
    text-align: center;
    border-top: 3px solid #e74c3c;
}

.highlight-title{
   font-size: 14px;
  color: #2c3e50;
       margin: 0 0 8px 0;
  text-transform:    uppercase;
  font-weight: 700;
}

.highlight-text 
 {
    font-size: 14px; 
  color: #555; 
    margin: 0;
}

.premium-package-list {
   display: flex;
	 flex-direction: column;
    gap: 12px;
}

.premium-item		{
	 display: flex;
  align-items:center;
                    gap: 12px;
	font-size: 15px;
   color: #555;
}
	/* Framework override */
	/* Component styles */

.premium-check {

	   color: #2ecc71;

  font-weight: 700;

        font-size: 18px;

    flex-shrink: 0; 
	
}
	/* Auto-generated CSS */
.premium-text {


  line-height: 1.5;

}

.premium-pricing {
      background: #f0f4f8;
  padding: 24px;
  border-radius  :        8px;
   text-align: center;
   margin-top: 16px; 
	
}

.premium-price {
    font-size: 32px;
    font-weight     :      700;
   color: #667eea;
  margin: 0 0 8px 0; 
	
}

.premium-payment {
  font-size:       14px;
   color    :       #888;
    margin: 0;
}
	/* Typography */
/* Development only */


/* Debug styles */
.services-comparison {
	    padding: 80px 20px;
  background: white;
  max-width: 1200px;
   margin: 0 auto;


}

.comparison-table-wrapper 
 {
  overflow-x: auto;
}

.comparison-table   {
 width: 100%;
  border-collapse  :   collapse;
   border:    1px solid #ddd;
      border-radius: 8px;
   overflow: hidden;
}

.comparison-table thead {
	background-color: #667eea;
   color: white;
}

.comparison-table th {
  padding: 16px;
         text-align: left;
   font-weight: 700;
  font-size:   14px;
}

.table-feature {
  background-color  :      #f8f9fa;
   color: #2c3e50;
	font-weight: 700;
}

.table-header {
	color: white;
   background-color: #667eea;
} 

.comparison-table td {
	padding: 16px;
  border-bottom: 1px solid #ecf0f1;
  font-size: 14px;
  color: #555;
}

.comparison-table tbody tr:hover {
  background-color: #f8f9fa;
}

.table-cell {
	text-align  :    center;
}

/* Build system output */

.check-mark {
	    color: #2ecc71;
  font-weight: 700;
  font-size: 16px;
}

.services-faq {
   padding: 80px 20px;
   background-color: #f8f9fa;
      max-width: 1200px;
		margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
   gap: 16px;
}

.faq-item {
    background:  white;
    border-radius: 8px;
   overflow :       hidden;
	border :   1px solid #ecf0f1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px; 
	    margin: 0; 
	   -webkit-user-select: none; 
	  font-size: 16px; 
	   font-weight: 600; 
		-ms-user-select: none; 
	    -moz-user-select     : none; 
	   color: #2c3e50; 
	  -webkit-transition: all 0.3s ease; 
	  cursor: pointer; 
	   display: flex; 
	                    justify-content: space-between; 
		 align-items: center; 
	               background:        #f8f9fa; 
	    transition: all 0.3s ease; 
	   user-select: none;
}

.faq-question:hover {
     background-color: #ecf0f1;
}

.faq-question::after{
  content: '+';
   font-size: 24px;
   color: #3498db;
    transition: transform 0.3s ease;
}

.faq-question.active::after {

	  transform: rotate(45deg);


}

.faq-answer {

	  padding: 0 20px 0 20px;
   max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
   font-size: 14px;
       line-height: 1.8;
  color: #555;
    background: white;
  margin    :        0;

}
	/* Custom modifications */

.faq-answer.show {
   padding: 0 20px 20px 20px;
    max-height: 500px; 

}

.services-cta {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	   padding: 60px 20px;
	  text-align: center;
	  max-width    :      1200px;
	                    margin: 0 auto;
	  border-radius: 12px;
}

.services-cta-title


{
   font-size: 32px;
  margin-bottom: 16px;
    color:      white;
				 font-weight    :        700;
}
/* Animation and transitions */
.services-cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
   margin-bottom: 30px;
    max-width: 600px;
  margin-left: auto;
    margin-right   :  auto;
}

.services-cta-button {
  transition: all 0.3s ease;
    -moz-transition   :  all 0.3s ease;
         background-color     :        white;
   border-radius: 8px;
  font-size  :   16px;
   padding: 14px 40px;
   color: #3498db;
  font-weight: 600;
   display: inline-block;
    text-decoration: none;
}

.services-cta-button:hover {

               background-color: #f0f0f0;
  transform: scale(1.05);}

/* Framework override */


.thankyou-section
{
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
      padding :      100px 20px;
  min-height: 70vh;
  display: flex;
  align-items: center;
    justify-content: center;
}
	/* Minified version */
	/* State modifiers */
.thankyou-container {

    background: white;
    padding: 60px 40px;
    border-radius     :  16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
         max-width: 600px;
  text-align: center;
      animation: slideUp 0.6s ease;
	

}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.thankyou-icon {
   margin-bottom: 24px;
}

.check-icon {
   width: 80px;
   height: 80px;
   background-color: #2ecc71;
   color     :       white;
  border-radius: 50%;
  display: flex;
   align-items: center;
  justify-content: center;
  font-size: 48px;
    margin: 0 auto;
  font-weight: bold;
}

.thankyou-title {
     font-size:    40px; 
  font-weight: 700; 
   color: #1a252f; 
   margin: 0 0 12px 0;
}

.thankyou-subtitle {
    font-size: 18px;
   color  :     #3498db;
        margin: 0 0 24px 0;
  font-weight   :       600;
	
}

.thankyou-message {
   font-size: 16px;
     line-height: 1.8;
      color   :    #555;
   	 margin-bottom: 32px;
}

.thankyou-info-box {
   text-align: left;
    background: #f0f4f8;
	padding:      24px;
    border-radius: 8px;
   margin-bottom: 32px;
}

.info-title {


   font-size: 16px;
    font-weight: 700;
   color: #2c3e50;
  margin: 0 0 16px 0;
	


}

.info-list {
   list-style: none;
   padding: 0;
    margin: 0;
}

.info-item
	{
    padding: 10px 0; 
  padding-left: 28px; 
    position: relative; 
	font-size: 14px; 
   color    :      #555; 
        line-height: 1.6;
}

.info-item::before {
  content: '✓';
  position: absolute;
        left: 0;
   color: #2ecc71;
  font-weight: bold;
}



.thankyou-actions 
 {
    display: flex;
   gap: 16px;
    margin-bottom: 32px;
  flex-wrap: wrap;


}

.thankyou-button-primary,
.thankyou-button-secondary {
           flex: 1;

		 min-width: 150px;

	   padding: 14px 24px;

	   border-radius: 8px;

	  text-decoration: none;

	     font-weight: 600;

	   font-size: 15px;

	   transition: all 0.3s ease;

	    text-align: center;
	}

.thankyou-button-primary {
	background-color: #3498db;
    color: white;
}

.thankyou-button-primary:hover {
    background-color: #2980b9;
  transform: translateY(-2px);
}

.thankyou-button-secondary {
   background-color: #ecf0f1;
  color: #2c3e50;
    border: 1px solid #ddd;


}


.thankyou-button-secondary:hover

{
   	 background-color: #d5dbdb;
}

.thankyou-footer-text {
    font-size: 14px;
   color: #888;
         margin: 0;
}

.next-steps-section {
  padding: 80px 20px;
  margin: 0 auto;
       max-width: 1200px;
                    background: white;
}

.next-steps-title {
    font-size: 36px;
  font-weight: 700;
   text-align: center;
	 margin-bottom: 50px;
    color: #1a252f;
}

.links-grid {

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;}

.link-card {

    -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
   background: #f8f9fa;
		 padding     :    32px;
  border-radius: 12px;
    border-top: 4px solid #3498db;
  display: flex;
  -webkit-transition: all 0.3s ease;
   flex-direction: column;
	gap: 16px;
   transition: all 0.3s ease;
         -o-transition   :        all 0.3s ease; 
	
     }

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.link-card-title		{
    font-size: 18px;
    font-weight: 700;
  color: #2c3e50;
  margin: 0;
} 

.link-card-desc {
   font-size: 14px;
	 line-height: 1.6;
	 color: #666;
	margin: 0;
  flex-grow: 1; 

}

.link-card-button {
	    -moz-border-radius: 6px;
    display: inline-block;
  -webkit-border-radius: 6px;
  background-color: #3498db;
  color: white;
   padding: 10px 16px;
  border-radius: 6px;
	text-decoration: none;
        font-weight: 600;
   font-size    :   13px;
  text-align    :center;
  transition: all 0.3s ease;
	}

.link-card-button:hover{
   background-color    :    #2980b9;
}@media (max-width: 768px) {
    .services-hero-title {
        font-size: 32px;
    }

    .services-hero-subtitle {
        font-size: 16px;
    }

    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .conference-highlights {
        grid-template-columns: 1fr;
    }

    .comparison-table-wrapper {
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }

    .thankyou-container {
        padding: 40px 24px;
    }

    .thankyou-title {
        font-size: 28px;
    }

    .check-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-button-primary,
    .thankyou-button-secondary {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .services-section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .services-hero-title {
        font-size: 24px;
    }

    .faq-question {
        padding: 16px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 16px 0 16px;
        font-size: 13px;
    }

    .faq-answer.show {
        padding: 0 16px 16px 16px;
    }

    .feature-item-service,
    .webinar-item {
        padding: 16px;
    }

    .premium-item {
        font-size: 14px;
    }

    .highlight-box {
        padding: 16px;
    }

    .thankyou-info-box {
        padding: 16px;
    }

    .links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}.policy-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
  padding: 80px 20px; 
   text-align: center; 
    color: white;
}


.policy-hero-title {
      font-size: 48px;
	font-weight: 700;
    line-height: 1.2;
         color: white;
  margin: 0;}

.policy-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.policy-container {
       max-width: 800px;
       margin: 0 auto;
   text-align: left;
}

.policy-container h2 {
   font-size     :28px;
   color: #2c3e50;
   margin-bottom: 20px;
  margin-top: 40px;
    font-weight: 700;
  line-height: 1.3;
}

.policy-container h2:first-of-type 
 {
    margin-top: 0;
}

.policy-container p {
   color:     #555;
   margin-bottom: 18px;
    line-height: 1.8;
   font-size: 16px;
}

.policy-container strong {
	    color: #2c3e50;
	font-weight: 600;
	}

.policy-container ul {
   margin-bottom: 18px;
    padding-left: 24px;
	}

.policy-container li {


    font-size: 15px;
  margin-bottom: 12px;
    line-height: 1.8;
  color: #555;
     }@media (max-width: 768px) {
    .policy-hero {
        padding: 60px 20px;
    }

    .policy-hero-title {
        font-size: 32px;
    }

    .policy-section {
        padding: 60px 20px;
    }

    .policy-container h2 {
        font-size: 22px;
        margin-top: 32px;
        margin-bottom: 16px;
    }

    .policy-container p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .policy-container li {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 50px 16px;
    }

    .policy-hero-title {
        font-size: 24px;
    }

    .policy-section {
        padding: 40px 16px;
    }

    .policy-container {
        max-width: 100%;
    }

    .policy-container h2 {
        font-size: 20px;
        margin-top: 28px;
    }

    .policy-container p {
        font-size: 14px;
        margin-bottom: 14px;
        line-height: 1.7;
    }

    .policy-container li {
        font-size: 13px;
    }
}