* {
  box-sizing: border-box;
    margin: 0;
   padding: 0px;
}

body {
	  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height     :1.6;
    color: #2c3e50;
               background-color: #ffffff;
   overflow-x: hidden;
     }

.main-navigation {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  padding: 1rem 0;
   position: sticky;
   top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);

}

.nav-wrapper {
    max-width   :    1200px;
   margin: 0 auto;
   display: flex;
  justify-content: space-between;
  align-items: center;
	padding: 0 2rem;
}

.brand-section {
    display: flex;
   align-items: center;
  gap: 12px;
}

.company-logo {
   height: 45px;
	width: auto;
}

.brand-text {
       font-size   :1.8rem;
   font-weight: bold;
    text-decoration: none;
   color: white;
}

.nav-links		{
    display: flex;
    gap: 2.5rem;
}

.nav-item {
  color: white;
   text-decoration: none;
   font-weight: 500;
   font-size: 1.1rem;
  transition: color 0.3s ease;
   padding: 0.5rem 1rem;
    border-radius   : 6px; 
	
}

.nav-item:hover, .nav-item.active {
  background-color: rgba(255,255,255,0.2);
    color: #fff;
}

.mobile-toggle {
  display  :        none;
  flex-direction: column;
   background: transparent;
      border: none;
   cursor: pointer;
   padding: 8px;}

.hamburger-line {
  width: 25px;
   height: 3px;
    background-color: white;
  margin: 3px 0;
	transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu {
   display: none;
         background-color: #27ae60;
    position    :        absolute;
    top: 100%;
    left: 0;
    width: 100%;
	padding: 1rem 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-nav-item {
     display:       block;
   color: white;
    text-decoration    :    none;
	padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}


.mobile-nav-item:hover {

  background-color: rgba(255,255,255,0.1);
	}

.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   padding: 4rem 0;
      min-height  :        600px;
    display: flex;
  align-items: center;
}

.hero-content {
    max-width: 1200px;

  margin: 0 auto;

    display    :   grid;

  grid-template-columns:1fr 1fr;

   gap: 3rem;

    padding: 0 2rem;

  align-items: center;
	
}

.hero-text-area h1 {
   font-size: 3.2rem;
  font-weight: 700;
                    color: #2c3e50;
	margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-description {
   font-size: 1.2rem;
                    color: #5a6c7d;
   margin-bottom:   2rem;
   line-height: 1.7;
}

.hero-actions {
    display: flex;
		 gap: 1.5rem;
	  flex-wrap: wrap;
}

.primary-button, .secondary-button {
   padding: 1rem 2rem;
  text-decoration: none;
   border-radius: 8px;
  font-weight: 600;
	font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
    min-width: 180px;


}

.primary-button {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.secondary-button {
	   background-color: transparent;
  color: #27ae60;
   border: 2px solid #27ae60;


}

.secondary-button:hover{
	  background-color: #27ae60;
  color: white;
  transform: translateY(-2px);}

.hero-visual {
    text-align: center;


}

.hero-image {
   width: 100%;
    max-width: 500px;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.services-overview {
    background-color: #ffffff;
   padding: 5rem 0;
}

.content-container {
    max-width: 1200px;
  margin: 0 auto;
    padding: 0 2rem;
}

.services-overview h2 {

	    text-align:     center;
    margin-bottom: 3rem;
   font-weight     :700;
               font-size: 2.8rem;
  color: #2c3e50;}

.services-grid 
 {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
          gap     :  2.5rem;
   margin-top: 3rem;
}

.service-card {
   background: #fff;
   border-radius: 12px;
    padding   :2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-image
{
    width: 100%;
    height: 200px;
	object-fit: cover;
   border-radius :      8px;
  margin-bottom  :    1.5rem;
}

.service-card h3   {
   color: #2c3e50;
	margin-bottom: 1rem;
    font-size: 1.6rem;
   font-weight: 600;
}



.service-card p	{
    color: #5a6c7d;
    line-height: 1.6;
	font-size: 1rem;
}

.cta-section	{
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
                    padding   :4rem 0;
  color: white;
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
	 max-width   :    1200px;
   margin: 0 auto;
    border-radius: 15px;
    margin-top: 3rem;
   margin-bottom: 3rem;
}

.cta-content {
                    padding   :        0 3rem;
}

.cta-content h2 {
    font-size     :2.5rem;
          margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
	font-size: 1.2rem;
  margin-bottom: 2rem;
    line-height   :        1.7;
   opacity: 0.95;
}

.cta-button		{
    background-color: white;
  color: #27ae60;
    padding: 1.2rem 2.5rem;
   text-decoration  :        none;
  border-radius: 8px;
   font-weight: 600;
    font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.cta-visual {
  padding: 0 2rem;
}

.cta-image {
  width: 100%;
    max-width: 450px;
    height: auto;
   border-radius    :12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15); 
	
}

.approach-section {
     padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
     }

.approach-section h2 {
   text-align: center;
    font-size: 2.8rem;
   color: #2c3e50;
  margin-bottom: 3rem;
               font-weight: 700;
}

.approach-content {
               max-width: 900px;
    margin   :      0 auto;
}


.approach-text h3 {
    font-size: 2rem;
	color: #27ae60;
  margin-bottom: 1.5rem;
    font-weight: 600;
} 

.approach-text p {
      font-size: 1.1rem;
	 color: #5a6c7d;
  margin-bottom: 1.5rem;
  line-height  :    1.8;
}

.stats-container {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
   margin-top: 3rem;
   text-align: center;
}

.stat-item {
  background     :white;
      padding: 2rem 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
	align-items: center;
}

.stat-number

{
   font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
  display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #5a6c7d;
   font-weight: 500;
}

.contact-section     {
  padding: 5rem 0;
    background-color : #f8f9fa;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
	 display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
   padding: 0 2rem;
}

.contact-info h2 {
  font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom  :     1.5rem;
          font-weight  :      700;
}

.contact-info p {
   font-size   : 1.1rem;

	      color: #5a6c7d;

	   margin-bottom: 2rem;

	    line-height: 1.7;
}

.contact-details  
  {
    display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item strong {
  color: #27ae60;
	font-size: 1.1rem;
    display: block;
 margin-bottom: 0.5rem;
}

.contact-item p {
	color: #5a6c7d;
  margin: 0;
  font-size: 1rem;
}

.contact-form-area {
  background: white;
    padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}  

.contact-form {
	 display: flex;
     flex-direction: column;
   gap: 1.5rem;
}

.form-group {
   display: flex;
   flex-direction: column;
}

.form-group label {
   color: #2c3e50;
  font-weight     :     600;
   margin-bottom: 0.5rem;
    font-size :    1rem;
}

.form-group input,
.form-group select,
.form-group textarea  
  {
   padding: 1rem; 
  border    :        2px solid #e9ecef; 
  border-radius: 6px; 
    font-size: 1rem; 
    transition: border-color 0.3s ease; 
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus 
 {
	    outline    :     none;
         border-color     :     #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1); 

}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding  :  1.2rem 2rem;
    border: none;
  border-radius: 8px;
   font-size: 1.1rem;
  font-weight: 600;
        cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.main-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color:      white;
	padding: 3rem 0 1rem;
}

.footer-content
{

    max-width: 1200px;

	    margin: 0 auto;

	   display: grid;

	   grid-template-columns: 2fr 1fr 1fr 1.5fr;

	  gap: 2rem;

	   padding: 0 2rem;

}

.footer-logo   {
  height: 40px;
    width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1); 
	
}

.footer-brand h3     {
  font-size: 1.5rem;
   margin-bottom: 1rem;
  color: #2ecc71;
}



.footer-brand p	{
  color: #bdc3c7;
    line-height: 1.6;

}

.footer-navigation h4,
.footer-legal h4,
.footer-contact h4 {
    font-size: 1.2rem;
   margin-bottom: 1rem;
          color: #2ecc71;
   font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
    flex-direction: column;
   gap     :    0.8rem;

}

.footer-links a {
  color: #bdc3c7;
    text-decoration  :none;
   transition: color 0.3s ease;
}

.footer-links a:hover	{
    color: #2ecc71;


}

.footer-contact p {
	   color: #bdc3c7;
  margin-bottom: 0.8rem;
    line-height: 1.6;
	}


.footer-bottom{
  border-top: 1px solid #34495e;
   margin-top: 2rem;
   padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
   font-size    :      0.9rem;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-area h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .nav-wrapper {
        padding: 0 1rem;
    }

    .content-container {
        padding: 0 1rem;
    }
}.about-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 4rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
   max-width: 1200px;
   margin: 0 auto;
   padding-left: 2rem;
    padding-right: 2rem;
}

.about-hero-content h1


{
    font-size: 3rem;
  font-weight: 700;
    color: #2c3e50;
   margin-bottom: 1.5rem;
	line-height: 1.2;
}

.about-hero-description {
   font-size: 1.2rem;
    color: #5a6c7d;
	 line-height: 1.7;
    margin-bottom: 0;
}

.about-hero-image {
   text-align: center;
}

.hero-img   {
   width :        100%;
   max-width: 500px;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mission-section {
   padding: 5rem 0;
      background-color: #ffffff;
}

.mission-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
        align-items: center;
	}

.mission-text h2 {
    margin-bottom: 2rem;
  font-size: 2.5rem;
   font-weight: 700;
   color: #2c3e50;
}

.mission-text p{
   font-size: 1.1rem;
   color: #5a6c7d;
   line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-visual {
   text-align: center;
}

.mission-image {
  width: 100%;
	 max-width: 450px;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.values-section {


    padding  :  5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);


}

.values-section h2 {
	   text-align: center;
    font-size: 2.8rem;
  color:#2c3e50;
    margin-bottom: 3rem;
  font-weight: 700; 

     }

.values-grid {

	   display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	   gap: 2rem;
	  margin-top: 2rem; 
	

}

.value-card {
				background: white;

   padding: 2.5rem 2rem;

    border-radius: 12px;

  box-shadow: 0 5px 20px rgba(0,0,0,0.08);

  text-align   :        center;

    transition: transform 0.3s ease, box-shadow 0.3s ease;


}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.value-card h3 {
    font-size :  1.5rem;
  color: #27ae60;
          margin-bottom: 1rem;
    font-weight: 600;

}

.value-card p {
   color: #5a6c7d;
    line-height: 1.6;
         font-size: 1rem;
}

.approach-detailed     {
  padding: 5rem 0;
    background-color: #ffffff;
}

.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items  :       flex-start;
}

.approach-img {
    width: 100%;
    height    : auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.approach-text-section h2 {
  font-size: 2.5rem;
   color     :    #2c3e50;
    margin-bottom:      2rem;
   font-weight: 700;
}

.approach-text-section h3 {
  font-size: 1.4rem;
   color: #27ae60;
   margin-bottom: 1rem;
  margin-top: 2rem;
    font-weight: 600;
}

.approach-text-section h3:first-of-type {
   margin-top: 0;
}

.approach-text-section p {
	 font-size: 1rem;
   color: #5a6c7d;
   line-height :       1.7;
    margin-bottom: 1rem;
}

.experience-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
}

.experience-section h2 {
  text-align: center;
    font-size: 2.8rem;
  margin-bottom: 3rem;
    font-weight   :   700;
}

.experience-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;

}

.experience-stats {
  flex-direction: column;
   gap: 2rem;
   display: flex;


}

.stat-box {


  background: rgba(255,255,255,0.1);
	 padding: 2rem;
  border-radius: 12px;
	 text-align: center;
  backdrop-filter: blur(10px);

}

.stat-large {
  font-size :3rem;
   font-weight: 700;
  display: block;
	 margin-bottom: 0.5rem;
}

.stat-desc {
   font-size: 1.1rem;

   opacity: 0.9;
}

.experience-text p {
   font-size: 1.1rem;
    line-height: 1.8;
	margin-bottom: 1.5rem;
   opacity: 0.95;
}

.expertise-areas {
    padding: 5rem 0;
    background-color: #ffffff;
}

.expertise-areas h2 {
               text-align: center; 
	   font-size: 2.8rem; 
	    color: #2c3e50; 
	    margin-bottom  :  3rem; 
		font-weight: 700;
}

.expertise-grid {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	 gap     :   2rem;


}

.expertise-item {
	background: #f8f9fa;
  padding: 2rem;
   border-radius: 10px;
  border-left: 4px solid #27ae60;
    transition: transform 0.3s ease;
}

.expertise-item:hover {
  transform: translateX(5px);
}

.expertise-item h4 {
    font-size: 1.3rem;
  color: #2c3e50;
   margin-bottom: 1rem;
   font-weight: 600;
}

.expertise-item p  
  {
    color: #5a6c7d;
	line-height: 1.6;
   margin: 0; 

}

.commitment-section {
    padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}


.commitment-wrapper {

  padding: 0 2rem;
         max-width: 1200px;
    margin: 0 auto;


}

.commitment-content h2 {
  font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 2rem;
  font-weight: 700;
    text-align: center;
}

.commitment-content p {
    font-size: 1.2rem;
  color  :       #5a6c7d;
   line-height: 1.8;
    margin-bottom: 2rem;
  text-align: center;
  max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-image-container {
      text-align: center;
    margin-top: 3rem;
}

.commitment-img {
  width: 100%;
	max-width: 600px;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.thankyou-hero{
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
               padding: 4rem 0;
   min-height: 70vh;
      display: flex;
   align-items: center;


}

.thankyou-content {
   max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
    padding: 0 2rem;
    align-items: center;
}

.thankyou-text h1 {
   font-size: 3rem;
    font-weight: 700;
  color: #27ae60;
   margin-bottom: 1.5rem;
   line-height: 1.2;
}

.thankyou-main-text {
      font-size: 1.3rem;
   color: #5a6c7d;
    margin-bottom   :3rem;
    line-height: 1.7;
}

.next-steps h2 {
	font-size: 2rem;
               color: #2c3e50;
  margin-bottom: 2rem;
  font-weight: 600;
}

.steps-list {
   display: flex;
  flex-direction: column;
    gap   :     2rem;
   margin-bottom: 3rem;
}

.step-item {

	    display: flex;
   gap: 1.5rem;
   align-items: flex-start;}

.step-number {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        color: white;
   width: 40px;
	height: 40px;
  border-radius: 50%;
  display: flex;
   align-items: center;
   justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
	 flex-shrink: 0; 
	
}

.step-content h3 {
   font-size: 1.2rem;
	color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-content p {
    color: #5a6c7d;
    margin: 0;
    line-height: 1.6;
}

.thankyou-actions {
    display: flex;
   gap   :        1.5rem;
  flex-wrap: wrap;
}

.thankyou-visual {
   	 text-align     :     center;

}

.thankyou-image {
  width: 100%;
    max-width: 500px;
   height: auto;
	 border-radius  :  15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


.additional-info


{
  padding :    4rem 0;
   background-color  :     #ffffff;
}

.info-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.info-card {
      background: #f8f9fa;
  padding: 2.5rem 2rem;
   border-radius: 12px;
    text-align: center;
	border-top: 4px solid #27ae60;
}

.info-card h3    {
	    font-size: 1.4rem;
   color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;

}

.info-card p {
	color: #5a6c7d;
    line-height: 1.6;
	 margin: 0;


}

.while-waiting


{

  padding   :      5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
               display: grid;
     grid-template-columns: 1fr 1fr;
  gap  :4rem;
	max-width: 1200px;
   margin: 0 auto;
     align-items  :    center;}

.waiting-content {
  padding: 0 2rem;
}

.waiting-content h2 {
   font-size: 2.5rem;
	    color: #2c3e50;
	 margin-bottom: 2rem;
	   font-weight: 700;
}



.waiting-content > p {
      line-height: 1.7;
    color: #5a6c7d;
  font-size: 1.2rem;
   margin-bottom: 2.5rem;
     }

.preparation-tips {
  display: flex;

  flex-direction :      column;

   gap :      2rem;
}

.tip-item {
  background: white;
  padding :       2rem;
                    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	border-left: 4px solid #27ae60;
}

.tip-item h4 {
               font-size: 1.2rem;
  color: #27ae60;
   margin-bottom   :0.8rem;
	font-weight: 600;
}

.tip-item p {
               color: #5a6c7d;
   line-height: 1.6;
    margin: 0;
}

.waiting-image {
   padding: 0 2rem;

	    text-align: center;
}

.waiting-img  
  {

  width: 100%;
	 max-width: 450px;
    height :    auto;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-reminder {
   padding: 4rem 0;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
	color: white;
}  

.reminder-content {
    text-align: center;
}

.reminder-content h2 {
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
   font-weight: 700;
}

.reminder-content > p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
   opacity: 0.95;
	 line-height: 1.7;
}

.contact-options	{
  display    :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 3rem;
   max-width: 800px;
  margin: 0 auto;
}

.contact-option {
  background: rgba(255,255,255,0.1);
    padding:  2.5rem 2rem;
   border-radius: 12px;
  backdrop-filter: blur(10px);
}

.contact-option h4 {
    font-size: 1.3rem;
  margin-bottom: 1rem;
   font-weight: 600;
}

.contact-option p 
 {
    font-size     :      1.1rem;
    margin-bottom: 0.8rem;
   line-height: 1.6;
}

.availability

{


   font-size: 0.9rem;
   opacity    :    0.8;
  font-style: italic;
	}@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1rem;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .thankyou-text h1 {
        font-size: 2.5rem;
    }

    .thankyou-actions {
        justify-content: center;
    }

    .while-waiting {
        grid-template-columns: 1fr;
        padding: 3rem 0;
        gap: 2rem;
    }

    .contact-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
}.cookies-hero {


  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
    text-align: center;
     }

.cookies-hero h1 {
   font-size: 3rem;
    font-weight: 700;
   color: #2c3e50;
    margin-bottom: 1.5rem;
}

.cookies-description {
          font-size: 1.2rem;
	line-height: 1.7;
    margin: 0 auto;
    color: #5a6c7d;
   max-width    :      800px;
}

.cookies-content {
  padding: 5rem 0;
  background-color: #ffffff;
}

.cookies-content h2 {

	    font-size: 2.5rem;
          color: #2c3e50;
    margin-bottom: 2rem;
   font-weight: 700;
   text-align: center;
	}

.cookies-content h3 {
  margin-bottom: 1.5rem;
                    font-size: 1.8rem;
  color: #27ae60;
   margin-top: 2rem;
    font-weight: 600;
}  

.cookies-content p {
  font-size    :       1.1rem;
   color: #5a6c7d;
	line-height   :     1.8;
       margin-bottom: 1.5rem;
}

.privacy-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   padding     :4rem 0;
    text-align: center;
}  

.privacy-hero h1  
  {
    font-size: 3rem;
    font-weight: 700;
   color: #2c3e50;
    margin-bottom: 1.5rem;
}  

.privacy-description {
   font-size: 1.2rem;
  color: #5a6c7d;
  line-height: 1.7;
  max-width    :      800px;
  margin: 0 auto;
}

.privacy-content{
         padding: 5rem 0;
    background-color: #ffffff;

}

.privacy-content h2 {
    font-size: 2.5rem;
	 color: #2c3e50;
	margin-bottom: 2rem;
          font-weight: 700;
	text-align: center;
}

.privacy-content h3 {
    margin-top: 2rem;
	 color: #27ae60;
  font-size: 1.8rem;
               font-weight: 600;
  margin-bottom: 1.5rem;
}

.privacy-content p {
    font-size: 1.1rem;
  color: #5a6c7d;
   line-height    :1.8;
     margin-bottom: 1.5rem;
}@media (max-width: 768px) {
    .cookies-hero, .privacy-hero {
        padding: 3rem 1rem;
    }

    .cookies-hero h1, .privacy-hero h1 {
        font-size: 2.5rem;
    }

    .cookies-content, .privacy-content {
        padding: 3rem 1rem;
    }

    .cookies-content h2, .privacy-content h2 {
        font-size: 2rem;
    }

    .cookies-content h3, .privacy-content h3 {
        font-size: 1.5rem;
    }
}