* {
   margin: 0;
	    padding :        0;
	 box-sizing    :      border-box;
}

html {
               scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;


}

.navbar {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 0;
  position  :     sticky;
  top: 0;
    z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-container {
	max-width: 1400px;
    margin: 0 auto;
               display  :       flex;
   align-items: center;
  justify-content:   space-between;
   padding: 16px 30px;
}

.nav-brand    {
	display: flex;
   align-items    : center;
}

.nav-logo {
         height: 64px;
  width: auto;
  display  :       block;
}

.nav-menu {
  list-style :        none;
    display: flex;
  gap   :       35px;
  align-items: center;
}

.nav-link
	{

   text-decoration: none;
  color: #2c3e50;
    font-weight: 500;
   font-size: 15px;
   letter-spacing: 0.3px;
   transition :  all 0.3s ease;
    position :  relative;}

.nav-link::after {
  content: '';
    position: absolute;
   bottom: -4px;
	 left: 0;
    width: 0;
   height :       2px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transition   :        width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.nav-burger {
    cursor: pointer;
        background: none;
  border: none;
  display     :    none;
  gap :  5px;
   flex-direction: column;
}

.burger-line {


  width: 24px;
    height: 2.5px;
    background-color: #2c3e50;
   transition: all 0.3s ease;
   border-radius: 2px;
	}@media (max-width: 768px) {
    .nav-container {
        padding: 12px 20px;
    }

    .nav-logo {
        height: 50px;
    }

    .nav-burger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-link {
        display: block;
        padding: 12px 15px;
        width: 100%;
    }

    .nav-burger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}.hero	{
   grid-template-columns: 1fr 1fr;
   max-width: 1400px;
  padding: 80px 30px;
     margin    :        0 auto;
    display:      grid;
    align-items: center;
	 gap   :    60px;
}

.hero-content h1 {
	font-size: 48px;
  line-height: 1.2;
   margin-bottom: 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
}

.hero-subtitle {
    line-height :     1.7;
   color   : #555;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: #ffffff;
    padding: 16px 40px;
		border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
   font-size: 16px;
    transition :      all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.hero-image {
    display:    flex;
    align-items: center;
  justify-content     :        center;
}

.hero-img {
  width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 50px 20px;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}.services-overview {
	 max-width: 1400px;
    margin: 0 auto;
	padding: 100px 30px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
         text-align: center; 
	  margin-bottom: 60px;

}

.section-header h2 {
   font-size: 42px;
   margin-bottom: 16px;
    color: #2c3e50;
}

.section-header p {
   font-size: 18px;
   color: #666;
}

.services-grid {
  display:   grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 30px;
}

.service-card {
    background: #ffffff;
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
   display: flex;
         flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
}

.service-image {
    width: 100%;
  height: 240px;
    object-fit     :      cover;
}

.service-card h3 {


    font-size     :     22px;
    margin: 24px 24px 12px;
	color: #2c3e50;


}

.service-card p {
   font-size: 15px;
  color: #666;
    margin: 0 24px 24px;
  line-height  :   1.6;
  flex-grow: 1;
}@media (max-width: 768px) {
    .services-overview {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 32px;
    }
}.webinars-section
{
	 max-width: 1400px;
  margin: 0 auto;
					padding: 100px 30px;
	display  :      grid;
        grid-template-columns: 1fr 1fr;
	gap: 60px;
    align-items: center;
}

.webinars-section h2 {
  grid-column: 1 / -1;
    font-size: 42px;
    margin-bottom: 40px;
    color  :       #2c3e50;
}

.webinar-content h3	{
   font-size: 28px;
   margin-bottom: 16px;
   color     :       #2c3e50;
}

.webinar-content p

{
   font-size: 16px;
    color: #666;
  margin-bottom: 24px;
    line-height: 1.7;
} 

.webinar-list {
          list-style: none;

	padding: 0;
}

.webinar-list li {
  padding: 12px 0;
  padding-left: 28px;
 position  :      relative;
  color    :#555;
  font-size: 15px;
}

.webinar-list li::before {
  content: '✓';
    position: absolute;
  left: 0;
    color: #667eea;
	font-weight: bold;
   font-size   :     18px;
}

.webinar-image	{
    border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  height: 350px;
   object-fit: cover;
}@media (max-width: 768px) {
    .webinars-section {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 40px;
    }

    .webinars-section h2 {
        font-size: 32px;
    }

    .webinar-image {
        height: 280px;
    }
}.conference-section {
  max-width: 1400px;
  margin: 0 auto;
  padding  :    100px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.conference-header {
	    text-align: center;
   margin-bottom: 60px;
    color: #ffffff;
}

.conference-header h2 {
   font-size: 42px;
  margin-bottom: 16px;
}

.conference-header p {
  font-size: 18px;
    opacity: 0.95;
}

.conference-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.conference-card {


  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
	border-radius:    12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
   transition  :     all 0.3s ease;}

.conference-card:hover {
  transform: translateY(-6px); 
	  background: rgba(255, 255, 255, 0.15); 
	  border-color: rgba(255, 255, 255, 0.3);
}

.conference-image {
               width: 100%;
  height: 240px;
    object-fit: cover;
}

.conference-card h3 {


  font-size     :       22px;
   color: #ffffff;
   margin: 24px 24px 12px;


}

.conference-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
	 margin: 0 24px 24px;
	 line-height: 1.6;
}@media (max-width: 768px) {
    .conference-section {
        padding: 60px 20px;
    }

    .conference-header h2 {
        font-size: 32px;
    }
}.methodology-section {
   max-width: 1400px;
    margin: 0 auto;
   padding: 100px 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Colors and backgrounds */

.methodology-section h2 {
   font-size: 42px;
   text-align: center;
  margin-bottom: 60px;
	color: #2c3e50;
}

.methodology-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; 

}

.method-item {
  background: #ffffff;
   padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	position: relative;
   transition: all 0.3s ease;
}

.method-item:hover {
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
  transform: translateY(-4px);
}

.method-number {
  font-size: 48px;
 font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
         margin-bottom:  16px;
}
	/* Component styles */


.method-item h3   {
    font-size:     22px;
    margin-bottom: 12px;
   color: #2c3e50;
}

.method-item p {
	font-size: 15px;
    color: #666;
   line-height: 1.7;
}
@media (max-width: 768px) {
    .methodology-section {
        padding: 60px 20px;
    }

    .methodology-section h2 {
        font-size: 32px;
    }

    .method-item {
        padding: 30px 20px;
    }
}.cta-section {
    max-width: 1400px;
   margin: 0 auto;
  padding: 80px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
	 text-align: center;
     color: #ffffff;
      margin-bottom: 80px;
}

.cta-wrapper h2 {
  font-size: 42px;
   margin-bottom  :16px;
       line-height: 1.2;
}

.cta-wrapper p {
    font-size :      18px;
         margin-bottom: 32px;
  opacity: 0.95;
  max-width: 600px;
        margin-left: auto;
	margin-right: auto;
}

.cta-button-large {
  display: inline-block; 
	    background: #ffffff; 
	    color: #667eea; 
	   padding: 18px 45px; 
	  border-radius: 8px; 
	   text-decoration: none; 
	   font-weight: 700; 
	   font-size : 16px; 
	   transition: all 0.3s ease; 
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover    {
	  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	}@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-wrapper h2 {
        font-size: 32px;
    }

    .cta-wrapper p {
        font-size: 16px;
    }
}.contact {
  max-width: 800px;
	margin: 0 auto;
    padding: 80px 30px;
}

.contact h2		{
   font-size: 42px;
               text-align     :       center;
  margin-bottom: 50px;
    color: #2c3e50;
}

.contact-form {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px;
    border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-group {
   margin-bottom: 24px;
   display: flex;
       flex-direction: column;
}

.form-group label


{
   font-weight: 600;
                    margin-bottom     : 8px;
   color     : #2c3e50;
  font-size     : 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px 16px;
         border: 2px solid #e0e0e0;
        border-radius     :     6px;
    font-size: 15px;
   font-family: inherit;
          transition: all 0.3s ease;
        color    :     #2c3e50;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
   border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder {
  color: #aaa;
}

.form-submit {
  width: 100%;
					padding: 14px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
	 border-radius: 6px;
    font-weight :        600;
   font-size: 16px;
  cursor: pointer;
   transition :all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);


}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.form-submit:active    {
  transform: translateY(0);
}@media (max-width: 768px) {
    .contact {
        padding: 60px 20px;
    }

    .contact h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
	color: #ffffff;
	padding: 60px 30px 30px;
	margin-top    :       80px;
}

.footer-container {
               max-width    :      1400px;
    margin: 0 auto;
	 display    :       grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap     :        50px;
   margin-bottom: 40px;
}

.footer-logo-img  
  {
  height: 86px;
   width: auto;
    display: block;
  filter: brightness(0) invert(1);
	margin-bottom: 20px;
}

.footer-info h3 {
		font-size: 24px; 
    margin-bottom: 16px; 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
  background-clip: text;
}

.footer-address {
    font-size: 15px; 
    line-height: 1.8; 
    opacity: 0.9; 
   margin-bottom: 12px;
}

.footer-phone {
  font-size: 15px;
    opacity   :      0.9;
}

.footer-nav h4 {
	                    font-size    :    18px;

   margin-bottom: 20px;

    color: #ffffff;
     }

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
	margin-bottom: 12px;


}

.footer-nav a {
  color: #bbb;
  text-decoration     :     none;
   font-size: 15px;
   transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #667eea;
}

.footer-bottom {
                    max-width: 1400px;
   margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
               text-align: center;
  opacity: 0.8;
               font-size: 14px;
}@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-logo-img {
        height: 70px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
  padding: 80px 30px;
  text-align: center;
  max-width  :     100%;
}

.services-hero h1 {


   font-size: 48px;
   margin-bottom: 16px;
  line-height:   1.2;
     }

.services-hero-subtitle {
    font-size     :      18px;
	 opacity: 0.95;
  max-width: 700px;
        margin: 0 auto;
} 

.services-detailed {
	  max-width     :      1400px;
  margin: 0 auto;
    padding: 100px 30px;
	}

.service-detail-item {

	   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
   margin-bottom: 100px;
   align-items: center;
	}

.service-detail-reverse {
  direction: rtl;
}

.service-detail-reverse > *
	{
        direction    :       ltr;
}

.service-detail-image {
       display: flex;
   align-items: center;
   justify-content: center;
}

.detail-img

{
	width :100%;
	height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	
}

.service-detail-content h2 {
    font-size: 36px;
	margin-bottom     :  16px;
	color: #2c3e50;
}

.service-detail-content > p {
	  font-size: 16px;
   line-height: 1.8;
   color: #555;
    margin-bottom: 24px;
}

.service-detail-content h3 {
  font-size: 18px;
     margin-top: 24px;
   	margin-bottom: 16px;
     color: #2c3e50;
}

.service-features {
      list-style: none;
   padding   : 0;
}

.service-features li {


	position: relative;
            color:   #555;
      padding-left: 28px;
      line-height: 1.6;
       font-size   :15px;
     padding: 10px 0;
	}

.service-features li::before {
  content: '→';
  position: absolute;
   left: 0;
    color: #667eea;
    font-weight:bold;
  font-size: 16px;
}

.service-duration {

	    margin-top: 24px;
  padding: 16px;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9fa 100%);
   border-left: 4px solid #667eea;
    border-radius: 6px;
			font-size: 14px;
	color: #555;




}@media (max-width: 968px) {
    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .service-detail-reverse {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }
}.pricing-section {
    max-width  : 1400px;
  margin: 0 auto;
    padding: 100px 30px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-section h2 {
          font-size    :      42px;
   text-align   :       center;
    margin-bottom: 16px;
        color: #2c3e50;
}  

.pricing-intro {
    text-align: center;
   font-size: 18px;
    color:#666;
  margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
   margin-bottom: 60px;
}

.pricing-card
	{
    background   :   #ffffff;
   border: 2px solid #e0e0e0;
   border-radius: 12px;
	padding: 40px 30px;
   position :relative;
    transition  :all 0.3s ease;
  display: flex;
     flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.pricing-card-featured {
  border-color: #667eea;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.pricing-card-featured:hover {
     transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
	}

.pricing-badge {
   position: absolute;
   top     : -12px;
                    left: 20px;
               background: #f0f4ff;
  color: #667eea;
   padding: 6px 12px;
    border-radius: 20px;
  font-size: 11px;
   font-weight  :     700;
   letter-spacing    :       0.5px;
}

.pricing-badge-featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

/* Animation and transitions */
	/* State modifiers */

/* Component styles */


.pricing-card h3 {
     font-size: 24px;
   margin: 20px 0 12px;
  color: #2c3e50;
}

.pricing-price 
 {
	font-size: 42px;
    font-weight: 700;
    color: #667eea;
  margin    :       16px 0 0;

}

/* Development only */

.pricing-period {
   font-size: 14px;
   color: #999;
   margin-bottom: 24px; 

}

.pricing-features {


          list-style  : none;
    padding   :      0;
    margin: 24px 0;
        flex-grow: 1;
     }

.pricing-features li {
  padding: 10px 0; 
			padding-left: 24px; 
	   position: relative; 
	  color: #555; 
	   font-size: 14px; 
	  line-height: 1.6; 
	
}

.pricing-features li::before {
  content: '✓';
   position: absolute;
  left: 0;
    color: #667eea;
  font-weight: bold;
    font-size: 14px;
}

.pricing-button {
    display: inline-block;
   background: #f0f4ff;
     color: #667eea;
	padding: 14px 24px;
  border-radius: 6px;
   text-decoration: none;
     font-weight: 600;
  font-size: 15px;
  transition :       all 0.3s ease;
    text-align: center;
    border: 2px solid #667eea;
		 margin-top :24px;
}

.pricing-button:hover {
	background: #667eea;
          color: #ffffff;
}

.pricing-button-featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
   border-color: transparent;
}

.pricing-button-featured:hover     {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.comparison-section {
  max-width     :       1400px;
   margin: 0 auto;
   padding: 100px 30px;
}  

.comparison-section h2 {
  font-size: 42px;
	 text-align: center;
	margin-bottom: 50px;
                    color: #2c3e50;
}

.comparison-table {
  background    :      #ffffff;
  border-radius :   12px;
	overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        overflow-x     :     auto;
}

table {
   width: 100%;
               border-collapse: collapse;
}

thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
}

th {
         padding: 20px;
    text-align     :     left;
  font-weight  :   600;
  font-size: 15px;
	letter-spacing     :       0.3px;
}

tbody tr {

	  border-bottom: 1px solid #e0e0e0;


}

tbody tr:hover {
  background: #f8f9fa;
}

td {
   padding: 18px 20px;
  font-size   :    14px;
    color: #555;
}

td:first-child {
    font-weight: 600;
   color: #2c3e50;
}

.check  
  {
   color    :      #2ecc71;
  font-weight: 600;


}

.cross {
   font-weight: 600;
  color: #e74c3c;
}

/* Hack for old browsers */

.faq-section  {
	      max-width: 900px;
  margin: 0 auto;
   padding: 100px 30px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);


}

.faq-section h2 {
	 font-size: 42px;
	    text-align: center;
	    margin-bottom: 60px;
			color    :    #2c3e50;
}

.faq-container

{

  display: flex;
   flex-direction  : column;
   gap: 16px;


}  

.faq-item {
    background: #ffffff;
   border-radius:     8px;
    overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover 
 {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 16px;
  margin: 0;
   padding: 20px;
   color: #2c3e50;
  cursor: pointer;
    display: flex;
   align-items: center;
    justify-content: space-between;
  font-weight   :       600;
  user-select: none;
}

.faq-question::after {
  content: '+';
    font-size: 24px;
    color: #667eea;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
   color: #764ba2;
}

/* Framework override */


.faq-answer


{
 max-height: 0;
   overflow: hidden;
   padding: 0 20px;
  color    :     #666;
        font-size: 15px;
    line-height: 1.7;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
      max-height: 300px; 
	  padding: 0 20px 20px 20px;
}

.cta-services  {
   max-width: 1400px;
    margin: 0 auto;
  padding:        80px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 16px;
  text-align: center;
   color: #ffffff;
	margin-bottom: 80px;
}

.cta-services h2 {
   font-size: 42px;
  margin-bottom: 16px;
}

.cta-services p {
    font-size: 18px;
	margin-bottom: 32px;
    opacity:        0.95;
  max-width: 600px;
    margin-left   :auto;
	margin-right: auto;
}

.cta-button-services {
 display: inline-block;
   background:     #ffffff;
   color: #667eea;
    padding: 16px 40px;
   border-radius: 8px;
  text-decoration     :  none;
    font-weight :     700;
   font-size: 16px;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-services:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
    .services-hero {
        padding: 60px 20px;
    }

    .services-hero h1 {
        font-size: 32px;
    }

    .services-detailed {
        padding: 60px 20px;
    }

    .pricing-section {
        padding: 60px 20px;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .comparison-table {
        font-size: 12px;
    }

    th, td {
        padding: 12px;
    }

    .cta-services {
        padding: 60px 20px;
    }

    .cta-services h2 {
        font-size: 32px;
    }
}.thankyou-container {
  min-height: calc(100vh - 200px);
	display: flex;
  align-items: center;
    justify-content: center;
    padding: 60px 30px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.thankyou-content {
    max-width  :   700px;
   text-align: center;
  background: #ffffff;
	padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
   margin-bottom     :    32px;
  display: flex;
   justify-content: center;
  animation: slideDown 0.6s ease;
}

.success-icon svg {
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.2));
}

.thankyou-content h1 {
      font-size: 42px;
  color: #2c3e50;
   margin-bottom: 16px;
  line-height: 1.2;
}

.thankyou-subtitle {
    font-size: 18px;
  color: #666;
	margin-bottom: 32px;
}

.thankyou-message {
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9fa 100%);
   padding: 24px;
	 border-radius: 8px;
    margin-bottom: 40px;
    border-left    :        4px solid #667eea;
}

.thankyou-message p {
	font-size:        15px;
         line-height: 1.8;
 color: #555;
   margin: 0;
}

.thankyou-steps {
	margin-bottom   :       40px;
	 text-align: left;
}

.thankyou-steps h2


{
  margin-bottom: 24px;
   color: #2c3e50;
   font-size :        24px;
	 text-align  : center; 

}

.steps-container {


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap     :     20px;

}



.step {
  background: #f8f9fa;
   padding  :        24px;
    border-radius: 8px;
  text-align: center;


}

.step-number {
   width: 50px;
    height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color  :       #ffffff;
	border-radius: 50%;
  display: flex;
   align-items     :  center;
        justify-content: center;
  font-size: 24px;
   font-weight: 700;
    margin: 0 auto 16px;
}

.step h3 {
   font-size: 16px;

	    color: #2c3e50;

	    margin-bottom: 8px;
}

.step p 
 {

   font-size: 13px;
  color :#666;
  line-height: 1.6;
        margin: 0;
	}

.thankyou-tips	{
    text-align: left;
    margin-bottom: 40px;
}

.thankyou-tips h2 {
   font-size   :        24px;
   margin-bottom: 20px;
    color: #2c3e50;
  text-align: center;
}

.tips-list {
  list-style: none;
    padding: 0;
}

.tips-list li {
	     padding: 12px 0;
                    padding-left: 28px;
                    position: relative;
  font-size: 14px;
   color :    #555;
  line-height: 1.6; 



}

.tips-list li::before {
	 left: 0;
  color: #667eea;
	 position: absolute;
  font-size: 16px;
  content: '✓';
   font-weight: bold;
}

.thankyou-contact 
 {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color :   #ffffff;
  padding: 24px;
    border-radius :     8px;
    margin-bottom: 40px;

}

.thankyou-contact h3 {

		 font-size    : 18px;
  margin-bottom: 12px;
     }

.thankyou-contact p {
   font-size: 14px;
   margin: 8px 0;
}

.thankyou-actions {
      display: grid;
  grid-template-columns: 1fr 1fr;
     gap: 16px;

}

.thankyou-button-primary,
.thankyou-button-secondary {
   display :  inline-block;
  padding: 14px 24px;
   border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
   font-size: 15px;
  transition: all 0.3s ease;
          border: none;
  cursor    :   pointer;


}

.thankyou-button-primary {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.thankyou-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.thankyou-button-secondary {
  background: #f0f4ff;
   color: #667eea;
    border: 2px solid #667eea;
}

.thankyou-button-secondary:hover {
      background: #667eea;
   color: #ffffff;


}

.testimonials-section    {
   max-width: 1400px;
    margin: 0 auto;
   padding: 100px 30px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-section h2	{
            font-size: 42px;
    text-align: center;
   margin-bottom: 60px;
          color: #2c3e50;
}

.testimonials-grid {
    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

               gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
   border-top: 3px solid #667eea;
	
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
	
}

.testimonial-text	{
   font-size: 15px;
	line-height  :    1.8;
  color: #555;
  margin-bottom: 20px;
  font-style  :italic;

}

.testimonial-author {
  font-size  :    16px;
    font-weight: 700;
  color: #2c3e50;
    margin-bottom: 4px;
}

.testimonial-role {
   font-size: 13px;
    color: #999;
  margin: 0;
}@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .thankyou-content {
        padding: 40px 24px;
    }

    .thankyou-content h1 {
        font-size: 32px;
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}.about-hero     {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               color: #ffffff;
       padding: 80px 30px;
	 text-align:    center;
} 

.about-hero h1 {
         font-size: 48px;
    margin-bottom: 16px;
   line-height: 1.2;


}

.about-hero p {
  font-size  :  18px;
    opacity: 0.95;
   max-width: 600px;
   margin: 0 auto;
}

.about-content {
  padding: 100px 30px;
               max-width: 1400px;
    margin: 0 auto;
}

.about-main   {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: flex-start;
   margin-bottom     :       100px;
}

.about-text h2 {
  line-height: 1.2;
   	margin: 32px 0 16px;
        color: #2c3e50;
      font-size: 32px;
}

.about-text h2:first-child {
  margin-top: 0;
}

.about-text p  {
	font-size: 16px; 
	  line-height: 1.8; 
	  color   :  #555; 
	   margin-bottom: 16px;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
         gap    :        24px;
  margin: 24px 0;
}

.value-item {
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9fa 100%);
  padding: 24px;
    border-radius: 8px;
   border-left: 4px solid #667eea;
}

.value-item h3{
    font-size: 18px;
  color: #2c3e50;
    margin-bottom :     8px;
}

.value-item p {
   font-size:      14px;
	 color: #666;
   margin: 0;
   line-height: 1.6;
}

.why-list {
	   list-style: none; 
	   padding: 0; 
	   margin: 24px 0;
     }

.why-list li {
    padding: 12px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
	 color: #555;
  line-height:    1.6;
}

.why-list li::before {

	  content: '★';

  position  :     absolute;

       left   :0;

					color: #667eea;

   font-size: 16px;

}

.about-image {
    display: flex;
  align-items: flex-start;
   justify-content: center;
}

.about-img
{
   width: 100%;
      height: auto;
   		border-radius: 12px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
       position: sticky;
       top: 100px;
}

.team-section {
    margin-bottom   :       100px;
	padding     :      60px;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9fa 100%);
  border-radius : 12px;
}

.team-section h2 {
      color   :    #2c3e50;
    margin-bottom: 16px;
   text-align: center;
   font-size: 42px;
	}

.team-intro {
   text-align: center;
    font-size: 16px;
    color: #666;
   margin-bottom :     50px;
     max-width  :600px;
   margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.team-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-member {
   background:        #ffffff; 
    padding: 30px; 
   border-radius: 8px; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
	transition: all 0.3s ease;
}

.team-member:hover {
     transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);


}

.member-info h3 {
	font-size:   20px;

  color: #2c3e50;

  margin-bottom: 8px;
}

.member-role {
  font-size: 14px;
	 color: #667eea;
  font-weight :     600;
    margin-bottom: 12px;
}

.member-bio {
	font-size: 14px;
     color: #666;
   line-height: 1.6;
  margin: 0;
}

.stats-section {
  padding: 80px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
   text-align: center;
}

.stats-section h2 {
    font-size: 42px;
		 color: #ffffff;
	    margin-bottom: 60px;
}

.stats-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;


}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
	 padding: 40px 30px;
                    border-radius  :    8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.stat-number {
	 font-size  :        48px;
  font-weight: 700;
   color    :     #ffffff;
       margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}@media (max-width: 968px) {
    .about-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img {
        position: static;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .team-section {
        padding: 40px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-content {
        padding: 60px 20px;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 15px;
    }

    .team-section {
        padding: 30px 20px;
        margin-bottom: 60px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        padding: 60px 20px;
    }

    .stats-section h2 {
        font-size: 32px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}.policySection {
    padding: 80px 2rem;
    background: #f8f9fa;
  min-height: calc(100vh - 400px);
}

.policyContainer {
   max-width: 900px;
   margin: 0 auto;
    text-align : left;
          background: #ffffff;
    padding: 60px;
	border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
  font-size :3rem;
  color: #2c3e50;
					margin-bottom: 40px;
       font-weight: 700;
   line-height: 1.2;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   background-clip: text; 
	
}

.policyContainer h2 {
    font-size: 1.8rem; 
	     color   :#2c3e50; 
	        margin-top: 40px; 
	  margin-bottom: 20px; 
	   font-weight : 700; 
	  padding-bottom: 10px; 
	    border-bottom: 2px solid #e0e0e0;
}

.policyContainer h2:first-of-type {
   margin-top: 0;
}

.policyContainer p {
  color: #555;
  margin-bottom  : 16px;
 line-height:   1.8;
    font-size: 1rem;
}


.policyContainer strong {
    color: #2c3e50;
   font-weight: 600;
}@media (max-width: 968px) {
    .policyContainer {
        padding: 40px;
    }

    .policyContainer h1 {
        font-size: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 14px;
        line-height: 1.7;
    }
}