* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {

  scroll-behavior: smooth;}

body 
 {


  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height     : 1.6;
       color: #2c3e50;
	background-color: #ffffff;}

.navbar {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
          position: sticky;
     top :     0;
      z-index    : 1000;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width    : 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
        justify-content: space-between;
  align-items: center;
}

.navbar-brand a {

    text-decoration: none;
               display: flex;
	align-items: center;}

.logo-img {
    height  :      74px;
	width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {


    display: flex;
  list-style     :     none;
   gap: 2rem;


}

.nav-menu a {
   color: #ffffff;
  text-decoration: none;
    font-weight: 500;
    transition     :color 0.3s ease;
}

.nav-menu a:hover
{
  color: #667eea;
}

.hamburger-menu {


   display: none;
    flex-direction: column;
    cursor: pointer;
	gap: 6px;


}

.hamburger-menu span     {
    width: 25px;
  height: 3px;
      background-color: #ffffff;
    border-radius: 2px;
   transition: all 0.3s ease;
	
}@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}.hero-section {
               display: grid;
	 grid-template-columns: 1fr 1fr;
   gap: 3rem;
	 align-items  :       center;
  padding: 4rem 2rem;
   max-width: 1200px;
          margin: 0 auto;
    min-height: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
   line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
   font-weight: 700;
}

.hero-content p {
    font-size:1.25rem;
    color: #555;
   margin-bottom: 2rem;
  line-height: 1.8;
	
}

.cta-button {
   display: inline-block;
   padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: #ffffff;
    text-decoration: none;
    border-radius    :    50px;
   font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-button:hover  
  {
  transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.hero-image {
    overflow    :   hidden;
    border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image img {
  width: 100%;
   height: 100%;
  object-fit: cover;
                    display: block;
}@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        order: -1;
    }
}.about-section {
    background: #f8f9fa; 
	  padding: 4rem 2rem;
}

.section-content {
                    max-width  :  1200px;

	  margin: 0 auto;
}

.about-section h2 {
  color: #1a1a1a;

	    font-size: 2.5rem;

	  text-align: center;

	   margin-bottom: 1.5rem;
}

.about-section > .section-content > p {
   text-align: center;
   font-size: 1.1rem;
  color: #555;
   margin-bottom: 3rem;
  max-width: 800px;
   margin-left  :   auto;
    margin-right: auto;


}

.features-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.feature-card {
	 background: #ffffff;
	    padding:2rem;
	    border-radius:15px;
	  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	  transition: all 0.3s ease;
}

.feature-card:hover		{

	  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
     }

.feature-card h3 {
   font-size: 1.3rem;
   margin-bottom: 1rem;
  color: #667eea;
}

.feature-card p     {
   line-height     :     1.8;

	    color: #666;
}

.process-section {
   margin: 0 auto;
   padding: 4rem 2rem;
  max-width: 1200px;

}

.process-section h2 {
   font-size: 2.5rem;
  margin-bottom: 3rem;
      text-align: center;
  color: #1a1a1a;
}

.process-grid	{
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.process-step {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 2rem;
   border-radius: 15px;
    border-left: 4px solid #667eea;
   transition: all 0.3s ease;
}

.process-step:hover {

  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);

}

.step-number {
    display :    inline-flex;
    align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
   border-radius: 50%;
	font-weight: 700;
  font-size    : 1.5rem;
   margin-bottom: 1rem;
}

.process-step h3 {
   font-size: 1.3rem;
  margin-bottom: 0.8rem;
   color: #1a1a1a;

}

.process-step p {
	color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.process-step img{
        width: 100%;
  border-radius: 10px;
    object-fit: cover;
  height: 200px;
}

.services-overview {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 2rem;
        color: #ffffff;
}

.services-overview h2 {
   font-size   :     2.5rem;
    margin-bottom: 3rem;
   text-align: center;
}

.services-cards		{
   max-width: 1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.service-item    {
	  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
    padding   :  2rem;
        border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;}

.service-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.service-item h3    {
  font-weight: 600;
    font-size: 1.3rem;
   margin-bottom: 1rem;
}

.service-item p {
  line-height: 1.7;
   font-size: 0.95rem;
} 

.expertise-section {
   padding: 4rem 2rem;
   max-width   :   1200px;
  margin: 0 auto;
}

.expertise-section h2 {
   font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
   color: #1a1a1a;
}

.expertise-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
        align-items: center; 

}

.expertise-text p {
	color: #666;
 margin-bottom: 1.5rem;
    line-height: 1.8;
   font-size: 1.05rem;
}


.expertise-image {
  border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.expertise-image img {
	 width: 100%;
   height   :   100%;
  object-fit: cover;
   display: block;
}@media (max-width: 768px) {
    .expertise-content {
        grid-template-columns: 1fr;
    }
}.cta-section {
    background    :    #f8f9fa;
	   padding: 4rem 2rem;
	        text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
   color   :#1a1a1a;
}

.cta-section p {
  font-size: 1.1rem;
    color: #666;
   margin-bottom:      2rem;
   max-width    :   600px;
    margin-left: auto;
   margin-right: auto;
}

.cta-button-primary {
	    display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
   text-decoration: none;
    border-radius: 50px;
  font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    font-size: 1.1rem;
     }

.cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.contact-section {
       padding: 4rem 2rem;
  margin: 0 auto;
  max-width: 1200px;
}

.contact-section h2	{
  font-size:       2.5rem;
  margin-bottom     : 3rem;
	text-align: center;
    color: #1a1a1a; 
	
}

.contact-container {
    display: grid;
	 grid-template-columns: 1fr 1fr;
      gap    :       3rem;
}

.contact-info h3    {
   font-size: 1.5rem;
  margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-info p {
 margin-bottom     :        1.5rem;
    color: #666;
   line-height: 1.8;
}

.contact-form {

   display: flex;
    flex-direction: column;
      gap   :        1.5rem; 

}

.form-group {
	   display: flex;
   flex-direction: column;

}

.form-group label     {
   font-weight: 600;
    margin-bottom: 0.5rem;
   color: #1a1a1a;


}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
  border: 2px solid #e0e0e0;
    border-radius    :     8px;
    font-family: inherit;
    font-size     :       1rem;
	 transition: all 0.3s ease;
}

.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);
}

.submit-button     {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border: none;
   border-radius: 8px;
  font-weight: 600;
  cursor    :   pointer;
  transition: all 0.3s ease;
		font-size: 1rem;

}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-button:active {
  transform: translateY(0);

}@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}.footer {
          background: #1a1a1a;
	 color: #ffffff;
  padding :        3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-container {

   max-width: 1200px;
  margin: 0 auto;
  display: grid;
    grid-template-columns: auto 1fr 1fr;
          gap: 3rem;
	margin-bottom: 2rem;
	align-items  :start;

}

.footer-logo-img{
          height: 96px;
  width: auto;
  filter: brightness(0) invert(1);
               display: block;
}

.footer-info p {
    margin-bottom: 0.5rem;

	  line-height: 1.6;
}

.footer-links h4 {
    font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a
{
   color: #ccc;
    text-decoration: none;
                    transition: color 0.3s ease;
    -o-transition: color 0.3s ease;

}

.footer-links a:hover {

	    color    :    #667eea;
}

.footer-bottom {
			text-align: center;
  padding-top: 2rem;
   border-top: 1px solid #444;
   color: #999;
}@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}.cookie-alert {
	    position: fixed;
	bottom:     0;
	left: 0;
    right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
	 padding: 2rem;
	display: flex;
	justify-content: space-between;
  align-items: center;
    gap:  2rem;
  z-index    : 999;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
   max-height     :   0;
   overflow  :hidden;
    transition: max-height 0.4s ease; 
	}

.cookie-alert.show {
   max-height: 200px;
}

.cookie-content p {
  margin-bottom: 0.5rem;
   line-height     : 1.6;
}

.cookie-content p:last-child {
  margin-bottom: 0;
}

.cookie-buttons {
   align-items: center;
  flex-wrap: wrap;
   gap: 1rem;
       display: flex;
}

.cookie-btn-accept,
.cookie-btn-reject {
       padding: 0.7rem 1.5rem;
    border: none;
    border-radius :      6px;
 cursor: pointer;
    font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.cookie-btn-accept	{

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
   color: #ffffff;
     }

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
	}

.cookie-btn-reject {
        background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);


} 

.cookie-settings-link {
   color: #667eea; 
	  text-decoration: none; 
	  font-weight: 600; 
	  transition  :        color 0.3s ease;
}

.cookie-settings-link:hover {
   color: #764ba2; 
        text-decoration: underline;
}@media (max-width: 768px) {
    .cookie-alert {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .cookie-alert.show {
        max-height: 400px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn-accept,
    .cookie-btn-reject {
        width: 100%;
    }

    .contact-section h2,
    .process-section h2,
    .services-overview h2,
    .about-section h2,
    .cta-section h2,
    .expertise-section h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.services-hero {

  display: grid;
			grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
  padding: 4rem 2rem;
   max-width: 1200px;
        margin: 0 auto;
   min-height: 500px;
	
	}

.services-hero-content h1 {
   font-size  :  3rem;
    line-height: 1.3;
  margin-bottom  :1.5rem;
  color: #1a1a1a;
       font-weight:     700;
}

.services-hero-content p {
    font-size: 1.2rem;
	 color: #666;
   line-height: 1.8;
}  

.services-hero-image {
  overflow   :      hidden;
   border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.services-hero-image img {
   width     : 100%;
    height: 100%;
   object-fit: cover;
   display :   block;


}@media (max-width: 1024px) {
    .services-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .services-hero-content h1 {
        font-size: 2.2rem;
    }

    .services-hero-image {
        order: -1;
    }
}.services-main {
   padding     :    4rem 2rem;
  background: #f8f9fa;
}

.services-container
{
   max-width: 1200px;
    margin: 0 auto;
}

.services-container h2 {

	  font-size: 2.8rem;
    margin-bottom   :      3rem;
    text-align: center;
     color: #1a1a1a; 
	
     }

.service-detailed {
   display: grid;
    grid-template-columns: 1fr 1fr;
        gap: 3rem;
   align-items: center;
	 margin-bottom: 4rem;
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
}

.service-detailed:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.service-detailed.alternate	{
  direction: rtl;
}

.service-detailed.alternate > * {
	 direction :ltr;
}

.service-detail-image		{
    border-radius: 12px;
    overflow :  hidden;
	 height: 350px;
}

.service-detail-image img {
	 width     :   100%;
	height: 100%;
  object-fit:  cover;
  display: block;
}

.service-detail-content h3 {
   font-size: 1.8rem;
		 margin-bottom: 1.5rem;
   color:    #667eea;
    font-weight: 700;
}

.service-detail-content p {


    color: #666;
   line-height: 1.8;
        margin-bottom     :      1.5rem;


}

.service-features {
  list-style: none;
   margin-top: 1.5rem;
}

.service-features li {
   padding: 0.8rem 0 0.8rem 2rem;
    color: #555;
  position: relative;
  line-height: 1.6;
}

.service-features li:before	{
  content: "✓";
	 position: absolute;
    left: 0;
   color: #667eea;
  font-weight: 700;
  font-size: 1.2rem; 
	
}@media (max-width: 768px) {
    .service-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .service-detailed.alternate {
        direction: ltr;
    }

    .service-detail-image {
        height: 250px;
        order: -1;
    }
}.why-choose-us  
  {

	   padding: 4rem 2rem;
	max-width:      1200px;
      margin: 0 auto;

}

.why-choose-us h2 {
   font-size: 2.8rem;
  margin-bottom :   3rem;
    text-align: center;
         color  :  #1a1a1a;
}

.choose-grid	{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 2rem; 

}

.choose-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
	padding: 2.5rem 2rem;
      border-radius: 12px;
  border-left: 4px solid #667eea;
	 transition: all 0.3s ease;


}

.choose-card:hover
	{
	  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
	}

.choose-card h4{
   font-size: 1.3rem;
   margin-bottom  :    1rem;
    color: #1a1a1a;
   font-weight: 600; 
	
}  

.choose-card p {
   color: #666;
  line-height: 1.7;




}

.case-studies {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
        padding: 4rem 2rem;
	
}

.case-studies h2 {
    font-size     :      2.8rem;
  margin-bottom: 3rem;
   text-align: center;
}

.cases-grid {
     max-width: 1200px;

  margin: 0 auto;

    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 2rem;
}

.case-card


{
  background: rgba(255, 255, 255, 0.1); 
	  backdrop-filter: blur(10px); 
	    padding: 2rem; 
	   border-radius: 12px; 
	  border: 1px solid rgba(255, 255, 255, 0.2); 
	   transition: all 0.3s ease; 

}

.case-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.case-card h3 {
  font-size  :1.3rem;
      margin-bottom:        1rem;
      font-weight: 600;
}

.case-card p  
  {
	 line-height: 1.7;
  margin-bottom: 1.5rem;
	
}

.case-tag {
	display  :        inline-block;
  background: rgba(255, 255, 255, 0.2);
	 padding: 0.5rem 1rem;
  border-radius: 20px;
   font-size: 0.9rem;
  font-weight: 600; 
	
}

.pricing-info {
   padding: 4rem 2rem;
   max-width: 1200px;
    margin: 0 auto;
}

.pricing-info h2 {
	 font-size    :  2.8rem;
     margin-bottom: 1.5rem;
     text-align: center;
     color: #1a1a1a;
}

.pricing-intro {
  text-align: center;
  font-size: 1.1rem;
	color: #666;
   max-width: 700px;
   margin: 0 auto 3rem;
}


.pricing-grid {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap     :   2rem;
	

}

.pricing-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);

  padding: 2.5rem;

   border-radius: 12px;

  border: 2px solid #e0e0e0;

	text-align: center;

  transition: all 0.3s ease;
}

.pricing-card:hover {
         border-color: #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.pricing-card h3 {
 font-size: 1.4rem;
  margin-bottom: 1rem;
        color: #667eea;
  font-weight  : 600;
}

.pricing-card p {

	  color: #666;
   line-height: 1.7;
  margin-bottom: 0.5rem;

}

.pricing-note {
	 font-size  :    0.95rem;

   color: #999;

	 font-style: italic;
}

.services-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
	 padding :       4rem 2rem;
    text-align: center;
}

.services-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;}



.services-cta p   {
   font-size: 1.1rem;
   margin-bottom:      2rem;
	max-width: 600px;
          margin-left: auto;
	 margin-right: auto;
}

.thankyou-section {
    padding: 4rem 2rem;
   max-width: 800px;
 margin: 0 auto;
	 text-align:     center;
}

.thankyou-container {

	  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     }

.thankyou-icon {

	    color     :    #2ecc71;
    margin-bottom:      2rem;
   display: inline-block; 

}

.thankyou-icon svg
	{
  filter: drop-shadow(0 4px 8px rgba(46, 204, 113, 0.2));
}

.thankyou-section h1	{
   font-size: 2.8rem;

   color: #1a1a1a;

  margin-bottom: 0.5rem;

    font-weight: 700;
}

.thankyou-subtitle {
	 margin-bottom    :      2rem;

	   color    : #667eea;

	   font-weight: 600;

	    font-size: 1.3rem;
}

.thankyou-message {
  background: #ffffff;
   padding: 2rem;
  border-radius     :       12px;
    border-left: 4px solid #2ecc71;
        margin: 2rem 0;
    text-align: left;
}

.thankyou-message p 
 {
    color: #666;
	 line-height: 1.8;
    margin-bottom: 1rem;
}

.thankyou-message p:last-child {
    margin-bottom     :  0;
}

.next-steps {
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    padding: 2rem;
   border-radius: 12px;
    margin     : 2rem 0;
	 text-align: left;
}

.next-steps h2 {
          font-size: 1.5rem;
    color  :  #667eea;
                    margin-bottom: 1.5rem;
     }

.steps-list		{
    list-style: none;
}

.steps-list li {
	line-height: 1.6;
  position: relative;
    color: #666;
   padding: 0.8rem 0 0.8rem 2rem;
}  

.steps-list li:before {
     content: "→";
    position: absolute;
   left: 0;
   color: #667eea;
  font-weight: 700;
    font-size: 1.2rem;
	}

.contact-details    {
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
      padding: 2rem;
                    border-radius: 12px;
	margin: 2rem 0;
   text-align: left;
}

.contact-details h3 {
   font-size     :  1.3rem;
  color: #1a1a1a;
   margin-bottom :1rem;
}

.contact-details p     {


      color: #666;
    line-height: 1.8;
   margin-bottom: 0.5rem;
     }

.action-buttons {
  display: flex;
   gap: 1rem;
    margin-top  :       2rem;
  justify-content :        center;
    flex-wrap    :  wrap;
}

.button-primary,
.button-secondary {
  padding: 1rem 2rem;
	border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
   display: inline-block;
}

.button-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color  :       #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.button-secondary {
	    background: transparent;
	 color: #667eea;
    border: 2px solid #667eea;
	}

.button-secondary:hover {
     background: #667eea;
    color: #ffffff;
     }

.what-happens-next


{

        background: #f8f9fa;
   padding: 4rem 2rem;}

.what-happens-next h2 {
	  font-size   :      2.5rem;
  margin-bottom: 3rem;
   text-align: center;
    color:#1a1a1a;
	}

.timeline {
    max-width: 1000px;
  margin: 0 auto;
      display:    grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.timeline-item {
          background: #ffffff;
    padding: 2rem;
    border-radius     :       12px;
          text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease; 

}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.timeline-marker {
  display     :       inline-flex;
  align-items: center;
  justify-content: center;
    width: 50px;
                    height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
  border-radius    :   50%;
	 font-size: 1.5rem;
   font-weight: 700;
   margin-bottom: 1rem;
}

.timeline-item h3 {
	    margin-bottom: 0.8rem;
	 font-size: 1.2rem;
	font-weight: 600;
   color    :      #1a1a1a;
     }

.timeline-item p {


    color: #666;
    line-height: 1.7;

}

.faq-section {
          max-width: 1200px;
   margin: 0 auto;
  padding     :       4rem 2rem; 

}

.faq-section h2 {
   margin-bottom: 3rem;
  text-align: center;
    font-size: 2.5rem;
         color: #1a1a1a;
}

.faq-grid {


   display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	  gap: 2rem;
}

.faq-item {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
	padding: 2rem;
  border-radius: 12px;
   border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
} 

.faq-item h4 {


    margin-bottom     :      1rem;
	 font-weight: 600;
   color: #667eea;
    font-size: 1.2rem;


}

.faq-item p {
    color: #666;
		line-height :1.7;
}@media (max-width: 768px) {
    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-section h1 {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
        text-align: center;
    }

    .what-happens-next h2,
    .faq-section h2,
    .pricing-info h2,
    .services-container h2,
    .why-choose-us h2,
    .case-studies h2 {
        font-size: 2rem;
    }

    .services-hero-content h1 {
        font-size: 1.8rem;
    }
}.policySection {
    padding: 80px 2rem;
   background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.policyContainer  {

  max-width: 900px;
  margin: 0 auto;
    text-align    :        left;
     }

.policyContainer h1{
    font-size: 3rem;
    color     :      #1a1a1a;
    margin-bottom: 2rem;
  font-weight: 700;
   border-bottom: 3px solid #667eea;
    padding-bottom: 1rem;
}

.policyContainer h2 {
  font-size: 1.8rem;
    color   :      #667eea;
   margin-top: 2.5rem;
   margin-bottom: 1.5rem;
					font-weight: 700;
}

.policyContainer p 
 {
   color    :       #555;
	margin-bottom: 1.5rem;
  line-height: 1.8;
      font-size: 1.05rem;
  text-align: justify; 
	
}

.policyContainer strong {
  color: #1a1a1a;
   font-weight: 600;
}

.policyContainer a {
  color: #667eea;
   text-decoration: none;
   transition: color 0.3s ease;
}

.policyContainer a:hover {
    color :        #764ba2;

   text-decoration: underline;
}

.policyContainer ul,
.policyContainer ol {

	margin-bottom: 1.5rem;
    margin-left: 2rem;



}

.policyContainer li {
	margin-bottom: 0.8rem;
   color  : #555;
                    line-height: 1.8;
}@media (max-width: 1024px) {
    .policyContainer h1 {
        font-size: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 70px 1.5rem;
    }
}

@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 2rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        text-align: left;
        line-height: 1.7;
    }

    .policySection {
        padding: 60px 1rem;
        min-height: auto;
    }

    .policyContainer {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .policyContainer h1 {
        font-size: 1.6rem;
        border-bottom: 2px solid #667eea;
        padding-bottom: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .policySection {
        padding: 40px 0.8rem;
    }

    .policyContainer ul,
    .policyContainer ol {
        margin-left: 1.5rem;
    }
}.policyContainer {
  animation: fadeInContent 0.6s ease-out;
}
@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}@media print {
    .navbar,
    .footer,
    .cookie-alert {
        display: none;
    }

    .policySection {
        padding: 0;
        background: #ffffff;
    }

    .policyContainer h1,
    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        orphans: 3;
        widows: 3;
    }
}