* {
    margin: 0;
  padding: 0;
    box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: #ffffff;

}

.navbar {
    position: sticky;
   top: 0;
                    z-index: 1000;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
       max-width   :      1200px;
    margin: 0 auto;
    padding: 0 20px;
   display: flex;
    justify-content: space-between;
   align-items: center;
   height: 80px;
}

.nav-logo-section {
   display :      flex;
    align-items: center;
   gap: 15px;
}

.nav-logo {
   height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
}

.brand-name {
    color: #ffffff;
   font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.burger-menu {
  display: none;
     flex-direction: column;
   background: none;
   border: none;
    cursor: pointer;
    gap: 6px;
}

.burger-line {
       width: 28px;
                    height  :      3px;
	background: #ffffff;
   border-radius: 2px;
  transition: all 0.3s ease;

}

.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);
} 

.nav-menu {

    display: flex;
  list-style: none;
   gap: 40px;}

.nav-link  {
  color: #ffffff;
  text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
 position: relative;
}

.nav-link::after {


  content: '';
  position: absolute;
    bottom: -5px;
   left: 0;
  width     :    0;
        height: 3px;
    background: #ffd700;
    transition: width 0.3s ease;}

.nav-link:hover::after {
 width: 100%;
}

.hero     {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  align-items: center;
  padding: 80px 40px;
    max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
   z-index    :   10;
}

.hero-title {
   color: #1e3c72;
   margin-bottom: 25px;
	font-size: 48px;
    line-height: 1.2;
  font-weight: 800;
}

.hero-subtitle {
    font-size: 18px;
    color: #34495e;
   margin-bottom: 35px;
    line-height: 1.8;
}

.cta-button {
  display     :   inline-block;
    padding: 16px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: #ffffff;
  text-decoration: none;
                    border-radius    :  50px;
    font-weight: 600;
    font-size: 16px;
   transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.hero-image {
     display: flex;
   justify-content: center;

}

/* TODO: optimize for mobile */

.hero-image img {
    width: 100%;
    height :     auto;
	 border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); 

}

.services-overview {
   padding: 80px 40px;
	max-width: 1200px;
  margin: 0 auto;
	
}

/* FIXME: IE11 compatibility */

.section-header {
                    text-align: center;
  margin-bottom: 60px;
}

/* Debug styles */

.section-header h2 {
    font-size: 42px;
   color: #1e3c72;
   margin-bottom: 15px;
   font-weight: 800;
}

/* Experimental feature */


.section-intro {
    font-size: 18px;
  color: #7f8c8d;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap  :  35px;
}

/* Responsive design */
.service-card {
    background: #ffffff;
  padding: 40px;
  border-radius: 12px;
 border: 1px solid #ecf0f1;
   transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}

.service-card h3 {
	font-size: 22px;
    font-weight    :       700;
		margin-bottom: 15px;
    color: #1e3c72;
}

.service-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.advisory-section {
  grid-template-columns: 1fr 1fr;
    align-items: center;
   padding: 80px 40px;
  display     :  grid;
 background: #f8f9fa;
    gap: 60px;
	 margin: 0 auto;
   max-width     :      1200px;
}

.advisory-content h2 {
   font-size: 38px;
    color: #1e3c72;
    margin-bottom: 20px;
    font-weight: 800; 

}

.advisory-content p {
  font-size: 16px;
	    color: #555;
	   margin-bottom: 30px;
	    line-height: 1.8;
}

/* NOTE: keep for legacy support */

.advisory-features {
                    list-style: none;
   margin-bottom: 0; 
	
}

.advisory-features li {
  padding: 12px 0;
  padding-left: 30px;
    position    :     relative;
   color: #34495e;
   font-size    :   15px; 
	
}

.advisory-features li::before {
   font-weight :  800;
   position   :     absolute;
		 font-size: 18px;
   left     :    0;
  content: '✓';
   color :       #667eea;
}

.advisory-section img {
    width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.training-section {
   display    :   grid;
  grid-template-columns: 1fr 1fr;
       gap: 60px;
  align-items: center;
  padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.training-image img  {
   width: 100%;
    height     :     auto;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.training-content h2 {


   font-size: 38px;
    color: #1e3c72;
      margin-bottom: 20px;
    font-weight: 800;
}

.training-content > p  {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
	 line-height: 1.8;
}

.training-benefits {
      background: #e8eef7;
       padding: 25px;
     border-radius   :       10px;
       margin-top: 20px;
}

.training-benefits h4 {
    color: #1e3c72;
	 margin-bottom :   12px;
          font-size: 16px;
}

.training-benefits p {
  color: #34495e;
  font-size: 14px;
    line-height: 1.7;
}

.negotiation-section	{
   padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
   background: #f8f9fa;
}

.negotiation-header {
  text-align: center;
   margin-bottom: 60px;
}

.negotiation-header h2 {
    font-size: 42px;
   color: #1e3c72;
	 margin-bottom: 15px;
      font-weight: 800;
}

.negotiation-intro {
   font-size: 18px; 
   color  :       #7f8c8d;
}

.negotiation-wrapper {
      display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 50px;
   align-items: center;}
/* Responsive design */


.negotiation-wrapper img {
	  width  :   100%;
    height: auto;
	border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);}

.negotiation-details h3 {
  font-size    : 26px;
   color: #1e3c72;
  margin-bottom: 25px;
    font-weight: 700;
	
}

.negotiation-list

{
    list-style: none;
}

.negotiation-list li	{
  padding    :     15px 0;
  padding-left: 30px;
    position: relative;
   color: #34495e;
      font-size: 15px;
}

.negotiation-list li::before {
  content: '▸';
    position: absolute;
 left: 0;
  color: #667eea;
    font-size: 20px;
}

.governance-section {
  padding: 80px 40px;
  max-width: 1200px;
    margin: 0 auto;
}
	/* Performance critical */


.governance-section h2 {
    font-size: 42px;
	 text-align: center;
     color: #1e3c72;
  margin-bottom: 15px;
	 font-weight:        800;

}

.governance-intro{
  text-align    :center;

   font-size: 18px;

	color: #7f8c8d;

    margin-bottom :   50px;
}

.governance-content {
    display    :        grid;
               grid-template-columns: 1fr 1fr;
  gap   :50px;
    align-items: center;
}

.governance-image img {
 width: 100%;
	height: auto;
	border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.governance-text h3 {
	  font-size: 26px;
  color: #1e3c72;
   margin-bottom: 20px;
   font-weight: 700;}
/* Layout styles */

.governance-text > p 
 {
    color: #555;
   font-size: 15px;
     margin-bottom :20px;
  line-height: 1.8;
}

/* Experimental feature */

/* Production ready */


.governance-list {
   list-style: none;
}

.governance-list li {
  padding: 12px 0;
  padding-left: 28px;
    position: relative;
  color  :   #34495e;
   font-size: 14px;
}

.governance-list li::before {
  content: '→';
    position: absolute;
  left: 0;
   color: #764ba2;
	font-weight    :     700;
}

.webinar-section {


  padding :        80px 40px;
   max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius    :      15px;
   margin: 80px auto;
     }

.webinar-container {
         text-align: center;
}

.webinar-section h2 {
   font-size: 42px;
   color     :  #ffffff;
    margin-bottom: 15px;
   font-weight: 800;
}

.webinar-description    {
       font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
     }

/* TODO: optimize for mobile */

.webinar-topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px; 

}



.topic-item     {
  background: rgba(255, 255, 255, 0.1);
   padding: 30px;
          border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.topic-item:hover {
	  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);

}

.topic-item h4 {
   color: #ffffff;
   font-size:      18px;
    margin-bottom: 12px;
                    font-weight: 700;
}

.topic-item p{
  color: rgba(255, 255, 255, 0.85);
   font-size: 14px;
  line-height: 1.6;
}

.cta-section {
    padding: 80px 40px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    text-align: center;
                    margin: 60px 0;
}

.cta-wrapper {
    max-width:     700px; 
	    margin  : 0 auto;
}

.cta-section h2 {
  font-size: 40px;
   color: #ffffff;
   margin-bottom: 20px;
   font-weight: 800;
}

.cta-section p {
 font-size  :       18px;
  color: rgba(255, 255, 255, 0.9);
                    margin-bottom: 35px;
     }

.cta-button-large {
   display: inline-block;
    padding: 18px 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
	color: #1e3c72;
    text-decoration: none;
    border-radius: 50px;
  font-weight:   700;
   font-size: 17px;
   transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {

  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
	}

.contact-section {
       background: #f8f9fa;
    margin: 80px auto;
   margin: 0 auto;
   padding: 80px 40px;
  border-radius: 15px;
   max-width: 900px;
     }

.contact-section h2 {
      color: #1e3c72;
  margin-bottom: 15px;
  font-weight: 800;
    font-size: 40px;
        text-align: center;


}


.contact-intro {
    text-align: center;
   font-size: 16px;
   color: #7f8c8d;
   margin-bottom: 50px;
}

.contact-form

{
	display: grid;
         gap: 25px;
}

.form-group {
   display: flex;
  flex-direction: column; 
	
} 

.form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form label


{
   font-weight: 600;
  color: #1e3c72;
  margin-bottom: 8px;
  font-size   :  15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
   padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
	font-size: 15px;
  font-family: inherit;
    transition: all 0.3s ease;
   background:       #ffffff; 
	
}



.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline    :     none;
	    border-color: #667eea;
	  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1); 

}

/* Performance critical */

.contact-form textarea  {
  resize: vertical; 
	    min-height: 150px;
}

.submit-button {
  padding: 16px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
        border: none;
       border-radius: 8px;
    font-weight: 600;
  font-size: 16px;
        cursor: pointer;
    transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);

}

.footer {


  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
   color: #ffffff;
    padding: 60px 40px 20px;}

.footer-container {
	    max-width: 1200px;
    margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 50px;
   margin-bottom: 40px;
     }
	/* Build system output */

.footer-logo-section {
   display: flex;
    align-items: center;
}

.footer-logo {
   height :   86px;
    width: auto;
  filter: brightness(0) invert(1);
}
	/* Colors and backgrounds */


/* Experimental feature */
.footer-info h3 {
  font-size     :        20px; 
  margin-bottom: 15px; 
   font-weight: 700;
}

.footer-address {
	   font-size: 14px;
   margin-bottom: 10px;
	 line-height: 1.6;}

.footer-phone {
	font-size  :  14px;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
}



.footer-links ul,
.footer-legal ul
{
    list-style :     none;
}

.footer-links li,
.footer-legal li {
  margin-bottom  :  10px;
}

.footer-links a,
.footer-legal a {


  color: rgba(255, 255, 255, 0.8);
  text-decoration  :        none;
        font-size: 14px;
   transition: all 0.3s ease;
	
     }

.footer-links a:hover,
.footer-legal a:hover {

  color: #ffd700;

}

.footer-bottom {
   text-align: center;
    padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .services-overview,
    .advisory-section,
    .training-section,
    .negotiation-section,
    .governance-section,
    .webinar-section,
    .contact-section {
        padding: 50px 20px;
    }

    .section-header h2,
    .negotiation-header h2,
    .governance-section h2,
    .webinar-section h2,
    .contact-section h2 {
        font-size: 28px;
    }

    .advisory-section,
    .training-section,
    .negotiation-wrapper,
    .governance-content,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .webinar-topics {
        grid-template-columns: 1fr;
    }

    .webinar-section {
        margin: 50px 20px;
    }

    .cta-section {
        padding: 50px 20px;
        margin: 40px 0;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 70px;
    }

    .nav-logo {
        height: 50px;
    }

    .brand-name {
        font-size: 18px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .service-card {
        padding: 25px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .advisory-content h2,
    .training-content h2,
    .negotiation-details h3,
    .governance-text h3 {
        font-size: 22px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        height: 70px;
    }
}.services-hero {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
   padding    :    100px 40px;
   text-align: center;
    margin-top: 80px;
}

.hero-content-services {
 max-width: 900px;
  margin     :       0 auto;
}

.services-hero h1		{
  font-size: 48px;
  color: #ffffff;
   margin-bottom  :    20px;
   font-weight: 800;
}

.services-hero p {
	 font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
   line-height     :    1.8;

}

.service-detailed {
   padding: 80px 40px;
	max-width: 1200px;
    margin: 0 auto;
}

.service-item {
   margin-bottom:  100px;

}

.service-item:last-child {
    margin-bottom: 0;
}

.service-header {
  margin-bottom: 40px;
}

.service-header h2 {
     font-size: 36px;
    color: #1e3c72;
	font-weight   :    800;
   position: relative;
  padding-bottom  :  20px; 
	
}

.service-header h2::after {
  content: '';
  position: absolute;
   bottom: 0;
   left: 0;
	width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.service-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
        gap: 60px;
   align-items: center;
}

.service-body.alternate-body {
  grid-template-columns :  1fr 1fr;
}

.service-body.alternate-body > img
{
   order :        -1;
}

.service-text h3 {
   font-weight: 700;
    margin: 25px 0 20px 0;
    color: #1e3c72;
    font-size: 22px;
}

.service-text p {
       font-size: 16px;
 color: #555;
    line-height: 1.8;
    margin-bottom: 15px;


}

.service-list {
     list-style: none;
               margin: 20px 0;
}

.service-list li {
        padding: 12px 0;
  padding-left: 30px;
   position: relative;
	 color:#34495e;
      font-size  :     15px;
}

.service-list li::before    {
  content: '▸';
       position: absolute;
    left: 0;
    color  : #667eea;
    font-size: 20px;
        font-weight: 600;
}

.service-body img  
  {
   width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease;
}

.service-body img:hover {
  transform: scale(1.02);
     }

.pricing-section {
    padding: 80px 40px;
   max-width: 1200px;
   margin: 0 auto;
  background   :     #f8f9fa;
                    border-radius     :     15px;
      margin  :     80px auto;
}

.pricing-section h2 {
    font-size: 42px;
   text-align    :     center;
		color: #1e3c72;
   margin-bottom   :     15px;
  font-weight: 800;
}

.pricing-intro {
     text-align: center;
	font-size: 18px;
	color     :  #7f8c8d;
   margin-bottom: 60px;
}

.pricing-grid {
  display     : grid;

	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

		 gap: 30px;
}

.pricing-card {
  background: #ffffff;
    padding: 45px;
   border-radius: 12px;
   border    :       2px solid #e0e0e0;
    text-align: center;
   transition: all 0.4s ease;
  position: relative;

}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured  {
  border-color: #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  transform: scale(1.05); 
	
}

.featured-badge
	{

		 position: absolute;
   top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: #ffffff;
    padding: 8px 20px;
   border-radius    :       20px;
                    font-size: 12px;
   font-weight: 700;
  letter-spacing: 1px;}

.pricing-card h3 {
  font-size: 24px;
  color: #1e3c72;
  margin-bottom: 15px;
   margin-top: 5px;
  font-weight: 700;
}

.price-description {
  font-size: 15px;
       color: #7f8c8d;
    margin-bottom: 30px;
   line-height:1.6;
}

.pricing-features {
  list-style: none;
               text-align: left;
   margin-bottom: 30px;
}

.pricing-features li {
  color: #34495e;
   padding-left :     28px;
  font-size: 14px;
    padding :   12px 0;
   position: relative;
}

.pricing-features li::before {

  content: '✓';
	position     :  absolute;
  left: 0;
  color     :    #2ecc71;
      font-weight    :    800;
	font-size: 16px;
}

.faq-section 
 {
  padding: 80px 40px;
  max-width: 1000px;
    margin: 0 auto;


}

.faq-section h2 {
	 font-size  :   42px;
  text-align: center;
   color: #1e3c72;
   margin-bottom: 60px;
   font-weight: 800;
}

.faq-container {
   display: flex;
  flex-direction     :        column;
   gap: 20px;
}

.faq-item    {
   background: #ffffff;
  border     :      1px solid #e0e0e0;
   border-radius: 8px;
   overflow: hidden;
      transition    :  all 0.3s ease;
}

.faq-item:hover {


  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	 border-color: #667eea;}

.faq-question{
                    width: 100%;
               padding: 20px 25px;
    background: #ffffff;
     border: none;
   cursor: pointer;
    display: flex;
	 justify-content: space-between;
    align-items: center;
  font-size: 16px;
   font-weight: 600;
	color: #1e3c72;
   transition: all 0.3s ease;
     } 

.faq-question:hover {

	    background: #f8f9fa;
     }

.faq-question.active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea; 

}

.faq-toggle {
  font-size: 24px;

  font-weight: 300;

  transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg); 

}

.faq-answer {
	max-height     :      0;
   overflow: hidden;
  background: #f8f9fa;
  transition: max-height 0.3s ease; 
	
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
  padding: 20px 25px;
	line-height: 1.8;
   color: #555;
    font-size: 15px;
}

.why-us-section {
    padding: 80px 40px;
        max-width :     1200px;
  margin    :   0 auto;
}

.why-us-section h2 {
  font-size: 42px;
	text-align: center;
    color: #1e3c72;
   margin-bottom: 60px;
    font-weight: 800;
}

.why-us-grid {
    display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
	               gap: 30px;
}

.why-us-card {
    background: #ffffff;
    padding: 40px;
   border-radius :  12px;
  border: 1px solid #ecf0f1;
  transition     : all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.why-us-card:hover


{
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color  : #667eea;


}

.why-us-card h3	{
       font-size: 22px;

	   color: #1e3c72;

	  margin-bottom: 15px;

	   font-weight: 700;}

.why-us-card p {
  font-size:15px;
    color    :#555;
   line-height     :      1.8;
}

.testimonials-section {
                    padding: 80px 40px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

}  

.testimonials-section h2


{
    font-size: 42px;
   text-align: center;
  color: #1e3c72;
    margin-bottom: 60px;
    font-weight  :    800;
   max-width    :       1200px;
    margin-left: auto;
      margin-right: auto;
}

.testimonials-grid  {
  max-width: 1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card     {
   background: #ffffff;
  padding: 35px;
  border-radius: 12px;
    border-left: 5px solid #667eea;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
}

.testimonial-card:hover


{
  transform: translateY(-5px);

	  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-text 
 {
		font-size: 15px;
    color: #555;
  font-style  :     italic;
   margin-bottom: 20px;
                    line-height   : 1.8;
}

.testimonial-author {
	font-size: 14px;
 color: #1e3c72;
	 font-weight: 600;
}

.cta-services	{


  padding:    80px 40px; 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
        text-align: center; 
    margin: 60px 0;
}

.cta-services h2 {
  font-weight: 800;
	color: #ffffff;
   font-size: 40px;
    margin-bottom: 15px;
}

.cta-services p {
       font-size :   18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
}

.cta-button-services {
   display: inline-block;
  padding :16px 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1e3c72;
  text-decoration: none;
         border-radius: 50px;
  font-weight     :        700;
  font-size: 16px;
   transition     :all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-services:hover    {
  transform: scale(1.05);

	  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.thank-you-section  {
  padding : 100px 40px;
    max-width: 900px;
   margin: 80px auto 0;
  text-align: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;}

.thank-you-container {
    padding: 60px;
   background: #ffffff;
    border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.success-icon 
 {
	display   :       flex;
   justify-content: center;
  margin-bottom  :        30px;

}  

.success-icon svg {
     filter: drop-shadow(0 4px 10px rgba(46, 204, 113, 0.2));
}

.thank-you-section h1 {
	font-size: 48px;
        color: #2ecc71;
	margin-bottom: 10px;
  font-weight: 800;
}

.thank-you-section h2 {
   font-size: 28px;
  color: #1e3c72;
   margin-bottom: 25px;
   font-weight: 700;
}

.thank-you-message {

	    font-size     :        16px; 
	   color: #555; 
	       margin-bottom: 40px; 
	   line-height: 1.8; 
	   max-width: 700px; 
	               margin-left  :      auto; 
	  margin-right: auto;
	
}


.thank-you-details {
		 background: #f8f9fa;
  padding    : 30px;
  border-radius:10px;
   margin-bottom: 40px;
    text-align   :      left;
}

.thank-you-details h3 {
      font-size: 20px;
  color: #1e3c72;
    margin-bottom: 20px;
  text-align: center;
   font-weight: 700;
}

.next-steps {
				 list-style: none;
}



.next-steps li 
 {


  padding: 12px 0;
    padding-left: 30px;
   position :    relative;
        color: #34495e;
  font-size   :   15px;
}

.next-steps li::before {
  content: '→';
  position: absolute;
	left: 0;
   color: #667eea;
    font-weight: 700;
    font-size: 18px;
}

.contact-note {
    font-size: 16px;

	  color: #555;

	    margin-bottom:  15px;
}

.phone-number {


    font-size: 24px;
    color: #667eea;
  font-weight :     700;
    margin-bottom: 40px;

}

.thank-you-actions {
  gap: 20px;
  justify-content: center;
    display   : flex;
    flex-wrap: wrap;
}

.button-home,
.button-services {

	  display: inline-block;
   padding: 14px 40px;
    border-radius: 8px;
   text-decoration: none;
 font-weight: 600;
               font-size: 15px;
    transition: all 0.3s ease;
}

.button-home {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}  

.button-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.button-services {
    background: #ffffff;
	 color: #667eea;
   border: 2px solid #667eea;
}

.button-services:hover {
  background: #667eea;
  color :    #ffffff;
}

.additional-info-section {
    padding: 80px 40px;
  max-width  :   1200px;
  margin: 0 auto;
}

.additional-info-section h2 {
   font-size: 36px;
  text-align: center;
   color: #1e3c72;
   margin-bottom: 60px;
   font-weight: 800;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.info-card {
     background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding: 35px;
   border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.2);
          text-align: center;
     }  

.info-card h3{
   font-size: 20px; 
	    color: #1e3c72; 
	    margin-bottom: 15px; 
	   font-weight: 700;
}

.info-card p {
    font-size:       15px;
   color: #555;
   line-height  : 1.8;
}

.explore-section {
  padding: 80px 40px;
   background : #f8f9fa;
  max-width: 1200px;
  margin: 0 auto;
                    border-radius     :      15px;
  margin: 80px auto;


}

.explore-section h2  
  {
   font-size: 36px;
    text-align: center;
  color: #1e3c72;
   margin-bottom: 60px;
   font-weight: 800; 
	
}

.explore-cards {
      display  :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.explore-card {
  -webkit-border-radius: 12px;
    background: #ffffff;
    padding    :       40px;
  border-radius: 12px;
    -moz-border-radius: 12px;
   border: 1px solid #ecf0f1;
  transition: all 0.3s ease;
}

.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.explore-card h3 {
	font-size: 22px;
    color: #1e3c72;
   margin-bottom: 15px;
        font-weight  :        700;

}

.explore-card p {
   font-size: 15px;
    color: #555;
    margin-bottom: 20px;
			line-height: 1.8;
}

.explore-link {
                    display: inline-block;
 color:  #667eea;
  text-decoration: none;
    font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
   position: relative; 

}

.explore-link::after {
  content: '';
    position: absolute;
  bottom:      -3px;
   left  :       0;
    width: 0;
   height: 2px;
   background: #667eea;
    transition: width 0.3s ease;
}

.explore-link:hover::after {
        width     :        100%;
}@media (max-width: 768px) {
    .services-hero {
        padding: 60px 20px;
        margin-top: 70px;
    }

    .services-hero h1 {
        font-size: 32px;
    }

    .services-hero p {
        font-size: 16px;
    }

    .service-detailed,
    .pricing-section,
    .faq-section,
    .why-us-section,
    .testimonials-section,
    .additional-info-section,
    .explore-section {
        padding: 50px 20px;
    }

    .service-body,
    .service-body.alternate-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-header h2,
    .pricing-section h2,
    .faq-section h2,
    .why-us-section h2,
    .testimonials-section h2,
    .explore-section h2,
    .additional-info-section h2 {
        font-size: 28px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .thank-you-container {
        padding: 30px;
    }

    .thank-you-section h1 {
        font-size: 32px;
    }

    .thank-you-section h2 {
        font-size: 22px;
    }

    .thank-you-actions {
        gap: 15px;
    }

    .cta-services h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 24px;
    }

    .service-text h3,
    .pricing-card h3,
    .why-us-card h3,
    .explore-card h3 {
        font-size: 18px;
    }

    .thank-you-section {
        margin: 70px 20px 0;
    }

    .thank-you-container {
        padding: 20px;
    }

    .thank-you-section h1 {
        font-size: 28px;
    }

    .button-home,
    .button-services {
        width: 100%;
        padding: 12px 20px;
    }

    .pricing-section,
    .explore-section {
        margin: 50px 20px;
    }
}.policy-hero-cookies,
.policy-hero-privacy  
  {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 100px 40px;
  text-align: center;
	margin-top    :     80px;
}

.policy-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-hero-cookies h1,
.policy-hero-privacy h1 {
   font-size: 48px;
    color :  #ffffff;
	 margin-bottom: 20px;
    font-weight: 800;
}

.policy-hero-cookies p,
.policy-hero-privacy p {
    font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}  

.policySection {
	 padding: 80px 40px;
    background: #f8f9fa;
         min-height: 500px;
}

.policyContainer {
    max-width: 900px;
   margin: 0 auto;
  text-align: left;
    background    :     #ffffff;
	padding: 60px;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policyContainer h2 {
    font-weight     :  800;
   padding-bottom: 15px;
  font-size: 28px;
  color: #1e3c72;
     position: relative;
    margin-top: 40px;
   margin-bottom: 25px;
}

.policyContainer h2:first-child {
     margin-top: 0;
}

.policyContainer h2::after {
  content: '';
	  position: absolute;
	  bottom: 0;
	       left: 0;
	  width: 60px;
	    height   :     3px;
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	      border-radius: 2px;
}

.policyContainer p {
   color: #555;
  margin-bottom: 20px;
   line-height: 1.9;
       font-size: 16px;
    text-align: justify;
}

.policyContainer p:last-of-type {

  margin-bottom: 0;
	}@media (max-width: 768px) {
    .policy-hero-cookies,
    .policy-hero-privacy {
        padding: 60px 20px;
        margin-top: 70px;
    }

    .policy-hero-cookies h1,
    .policy-hero-privacy h1 {
        font-size: 32px;
    }

    .policy-hero-cookies p,
    .policy-hero-privacy p {
        font-size: 16px;
    }

    .policySection {
        padding: 60px 20px;
    }

    .policyContainer {
        padding: 40px;
        max-width: 100%;
    }

    .policyContainer h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .policyContainer p {
        font-size: 15px;
        line-height: 1.8;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-hero-cookies h1,
    .policy-hero-privacy h1 {
        font-size: 24px;
    }

    .policy-hero-cookies p,
    .policy-hero-privacy p {
        font-size: 14px;
    }

    .policySection {
        padding: 40px 15px;
    }

    .policyContainer {
        padding: 25px;
        border-radius: 8px;
    }

    .policyContainer h2 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .policyContainer p {
        font-size: 14px;
        line-height: 1.7;
    }
}