* {
	   margin :     0;
    padding: 0;
    box-sizing: border-box;
     }

body
	{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
    background: #f8f9fa;
}

.content-container {
   max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;

}

.primary-navigation {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position:        fixed;
    width: 100%;
    top: 0;
   z-index     :       1000;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
 padding: 0 20px;
	display   :       flex;
   justify-content: space-between;
  align-items: center;
}

.brand-section
{
    display: flex;
    align-items: center;
	gap: 12px;
}

.brand-logo {
    height: 45px;
    width: auto;
}

.company-title {
    color: white;
    font-size   :    1.4rem;
    font-weight: 600;
}

.nav-links {
  display: flex;
  list-style: none;
   gap: 30px;
}

.nav-item 
 {
   -webkit-transition: all 0.3s ease;
   color: white;
    text-decoration: none;
  padding: 8px 16px;
   border-radius: 5px;
   -webkit-border-radius: 5px;
        -o-transition:        all 0.3s ease;
    transition: all 0.3s ease;
   font-weight: 500;
}

.nav-item:hover,
.nav-item.active {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.mobile-menu-trigger {
    display: none;
         flex-direction: column;
  cursor:pointer;
    padding: 5px;
}

.burger-line {
	width: 25px;
  height: 3px;
   background: white;
	margin: 3px 0;
   transition: 0.3s;
  border-radius  : 2px;
}

.hero-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 120px 0 80px;
  margin-top: 75px;
    color: white;
}

.hero-content-wrapper {
      max-width: 1200px;
	margin: 0 auto;
  padding: 0 20px;
	 display  : grid;
   grid-template-columns: 1fr 1fr;
  gap: 50px;
   align-items: center;
}

.primary-headline {
	font-size: 3rem;
  font-weight  :     700;
               margin-bottom: 25px;
   line-height: 1.2;
}

.hero-description {
   font-size :   1.2rem;
         margin-bottom: 35px;
  line-height: 1.7;
    opacity: 0.95;
}

.hero-actions {
   display:  flex;
   gap: 20px;
  flex-wrap: wrap;
}



.primary-cta-button,
.secondary-action-btn
{
 padding: 15px 30px; 
    border-radius: 8px; 
    text-decoration: none; 
	font-weight: 600; 
  transition: all 0.3s ease; 
  border: 2px solid white;}

.primary-cta-button {
   background: white;
   color  :        #f5576c;


}

.secondary-action-btn {
   background: transparent;
    color: white;
}

.primary-cta-button:hover

{
   background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


.secondary-action-btn:hover {
   background: white;
   color: #f5576c;
}

.hero-image {


  width: 100%;
	height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
     }

.services-overview {

	   padding: 80px 0;
  background :   white;
}  

.section-header {
    margin-bottom: 60px;
  text-align: center;
   font-size: 2.5rem;
   color: #333;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.service-card {
       background: #f8f9fa;
   border-radius: 15px;
         padding: 30px;
   text-align: center;
			transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
     background: white;
}

.service-image
{
	width    :        100%;
  height: 200px;
  object-fit:    cover;
   border-radius: 10px;
   margin-bottom: 25px;


}

.service-title {
   font-size: 1.5rem;
    margin-bottom: 15px;
	 color     :       #333;
}

.service-description {
	  line-height: 1.7;
    color: #666;
}

.transformation-process  {
   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.process-content {
    display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.process-headline {
    font-size: 2.3rem;
    margin-bottom: 25px;
}

.process-text {
         font-size: 1.1rem;
    margin-bottom: 40px;
   line-height: 1.7; 
	
}

.process-steps {


  display: flex;
    flex-direction: column;
	gap: 25px;
	
	}

.step-item {
  background: rgba(255,255,255,0.1);
  padding: 20px;
    border-radius: 10px;
}

.step-title  {

    font-size: 1.2rem;
  margin-bottom    :    10px;

     }

.step-detail {
	 opacity: 0.9;
}

.process-image {
   width    :  100%;
      border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   color: white;
  text-align: center;
}

.cta-headline {
    font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom   :  35px;
   max-width: 600px;
    margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
   padding: 18px 35px;
  background: white;
    color: #f5576c;
       text-decoration: none;
        border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
 transition: all 0.3s ease;
}

.cta-button:hover
{
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.contact-section {
                    padding     :        80px 0;
  background: white; 
	
}

.contact-header {
	text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
          color: #333;
}

.contact-layout {
  grid-template-columns: 1fr 2fr;
   display: grid;
    gap: 50px;
}

.info-title {

	  font-size     : 1.5rem;
    margin-bottom: 25px;
    color: #333;
     }

.contact-details {
  display: flex;
   flex-direction: column;
  gap: 20px;
}

.contact-item strong {
         color: #667eea;
  display: block;
	 margin-bottom: 5px;

}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
	
}

.form-group {
   display  :   flex;
    flex-direction :   column;
}

.form-input,
.form-select,
.form-textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
  border-radius: 8px;
   font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
       border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding    :   18px;
  border     :      none;
   border-radius: 8px;
   font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
   transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.site-footer {
  background: #2c3e50;
    color: white;
   padding: 50px 0 20px;
}

.footer-content {
       max-width: 1200px;
   margin: 0 auto;
    padding   :  0 20px;
}

.footer-main  
  {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  margin-bottom     :30px;
}

.footer-logo {
    height   :       40px;
  filter: brightness(0) invert(1);
   margin-bottom: 15px;


}

.footer-company-name
	{
    font-size: 1.3rem;
       margin-bottom: 10px;
}

.footer-tagline {
	 opacity: 0.8;
                    font-style: italic;
}

.footer-section-title {
   font-size: 1.2rem;
   margin-bottom: 20px;
    color: #667eea;
}

.footer-links {
     list-style: none;
   display: flex;
     flex-direction: column;
  gap: 10px;}

.footer-link {

   color: #bdc3c7;
   text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-contact-details {
   display: flex;
  flex-direction: column;
      gap     :      5px;
   color: #bdc3c7;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 20px;
    text-align: center;
}

.copyright {
	color: #bdc3c7;
}

.about-hero {

	  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  padding: 120px 0 80px;
  margin-top: 75px;
    color: white;
    text-align: center;
	}

.about-hero-content {

       max-width: 800px;
   margin: 0 auto;
          padding: 0 20px;

}

.about-main-title {
	font-size: 3rem;
  font-weight: 700;
   margin-bottom: 25px;
  line-height: 1.2;
}

.about-intro-text {
	  font-size: 1.3rem;
    line-height: 1.7;
  opacity   :     0.95;

}

.mission-section {
  padding: 80px 0;
    background: white;
}

.mission-layout    {
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 50px;
  align-items: center;
}

.mission-title {
  margin-bottom: 25px;
  color   : #333;
    font-size: 2.3rem;
}

.mission-description,
.mission-extended {
    font-size     :1.1rem; 
		line-height: 1.8; 
	   margin-bottom: 20px; 
	    color: #555;
}

.mission-image {
    width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.values-section {
    padding: 80px 0;
  background: #f8f9fa;
}

.values-header {
    text-align: center;
	font-size: 2.5rem;
   margin-bottom: 60px;
  color   :   #333;
}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.value-card {
  background: white;
   padding :   35px;
    border-radius  :   15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.value-title {

    font-size: 1.4rem;
	margin-bottom: 15px;
   color: #4facfe;

}

.value-description {
  line-height: 1.7;
    color: #666;
}

.methodology-section {
    padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.methodology-layout
	{
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.methodology-title {
    font-size: 2.3rem;
   margin-bottom: 25px;
}

.methodology-intro {

	  font-size     :    1.1rem;
   margin-bottom: 35px;
    line-height: 1.7;}

.methodology-points {
    display: flex;
    flex-direction: column;
  gap: 25px;
}

.method-point {
  background: rgba(255,255,255,0.1);
	    padding: 25px;
	    border-radius: 10px;
}

.point-title {
	    font-size: 1.2rem;

	margin-bottom   :       12px;


}

.point-description {
  opacity: 0.9;
  line-height: 1.6;
}

.methodology-image {
   width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.experience-section {
    padding  :      80px 0;
   background: white;
  text-align: center;
}

.experience-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.experience-stats {

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap    :   40px;
     }

.stat-item 
 {
  padding: 30px;

}

.stat-number {
   font-size: 3rem;
     font-weight: 700;
  color: #4facfe;
   margin-bottom: 10px;
}

.stat-label {
   font-size: 1.1rem;
    color: #666;
  font-weight: 500;
}

.approach-section {
      padding: 80px 0;
	    background:        #f8f9fa;
}

.approach-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 50px;
	 align-items: center;
}

.approach-title  {
   font-size: 2.3rem;
   margin-bottom: 25px;
   color: #333;
	
}

.approach-description,
.approach-extended {
   font-size: 1.1rem;
   line-height: 1.8;
       margin-bottom: 25px;
    color: #555;
}


.approach-highlights {
  display: flex;
    flex-direction: column;
    gap: 15px;

}

.highlight-item {
       padding: 15px;
  background: white;
   border-left: 4px solid #4facfe;
        border-radius     :  5px;
  color: #555; 
	}

.approach-image {
     width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);

}

.commitment-section
	{
                    padding: 80px 0;
   background: white;
}

.commitment-title {
    font-size: 2.5rem;
   margin-bottom: 40px;
  color: #333;
	 text-align: center;
}

.commitment-content {
   text-align: center;
   margin-bottom    :50px;
}

.commitment-text	{
		 font-size: 1.2rem;
    line-height: 1.8;
      max-width: 800px;
     margin: 0 auto 40px;
     color     :        #555;}

.commitment-promises {
	 display    :   grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
  margin-bottom    :   40px;
}

.promise-item {
   padding: 25px;
  background: #f8f9fa;
    border-radius: 10px;
   text-align :center;
}

.promise-title {
    font-size: 1.3rem;
  margin-bottom: 12px;
  color: #4facfe;
}

.promise-description {
   color: #666;
   line-height: 1.6;
}

.commitment-image {
   width: 100%;
    max-width: 600px;
  margin: 0 auto;
	border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
   display: block;
}

.thankyou-main {
 padding: 120px 0 80px;
    margin-top: 75px;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.thankyou-content {
	  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;


}

.thankyou-title {
   font-size: 3rem;
  font-weight: 700;
    color: #333;
  margin-bottom: 20px;
	}

.thankyou-subtitle {
    color   :        #666;
    font-size: 1.4rem;
  margin-bottom: 30px;
}

.thankyou-details {
 display: flex;
    flex-direction: column;
   gap: 20px;
}

.thankyou-text

{
  font-size: 1.1rem;
                    line-height   :   1.7;
   color: #555;
}

.thankyou-image {
   width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.next-steps {
   padding: 80px 0;
   background: white;
}

.steps-title {
    text-align   :      center;
   font-size: 2.5rem;
   margin-bottom: 60px;
        color: #333;
}

.steps-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 40px;
} 

.step-card {
    border-radius: 15px;
  padding: 35px;
   background: #f8f9fa;
   text-align  : center;
    transition: all 0.3s ease;
}

.step-card:hover {


  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
   background: white;
}



.step-number {
   width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
	color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
   font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
  font-size   :   1.4rem;
  margin-bottom    :  15px;
   color: #333;
}

.step-description{
  line-height     :1.7;
   color: #666;
}

.preparation-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.preparation-layout {
    display: grid;
   grid-template-columns: 1fr 1fr;
         gap: 50px;
   align-items: center;
}

.preparation-title {
   font-size: 2.3rem;
  margin-bottom    :        35px;
    color  :       #333; 

}

.preparation-tips {
    display: flex;
	  flex-direction: column;
	   gap: 25px;
	
}

.tip-item {
     padding: 25px;
  background: white;
  border-radius  :        10px;
  border-left :        4px solid #a8edea;
}

.tip-title {
    font-size: 1.2rem;
  margin-bottom  :12px;
  color: #333;
}

.tip-description

{


    line-height: 1.7;
       color: #666;}

.preparation-image
	{
   width:  100%;
  border-radius   :   15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.resources-section {
	   padding: 80px 0;
	 background: white;}

.resources-title {
    text-align: center;
    font-size: 2.5rem;
  margin-bottom: 30px;
   color: #333;
	
}

.resources-intro	{

       text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 700px;
  margin-left: auto;
	margin-right: auto;
  color: #555;
    line-height: 1.7;
}

.resources-list {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap     : 30px;
}

.resource-item {
   padding: 30px;
       background: #f8f9fa;
   border-radius: 12px;
    transition: all 0.3s ease;
}

.resource-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  background: white;
}

.resource-title {
  font-size : 1.3rem;
    margin-bottom: 15px;
  color: #333;
}

.resource-description {


  line-height: 1.7;
	color: #666;
	}

.contact-reminder {
	padding: 80px 0;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
   text-align: center;
}

.reminder-title {
    font-size   :       2.3rem;
    margin-bottom: 25px;
    color: #333;
}

.reminder-text {
    font-size: 1.1rem;
    line-height: 1.7;
  max-width: 600px;
   margin: 0 auto 35px;
   color: #555;
}

.contact-info {
  display: flex;
  justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-detail {
    font-size: 1.1rem;
  color: #333;
}

.reminder-actions {

	   display: flex;

   justify-content: center;

    gap     :       20px;

      flex-wrap: wrap;}

.return-button,
.learn-more-button {
    padding: 15px 30px;
          border-radius: 8px;
         text-decoration: none;
   font-weight: 600;
  transition: all 0.3s ease;
}

.return-button {
    background: white;
   color: #333;
    border: 2px solid #333;
} 

.learn-more-button  {
  background :   #333;
   color: white;
    border: 2px solid #333;
}

.return-button:hover,
.learn-more-button:hover   {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-trigger {
        display: flex;
    }

    .mobile-menu-trigger.active .burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-trigger.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-trigger.active .burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content-wrapper,
    .process-content,
    .contact-layout,
    .mission-layout,
    .methodology-layout,
    .approach-content,
    .preparation-layout,
    .thankyou-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .primary-headline,
    .about-main-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .services-grid,
    .values-grid,
    .steps-grid,
    .resources-list {
        grid-template-columns: 1fr;
    }

    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}.cookies-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 120px 0 80px;
  margin-top: 75px;
   color: white;
    text-align: center;
}

.cookies-section {
   padding: 80px 0;
    background: white;
}

.cookies-description {
	 font-size: 1.1rem;
   line-height   :1.8;
    margin-bottom     :25px;
   color: #555;
}

.cookies-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
   margin-bottom: 40px;
}

.cookie-card
	{
  background: #f8f9fa;
    padding  :       30px;
   border-radius: 15px;
   text-align: center;
  transition: all 0.3s ease;
}

.cookie-card:hover  {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
               background: white;
}

.cookie-title {
  font-size:    1.4rem;
  margin-bottom: 15px;
    color: #4facfe;
}

.cookie-description {
  line-height: 1.7; 
     color :    #666;
}  

.privacy-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  padding: 120px 0 80px;
  margin-top: 75px;
 color: white;
               text-align: center;
}

.privacy-section {
  padding: 80px 0;
   background: white;
	
}

.privacy-description {
    font-size: 1.1rem;
   line-height: 1.8;
   margin-bottom: 25px;
	color: #555;
}

.privacy-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  margin-bottom: 40px;
}

.privacy-card  
  {
  background: #f8f9fa;
   padding: 30px;
   border-radius :      15px;
  text-align: center;
   transition   :all 0.3s ease;
}

.privacy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
   background: white;
}

.privacy-title {

	   font-size: 1.4rem;
    margin-bottom: 15px;
   color: #4facfe;
	}