*	{
  margin: 0;

   padding: 0;

  box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #ecf0f1;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
}

html {
	 scroll-behavior: smooth;


}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
	
}

.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position :sticky;
   top: 0;
    z-index: 1000;
} 

.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;
     flex: 0 0 auto;
}

.nav-logo {
    height: 64px;
  width: auto;
		 object-fit: contain;
}



.company-name {
   font-size: 22px;
                    font-weight: 700;
  color: var(--primary-color);
  display: none;
}

.nav-menu {
    display: flex;
  align-items  : center;
   gap: 40px;
}

.nav-link {

       text-decoration     :      none;
  color: var(--text-dark);
   font-weight    :  500;
   transition: color 0.3s ease;
  position: relative;
	
}

.nav-link::after {

	  content: ''; 
  position     :     absolute; 
      bottom: -5px; 
               left: 0; 
    width: 0; 
    height: 2px; 
  background: var(--secondary-color); 
 transition: width 0.3s ease;
     }

.nav-link:hover::after {
       width: 100%;

}

.burger-menu {

	   display: none;
  flex-direction    :    column;
   background: none;
   border: none;
    cursor: pointer;
                    padding: 8px;
   gap: 6px;


}

.burger-line {
	   width: 25px;
      height     :        3px;
     background: var(--primary-color);
       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);}

.hero {
	padding: 80px 20px;
   align-items  :        center;
       gap: 60px;
    display: grid;
 grid-template-columns: 1fr 1fr;
  margin: 0 auto;
    max-width: 1200px;


}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
          margin-bottom: 24px;
  color: var(--primary-color);
}

.hero-content p {
     font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
	 line-height: 1.8;
}

.cta-button {
   display  :inline-block;
		padding: 16px 40px;
  background: var(--secondary-color);
  color: var(--white);
	text-decoration:       none;
   border-radius: 8px;
  font-weight: 600;
	transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.cta-button:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
	
}

.hero-image  
  {
    position: relative;
}  

.hero-img {
    width: 100%;
    height: auto;
       border-radius: 12px;
     box-shadow: var(--shadow-lg);
}


.section-container {
  max-width :      1200px;
   margin: 0 auto;
  padding: 0 20px;
	
}

.section-container-full  {
    max-width: 100%;
    display: grid;
               grid-template-columns: 1fr 1fr;
	 gap: 60px;
    align-items: center;
	padding: 80px 20px;
}

.services-overview {
    padding: 80px 0;
  background: var(--light-bg);
}

.services-overview h2
	{
  font-size    :       40px;
   margin-bottom :   60px;
   text-align: center;
  color: var(--primary-color); 
	
}

.services-grid {
   display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 30px;

  margin-bottom: 20px;

}

.service-card {

	  background: var(--white);
   border-radius: 12px;
    overflow: hidden;
  box-shadow: var(--shadow-sm);
   transition: all 0.3s ease;

}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);


}

.service-image {
    width: 100%;
  height: 200px;
   overflow: hidden;

}

.service-image img {

	    width: 100%;
   height: 100%;
	 object-fit: cover;
  transition: transform 0.3s ease;

}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card h3 {
    font-size: 22px;
      margin: 20px;
  color: var(--primary-color);
}

.service-card p {

	 padding: 0 20px 20px;
  color: var(--text-light);
  font-size   :     16px;
	}

.expertise-section    {
    padding: 80px 0;
  background: var(--white);
}

.expertise-section-full{
   max-width: 1200px;
	margin: 0 auto;
}

.expertise-image {
	 width: 100%;}

.expertise-image img {
	width  :  100%;
  height: auto;
    border-radius: 12px;
  box-shadow: var(--shadow-md);
}



.expertise-content h2 {
    font-size :    40px;
    margin-bottom: 24px;
  color: var(--primary-color);
}

.expertise-content p {
	font-size: 18px;
	  color: var(--text-light);
	  margin-bottom: 20px;
	   line-height: 1.8;
}

.expertise-list {

    list-style: none;
    margin-top: 30px;

}

.expertise-list li {
  padding: 12px 0;
   padding-left: 30px;
    position: relative;
    font-size: 16px;
  color: var(--text-dark);


}

.expertise-list li::before  {
  content: '✓'; 
	   position: absolute; 
	    left: 0; 
	  color: var(--secondary-color); 
	 font-weight: bold; 
	          font-size: 20px; 
	
}

.conference-section {
	 padding: 80px 0;
  background: var(--light-bg);
}

.conference-section h2    {
   font-size: 40px;
   text-align: center;
    margin-bottom: 16px;
  color: var(--primary-color);
}

.section-subtitle {
   text-align: center;
   font-size: 20px;
  color: var(--text-light);
      margin-bottom  :     50px;
}

.conference-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap  :  40px;
}

.conference-card {

	  background: var(--white);
   padding     : 40px;
	 border-radius    :        12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
	 transition:       all 0.3s ease;
  border-top: 4px solid var(--secondary-color);
}

.conference-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent-color);
}

.conf-icon-wrapper {
				 justify-content :      center;

	        height: 60px;

	  display: flex;

	    align-items: center;

	   margin-bottom: 20px;
}

.conf-icon-wrapper img {
   width    :     60px;
  height: 60px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.conference-card h3 {


    font-size: 24px;
       margin-bottom: 16px;
  color: var(--primary-color);


}

.conference-card p {
  color: var(--text-light);
  font-size: 16px;
    line-height  :1.7;
   margin-bottom: 24px;
}

.link-button{
	  display: inline-block;
   padding: 12px 28px;
  background: var(--secondary-color);
  color: var(--white);
   text-decoration: none;
  border-radius: 6px;
    font-weight: 600;
  transition: all 0.3s ease;
	}

.link-button:hover {

	  background: var(--primary-color);
	  transform: translateX(4px);
}  

.process-section


{


  padding: 80px 0;
  background: var(--white);}

.process-section h2

{
   font-size: 40px;
  text-align: center;
   margin-bottom: 60px;
  color: var(--primary-color);
}

.process-timeline {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap: 20px;
	}

.process-step {
  background: var(--light-bg);
         padding    :      40px;
    border-radius: 12px;
	text-align: center;
  position: relative;
  transition  :       all 0.3s ease;
}

.process-step:hover  
  {

  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-4px);

}

.step-number {

	   display: flex;
	 align-items:    center;
    justify-content     : center;
   width: 50px;
	height: 50px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
    font-size: 24px;
   font-weight  :    700;
	margin: 0 auto 20px;
	}

.process-step:hover .step-number    {
  background: var(--accent-color);
}

.process-step h3 {
  font-size: 20px;
    margin-bottom: 12px;
  color: var(--primary-color);

}

.process-step:hover h3 {
  color: var(--white);
}

.process-step p {
  color: var(--text-light); 
	   font-size: 16px;
}

.process-step:hover p	{

	  color: rgba(255,255,255,0.9);
	}

.cta-section {
  padding     :    80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: 40px;
    margin-bottom: 24px;
  color: var(--white);
}

.cta-section p	{
	    font-size: 18px;
	margin-bottom: 20px;
  opacity   :  0.95;
   max-width:600px;
    margin-left: auto;
	margin-right  :  auto;
  line-height     :  1.8;
     }

.cta-button-large {

    display   :  inline-block;
  padding: 18px 50px;
  background: var(--accent-color);
  color: var(--white);
  text-decoration: none;
  border-radius:8px;
    font-weight: 600;
    font-size    :     18px;
    transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
    margin-top:      20px;

}

.cta-button-large:hover {
  background: var(--white);
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-section {
    padding :    80px 20px;
  background: var(--light-bg);

}

.contact-section h2 {
  font-size: 40px;
   text-align: center;
               margin-bottom: 16px;
  color: var(--primary-color);
}

.contact-subtitle {
    text-align:    center;
   font-size: 18px;
  color: var(--text-light);
   margin-bottom: 50px;


}

.contact-form {
    max-width    :      600px;
   margin    :    0 auto;
  background: var(--white);
    padding: 40px;
   border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.form-group {
   margin-bottom: 24px;
	
}

.contact-form input,
.contact-form select,
.contact-form textarea {
   width: 100%;
  padding     :14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
	 font-size: 16px;
   font-family: inherit;
  transition: all 0.3s ease;
  color: var(--text-dark);}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.submit-button {
   width: 100%;
    padding: 16px;
  background: var(--secondary-color);
  color: var(--white);
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
  cursor   :pointer;
        transition: all 0.3s ease;
}

.submit-button:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.footer
	{
  background: var(--primary-color);
  color: var(--white);
   padding: 60px 20px 20px;
}

.footer-container
{

	    max-width: 1200px;
	margin: 0 auto;
   margin-bottom: 40px;

}

.footer-logo-section {
  text-align: center;
    margin-bottom: 50px;
}

.footer-logo {


          height: 86px;
   width    :      auto;
   object-fit: contain;
  filter: brightness(0) invert(1);



}

.footer-content {


				 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 40px;}

.footer-column h3 {

	font-size: 18px; 
	  margin-bottom :     20px; 
	  color: var(--white);
	}

.footer-column ul {
  list-style  :      none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {

	  color: rgba(255,255,255,0.8);
  text-decoration: none;
   transition: color 0.3s ease;

}

.footer-column a:hover {
     color: var(--secondary-color);

}

.footer-address {
   font-size: 16px;
	line-height: 1.8;
  color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
}

.footer-phone a {

  color: var(--secondary-color);
   font-weight: 600;
	text-decoration: none;

}

.footer-phone a:hover    {
  color: var(--accent-color);
}

.footer-bottom {
	    text-align     :    center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
   font-size: 14px;

}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        gap: 10px;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-logo {
        height: 50px;
    }

    .company-name {
        display: inline;
        font-size: 18px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-container-full {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 40px;
    }

    .conference-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .process-step {
        padding: 30px 20px;
    }

    .process-step h3 {
        font-size: 18px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        height: 70px;
    }

    .section-container {
        padding: 0 20px;
    }

    .services-overview {
        padding: 60px 0;
    }

    .expertise-section {
        padding: 60px 0;
    }

    .conference-section {
        padding: 60px 0;
    }

    .process-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .services-overview h2,
    .process-section h2,
    .conference-section h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .cta-button,
    .cta-button-large {
        font-size: 16px;
        padding: 14px 24px;
    }

    .expertise-content h2 {
        font-size: 28px;
    }
}.page-header
	{
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.header-content h1 {
  font-size: 48px;
   margin-bottom: 16px;
  font-weight: 700;
}

.header-content p {
  font-size: 20px;
  opacity: 0.95;
}

.services-detail {
      padding: 80px 0;
  background: var(--white);
}

.service-detail-item {
	display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
   margin-bottom: 100px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left:   auto;
   margin-right : auto;
}

.service-detail-item.reverse {
   direction: rtl;
}

.service-detail-item.reverse > * {
	direction: ltr;
}

.detail-content h2 {
  font-size: 36px;
    margin-bottom  :  24px;
  color: var(--primary-color);
}

.detail-content p {
                    font-size: 16px;
  color: var(--text-light);
    line-height :        1.8;
	margin-bottom: 20px;
}

.detail-list {
     list-style: none;
   margin-top: 20px;
	}

.detail-list li {
       padding     :  10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  color: var(--text-dark);
     }

.detail-list li::before {
  content: '•';
    position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
   font-size: 22px;
}

.detail-image {
   width  :   100%;
}

.detail-image img {
   width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.pricing-overview {
     padding: 80px 0;
  background: var(--light-bg);
}

.pricing-overview h2 {
  font-size: 40px;
    text-align: center;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.pricing-grid {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 40px;
   margin-top :     60px;


}

.pricing-card {
  background: var(--white); 
   padding: 40px; 
  border-radius: 12px; 
  box-shadow: var(--shadow-md); 
  transition  :all 0.3s ease; 
	position: relative; 
			border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {

  border-color: var(--secondary-color);
  transform: scale(1.05);


}  

.featured-badge {
   position: absolute;
   top: -12px;
  left  :     50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: var(--white);
  padding     :      6px 16px;
   border-radius: 20px;
  font-size: 12px;
   font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 24px;
  color: var(--primary-color);
   margin-bottom: 16px;
    text-align :  center;
}

.price {
    font-size: 28px;
    font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
    margin-bottom: 30px;
}

.pricing-features {
   list-style: none;
	margin-bottom     :   30px;
}

.pricing-features li {
   padding: 12px 0;

  border-bottom: 1px solid var(--border-color);

  color: var(--text-light);

 font-size     :      16px;
}

.pricing-features li:last-child {
  border-bottom    :    none;
}

.pricing-button {
    display: block;
    width: 100%;
   padding: 14px 20px;
  background: var(--secondary-color);
  color: var(--white);
   text-decoration   : none;
			border-radius: 8px;
   text-align: center;
   font-weight :  600;
    transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.pricing-button:hover     {
  background: var(--primary-color); 
  border-color: var(--primary-color);
}

.pricing-card.featured .featured-button {

	  background: var(--secondary-color);
  border-color: var(--secondary-color);
	}

.pricing-card.featured .featured-button:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.why-choose-us {
  padding: 80px 0;
  background: var(--white);
}

.why-choose-us h2 {
    font-size: 40px;
  text-align: center;
    margin-bottom: 60px;
  color: var(--primary-color);
}

.reasons-grid {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}



.reason-card {
  background: var(--light-bg);
  padding :   40px 30px;
		border-radius: 12px;
     text-align: center;
  transition: all 0.3s ease;
}

.reason-card:hover {
     background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);


}

.reason-icon {
     height:       70px;
               display: flex;
  align-items: center;
   justify-content  :   center;
  margin-bottom: 20px;
	}

.reason-icon img {
   width: 70px;
    height: 70px;
  object-fit: contain;
}

.reason-card h3 {
	 font-size: 22px;
  color: var(--primary-color);
	margin-bottom: 16px;
}

.reason-card p
{
  color: var(--text-light); 
	    font-size: 16px; 
	    line-height: 1.7;
}

.success-stories  
  {
  padding: 80px 0;
  background: var(--light-bg);
}


.success-stories h2


{
		font-size   :40px;
    text-align: center;
   margin-bottom: 16px;
  color: var(--primary-color);
     }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
  margin-top: 60px;
}


.story-card {
  background: var(--white);
       padding: 40px;
                  border-radius: 12px;
     box-shadow: var(--shadow-sm);
     border-left: 4px solid var(--secondary-color);
      transition: all 0.3s ease;
}

.story-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.story-quote {
   font-size: 16px;
    font-style    :  italic;
  color: var(--text-dark);
  margin-bottom: 20px;
   line-height: 1.8;
}

.story-author {
          font-size: 14px;
  color: var(--text-light);
   font-weight: 600;
}

.cta-final {
	padding: 80px 20px;
  background: var(--primary-color);
  color: var(--white);
    text-align: center;
}

.cta-final h2 {
	 font-size: 40px;
    margin-bottom: 24px;
  color: var(--white);
}

.cta-final p  
  {
  font-size: 18px;
        margin-bottom: 32px;
  opacity: 0.95;
   max-width: 600px;
 margin-left: auto;
   margin-right: auto;
}

.cta-button-final

{
       display: inline-block;

  padding: 16px 40px;

  background: var(--secondary-color);

  color: var(--white);

          text-decoration: none;

	border-radius: 8px;

   font-weight: 600;

 font-size: 16px;

  transition: all 0.3s ease;

  border: 2px solid var(--secondary-color);
} 

.cta-button-final:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.thank-you-section {
	padding: 100px 20px;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  min-height: 100vh;
    display: flex;
    align-items: center;
  justify-content: center;


}

.thank-you-container	{
  max-width: 700px;
	                    text-align: center;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-icon img {
    width: 100px;
  height: 100px;
   animation: scaleIn 0.5s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thank-you-section h1 {
	font-size: 48px; 
	  color: var(--primary-color); 
	    margin-bottom: 12px;
}

.thank-you-subtitle {
    font-size  : 20px;
     color: var(--text-light);
     margin-bottom: 30px;}

.thank-you-message {
  background: var(--white);
                    padding :     40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
   margin-bottom: 50px;
  border-left: 4px solid var(--secondary-color);
}

.thank-you-message p {
  font-size: 16px;
  color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.thank-you-message p:last-child {
    margin-bottom: 0;
}

.thank-you-next-steps {
      margin-bottom: 50px;

}

.thank-you-next-steps h2 {
    font-size: 28px;
  color: var(--primary-color);
	margin-bottom: 30px;
}

.steps-grid   {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;}

.step-item {
  background: var(--white);
   padding: 30px;
    border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.step-num
	{
   display: flex;
   align-items: center;
   justify-content: center;
    width: 50px;
    height: 50px;
  background: var(--secondary-color);
  color: var(--white);
    border-radius: 50%;
          font-size    :   24px;
	font-weight: 700;
   margin     :      0 auto 16px;
}

.step-item h3 {
    font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.step-item p {
    font-size: 14px;
  color: var(--text-light);
}

.thank-you-cta {
  display: grid;
	   grid-template-columns  :      1fr 1fr;
	  gap: 20px;
}

.back-button,
.services-button {
   	display: inline-block;
   -webkit-border-radius: 8px;
   padding: 16px 32px;
   border-radius    :     8px;
    -moz-border-radius: 8px;
    text-decoration: none;
   font-weight: 600;
	 transition: all 0.3s ease;
    border: 2px solid;
}

.back-button {
  background: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.back-button:hover
{
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.services-button {
  background :        transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}


.services-button:hover		{
  background: var(--secondary-color);
  color: var(--white);
}

.faq-thank-you {
	padding: 80px 0;
     background: var(--white);
}

.faq-thank-you h2 {
   font-size: 40px;
   text-align: center;
  margin-bottom: 60px;
  color: var(--primary-color);
}

.faq-grid {
  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	   gap: 30px;
}

.faq-item {
  background: var(--light-bg);
                    padding: 30px;
               border-radius :   12px;
  border-left: 4px solid var(--secondary-color);
   transition: all 0.3s ease;
}

.faq-item:hover		{
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.faq-item h3  {
    font-size: 18px;
  color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
  font-size: 16px;
  color: var(--text-light);
	line-height: 1.7;
}

.cta-follow-up {
	padding  :    60px 20px;
  background: var(--secondary-color);
  color: var(--white);
   text-align: center; 

}



.cta-follow-up h2 {
  font-size: 32px;
   margin-bottom    :  16px;
  color: var(--white);
	
}

.cta-follow-up p {
	 font-size: 18px;
}

.cta-phone


{
  color: var(--white);
     text-decoration: none;
     font-weight: 700;
     border-bottom: 2px solid var(--white);
       transition: all 0.3s ease;
}

.cta-phone:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}@media (max-width: 768px) {
    .page-header {
        padding: 40px 20px;
    }

    .header-content h1 {
        font-size: 36px;
    }

    .header-content p {
        font-size: 18px;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .service-detail-item.reverse {
        direction: ltr;
    }

    .detail-content h2 {
        font-size: 28px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .why-choose-us h2 {
        font-size: 32px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .success-stories h2 {
        font-size: 32px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .cta-final h2 {
        font-size: 32px;
    }

    .cta-final p {
        font-size: 16px;
    }

    .thank-you-section h1 {
        font-size: 36px;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .thank-you-cta {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 28px;
    }

    .detail-content h2 {
        font-size: 24px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card h3 {
        font-size: 20px;
    }

    .price {
        font-size: 24px;
    }

    .thank-you-section h1 {
        font-size: 28px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .back-button,
    .services-button {
        padding: 14px 24px;
        font-size: 14px;
    }
}.about-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
   padding: 60px 20px;
   text-align: center;
}

.about-hero h1 {
  font-size: 48px;
          margin-bottom: 12px;
  font-weight: 700;
}

.about-hero p {
    font-size: 20px; 
	    opacity: 0.95;
}

.about-content 
 {
    padding  :   80px 0;
  background: var(--white);

}

.about-grid {
   display: grid;
               grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: flex-start;
}

.about-text h2 {
    font-size: 32px;
  color: var(--primary-color);
   margin-top: 40px;
    margin-bottom: 16px;
}

.about-text h2:first-child {
    margin-top :        0;
}

.about-text p {
      font-size  : 16px;
  color: var(--text-light);
  line-height: 1.8;
   margin-bottom: 16px;
}

.about-image {
   position  :    sticky;
	top: 100px;
}

.about-image img {
  width: 100%;
	height: auto;
	border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-values {
  padding: 80px 0;
  background: var(--light-bg);
}

.about-values h2 {
   font-size: 40px;
  text-align: center;
    margin-bottom: 60px;
  color: var(--primary-color);
}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;

}

.value-item {
  background: var(--white);
   padding: 40px 30px;
   border-radius :        12px;
   text-align: center;
  box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}



.value-item:hover	{

	  transform: translateY(-8px); 
  box-shadow: var(--shadow-md);
}

.value-number {
   font-size: 48px;
  font-weight: 700;
  color: var(--secondary-color);
	margin-bottom: 12px;
}

.value-item p {

  font-size: 16px;
  color: var(--text-light);
	line-height: 1.6;
	}

.about-cta {
       padding: 80px 20px;
  background: var(--white);
  text-align  :    center;

}



.about-cta h2 {
   font-size: 40px;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.about-cta p {
  font-size: 18px;
  color: var(--text-light);
    line-height: 1.8;
  max-width :700px;
  margin-left: auto;
    margin-right: auto;
   margin-bottom: 20px;
}

.about-button {
      display     :     inline-block;
   padding: 16px 40px;
  background: var(--secondary-color);
  color: var(--white);
	text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
    font-size    : 16px;
         transition :     all 0.3s ease;
  border: 2px solid var(--secondary-color);
      margin-top: 16px;

}

.about-button:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}@media (max-width: 768px) {
    .about-hero {
        padding: 40px 20px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 18px;
    }

    .about-content {
        padding: 60px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        position: static;
    }

    .about-text h2 {
        font-size: 28px;
        margin-top: 32px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-values {
        padding: 60px 0;
    }

    .about-values h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .value-item {
        padding: 30px 20px;
    }

    .value-number {
        font-size: 36px;
    }

    .about-cta {
        padding: 60px 20px;
    }

    .about-cta h2 {
        font-size: 32px;
    }

    .about-cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 28px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-values h2 {
        font-size: 28px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-number {
        font-size: 32px;
    }

    .about-cta h2 {
        font-size: 28px;
    }

    .about-cta p {
        font-size: 15px;
    }

    .about-button {
        font-size: 14px;
        padding: 14px 28px;
    }
}.policySection {
    padding :      80px 2rem;
  background: var(--light-bg);
  min-height: calc(100vh - 300px);
}



.policyContainer {
   max-width: 800px;
    margin: 0 auto;
	text-align: left;
}

.policyContainer h1 {
  font-size: 3rem;
  color: var(--primary-color);
	 margin-bottom: 2rem;
    font-weight: 700; 
	
}

.policyContainer h2 {
    font-size: 2rem;
  color: var(--primary-color);
   margin-top     :     2rem;
  margin-bottom: 1rem;
   font-weight   :        600;
}

.policyContainer p     {
  color: var(--text-light);
   margin-bottom: 1.5rem;
        line-height: 1.8;
  font-size     :    1rem;
}

.policyContainer strong {
  color: var(--text-dark);

	   font-weight: 600;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
}@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
}