* {
  margin     :  0;
               padding  :        0;
    box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

.primary-navigation {
      background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   position: fixed;
   width: 100%;
   top: 0;
  z-index: 1000;
   padding: 15px 0;
}

.nav-wrapper {
    justify-content: space-between;
    align-items: center;
	margin :        0 auto;
	max-width: 1200px;
  display: flex;
   padding: 0 20px;
}

.company-logo {
   height: 45px;
        width: auto;
}

.nav-menu {
   display: flex;
    list-style: none;
  gap: 30px;
}

.nav-menu a {
   text-decoration: none;
   color: #2c3e50;
  font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
   color: #3498db;
}

.mobile-toggle {
  display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-toggle span {


  width: 25px;
	 height: 3px;
   background: #2c3e50;
   margin: 3px 0;
  transition: 0.3s;
}

main {
   margin-top: 80px;
}

.hero-banner	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 0;
  min-height: 70vh;
	
}

.hero-content-wrapper {
  max-width: 1200px;
 margin: 0 auto;
   display: grid;
          grid-template-columns: 1fr 1fr;
    gap: 50px;
  align-items    :   center;
  padding: 0 20px;
}

.hero-text-area h1 {
   font-size: 48px;

	    font-weight: bold;

		margin-bottom: 20px;

	   line-height: 1.2;
}

.hero-description {
  font-size: 18px;
    margin-bottom   : 30px;
  opacity: 0.9;
}

.hero-actions {
    display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-cta-button, .secondary-button {
    padding: 15px 30px;
         text-decoration: none;
    border-radius: 8px;
  font-weight    :      600;
   transition: all 0.3s ease;
  display: inline-block;
}



.primary-cta-button {
  background: #e74c3c;
    color: white;
}

.primary-cta-button:hover {
         background    :      #c0392b;
  transform: translateY(-2px);
}

.secondary-button {
    background:    transparent;
    color     :  white;
    border: 2px solid white;
}

.secondary-button:hover {
	background: white;
    color: #667eea;
}

.hero-image-container img {

	   width: 100%;
	    height: auto;
	   border-radius     :      12px;
	  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	}

.services-overview {
   padding: 100px 0;
	background  :#f8f9fa;
}

.container-fluid  {
  padding: 0 20px;
   max-width: 1200px;
    margin: 0 auto;
}

.services-overview h2 {
   text-align: center;
         font-size: 36px;
    margin-bottom: 60px;
   color: #2c3e50;
}

.services-grid {

         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;}

.service-card {

	   background    : white;
          padding: 30px;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
	 text-align: center;


}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
    height: 200px;
  object-fit: cover;
	 border-radius: 8px;
  margin-bottom    :   20px;
}

.service-card h3 {
   font-size  :   24px; 
   margin-bottom   :       15px; 
	 color: #2c3e50;
}

.service-card p {
  color   :   #7f8c8d;
    line-height :      1.6;
}

.transformation-story {
    padding:   100px 0;
   background: white; 
	
}

.story-container {
  max-width: 800px;
               margin: 0 auto;
    padding: 0 20px;
  text-align: center;
}

.story-content h2 {
	font-size: 36px;
   margin-bottom: 30px;
  color :#2c3e50;

}

.story-content p {
   font-size: 18px;
    margin-bottom  :        25px;
    color: #7f8c8d;

}



.story-highlights {
   display: flex;
  justify-content: space-around;
    margin-top: 50px;
   flex-wrap: wrap;
   gap: 30px;
}

.highlight-item 
 {
			text-align: center;
}



.highlight-item .number {
    display: block;
   font-size: 36px;
  font-weight   :    bold;
  color: #3498db;
  margin-bottom: 5px;
}

.highlight-item .label


{
    color: #7f8c8d;
   font-size: 14px; 
	
}

.cta-section {
     background: linear-gradient(135deg, #ff7b7b 0%, #ff416c 100%);
   padding: 80px 0;
                    text-align: center;
  color: white;
}

.cta-wrapper {
   max-width: 600px;

   margin     :       0 auto;

  padding    :        0 20px;
}

.cta-section h2  
  {
          font-size: 36px;
	   margin-bottom: 20px;
}

.cta-section p {


   font-size: 18px;
  margin-bottom: 30px;
   opacity: 0.9;}

.cta-action-button {
   background: white;
  color     :     #ff416c;
	padding: 18px 40px;
	text-decoration: none;
   border-radius: 8px;
   font-weight: 600;
   transition: all 0.3s ease;
    display: inline-block;
}

.cta-action-button:hover 
 {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.contact-section {
  padding: 100px 0;
  background: #ecf0f1;

}

.contact-container {
  max-width: 600px;
    margin: 0 auto;
   padding: 0 20px;
}

.contact-section h2 {
   text-align: center;
   font-size: 36px;
  margin-bottom: 50px;
    color: #2c3e50;
}

.consultation-form {
   background: white;
  padding: 40px;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group input, .form-group select, .form-group textarea {
       width: 100%;
   padding: 15px;
    border: 2px solid #ecf0f1;
  border-radius  : 8px;
   -webkit-border-radius: 8px;
   -moz-border-radius: 8px;
    font-size: 16px;
  transition: border-color 0.3s ease;

}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
   outline: none;
    border-color: #3498db;

}

.form-group textarea {
    height: 120px;
   resize: vertical;
}

.submit-button {
     width  :      100%;
   background: #2ecc71;
    color: white;
	padding   :  18px;
        border: none;
    border-radius: 8px;
   font-size: 16px;
  font-weight: 600;
    cursor: pointer;
   transition: background 0.3s ease;

}

.submit-button:hover {
   background: #27ae60;
}


.main-footer {
  background: #2c3e50;
	  color: white;
	   padding: 50px 0 20px;
	
}

.footer-content {
  max-width: 1200px;
  margin     : 0 auto;
    display: flex;
   justify-content: space-between;
    align-items: center;
  padding: 0 20px;
	 flex-wrap  :    wrap;
    gap: 30px;
	
}



.footer-branding img {
  height: 40px;
   width: auto;
}

.footer-info {
               display: flex;
   gap: 50px;
               flex-wrap: wrap;
}

.contact-details p {
  margin-bottom: 5px;
    color: #bdc3c7;
}


.footer-navigation {
    display: flex;
    flex-direction: column;
  gap: 10px;
}

.footer-navigation a {
   color: #bdc3c7;
    text-decoration: none;
	transition: color 0.3s ease;
}

.footer-navigation a:hover {
     color: white;
}

.footer-bottom


{
      text-align: center;
  padding-top    :   30px;
   border-top: 1px solid #34495e;
    margin-top    :     30px;
}

.footer-bottom p {
    color: #bdc3c7;
  font-size: 14px;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-area h1 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .story-highlights {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}.about-hero {
  background: linear-gradient(120deg, #2c3e50 0%, #3498db 100%);
	 color: white;
   padding: 120px 0 80px;
         text-align: center;
}

.about-hero-content {
  max-width  :        800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero h1 {
   font-size: 42px;
   margin-bottom: 20px;
  font-weight     :  bold;
}

.about-subtitle {


    font-size: 20px;
    opacity: 0.9;
               line-height: 1.4;
	}

.our-story-section {
   padding: 100px 0;
   background: #f8f9fa;
}

.story-layout {
      max-width: 1200px;
          margin: 0 auto;
    display: grid;
  grid-template-columns: 1.2fr 1fr;
   gap: 60px;
   align-items: center;
   padding: 0 20px;
	}

.story-text h2 {
    font-size:      36px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.story-text p {
					font-size: 17px;
   line-height   :       1.7;
         margin-bottom: 20px;
   color: #555;
}

.story-image img {
   width: 100%;

  border-radius: 15px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
	
}

.methodology-section {
   padding: 100px 0;
    background   :  white;
}

.methodology-container {
   max-width:     1200px;
   margin: 0 auto;
    padding: 0 20px;
}

.methodology-section h2 {
    text-align: center; 
    font-size: 36px; 
   margin-bottom: 60px; 
    color: #2c3e50;
}

.method-grid{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap  :  40px;
}

.method-card {
  background: #f8f9fa;
   padding: 35px;
     border-radius: 15px;
   text-align :center;
   transition: transform 0.3s ease;
}


.method-card:hover {

  transform: translateY(-5px);

}

.method-card h3 {
  font-size: 24px;
   margin-bottom: 20px;
	color: #2c3e50;
}

.method-card p {

  margin-bottom: 25px;
  color: #666;
   line-height: 1.6;
}

.method-card img {
          width: 100%;
	height: 180px;
  object-fit: cover;
	border-radius: 10px;
}

.values-section {


   padding: 100px 0;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color   :       white;


}

.values-wrapper {
   max-width :   1200px;
  margin: 0 auto;
   padding: 0 20px;
}

.values-section h2 {
    text-align: center; 
	   font-size: 36px; 
	   margin-bottom: 50px;
}

.values-content {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
   margin-bottom: 50px;
}

.value-item {
  background: rgba(255,255,255,0.1);

	  padding: 30px;

	   border-radius: 12px;

	  backdrop-filter: blur(10px);
}

.value-item h3 {
  font-size: 22px;
	 margin-bottom: 15px;
}



.value-item p	{
    opacity: 0.9;
   line-height: 1.6;
}

.values-image {
	text-align: center;
}

.values-image img {
	 width: 70%;
  max-width: 400px;
                    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.results-showcase {
    padding   :      100px 0;
    background: #ecf0f1;
}  

.results-container {
   margin: 0 auto;
    max-width: 900px;
  padding: 0 20px;
    text-align: center;
}


.results-showcase h2 {
   font-size: 36px;
    color     :        #2c3e50;
   margin-bottom: 25px;
}

.results-intro {
    font-size: 18px;
    color: #7f8c8d;
   margin-bottom  :50px;
}

.results-stats {
  display: flex;
   justify-content: space-around;
    flex-wrap: wrap;
   gap: 40px;
}

.stat-block {
               text-align: center;
}

.stat-number {
    display: block;
	  font-size: 42px;
	   font-weight: bold;
	  color :    #e74c3c;
	  margin-bottom: 10px;
}

.stat-description {
    color: #7f8c8d;
   max-width: 200px;
  display: block;
}

.thankyou-hero {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
  padding: 120px 0 80px;
  text-align  : center;
}

.thankyou-content
	{
    max-width: 600px;
   margin: 0 auto;
   padding: 0 20px;
}

.success-indicator {
   margin-bottom: 40px; 
	
}

.checkmark-circle {
    width: 80px;
	 height :     80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
    margin  :       0 auto 30px;
   display: flex;
	align-items: center;
         justify-content: center;
  animation: pulse 2s infinite;
}



.checkmark {
  width: 25px;
    height: 15px;
       border: 3px solid white;
    border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.thankyou-hero h1 {
  font-size: 42px;
   margin-bottom: 20px;
	}

.thankyou-message {
   font-size: 18px;
          opacity: 0.9;
     line-height :1.6;
}

.next-steps-section {
  padding :100px 0;
   background: white;
}

.steps-container {
  margin: 0 auto;
  max-width: 800px;
    padding    : 0 20px;
}

.next-steps-section h2 {

               color: #2c3e50;
   margin-bottom: 60px;
    text-align: center;
    font-size: 36px;


}


.steps-timeline  {
  position: relative;
}

.steps-timeline::before {
  content: '';
    position: absolute;
	left: 40px;
    top: 0;
    bottom: 0;
   width: 2px;
   background: #3498db;
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
        position: relative;
} 

.timeline-marker {
   width: 80px;
    height: 80px;
  border-radius: 50%;
   background: #3498db;
               color: white;
  display  :  flex;
         align-items     :   center;
 justify-content: center;
  font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 30px;
   z-index   :    2;
}

.timeline-content h3 {
 font-size: 24px;
		 color     :  #2c3e50;
    margin-bottom: 15px;
}


.timeline-content p {
    color: #7f8c8d;
    line-height: 1.6;
}

.additional-resources {
  padding    :      100px 0;
	background: #f8f9fa;
}

.resources-wrapper {
    max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
}

.additional-resources h2
{
  text-align     :     center;
	font-size   :      36px;
    color: #2c3e50;
    margin-bottom: 60px;
}

.resources-grid
{
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;

}

.resource-card {
  background: white;
   padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.resource-card img {
  width: 100%;
    height: 180px;
    object-fit: cover;
  border-radius: 10px;
    margin-bottom   :   20px;
}

.resource-card h3 {

	  font-size: 22px;
  color: #2c3e50;
    margin-bottom: 15px;}

.resource-card p {

	  color: #7f8c8d;
   line-height: 1.6;
	}

.reassurance-section {
    padding: 80px 0;
   background: white;
 text-align : center;
}

.reassurance-content {
  max-width  :       800px;
   margin: 0 auto;
         padding: 0 20px;
}

.reassurance-section h2 {
	font-size:      32px;
  color: #2c3e50;
  margin-bottom: 25px;
}

.reassurance-section > p {


   font-size: 18px;
    color   :        #7f8c8d;
   margin-bottom: 50px;
    line-height: 1.6;


}

.reassurance-features


{

	   display: flex;
   justify-content: space-around;
	flex-wrap    :  wrap;
    gap: 30px;

}

.feature-item {
    text-align: center;
  max-width: 200px;
}

.feature-item h4		{
   color :     #3498db;
                    font-size: 20px;
  margin-bottom: 10px;
}

.feature-item p {
    color: #7f8c8d;

    font-size: 14px;
}


.navigation-section {
  padding: 60px 0;
    background: #ecf0f1;
  text-align: center;
}

.nav-buttons {
   display: flex;
    justify-content: center;
    gap: 30px;
	flex-wrap: wrap;
}

.back-home-btn, .learn-more-btn {
	padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
	 font-weight: 600;
  transition: all 0.3s ease;
   display   :       inline-block;
}

.back-home-btn {
  background: #3498db;
   color: white;
}

.back-home-btn:hover		{
	background: #2980b9;
  transform: translateY(-2px);
}

.learn-more-btn {
	background: transparent;
   border: 2px solid #3498db;
  color: #3498db;
}

.learn-more-btn:hover {
  color     : white;
    background: #3498db;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .about-subtitle {
        font-size: 18px;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .method-grid {
        grid-template-columns: 1fr;
    }

    .values-content {
        grid-template-columns: 1fr;
    }

    .values-image img {
        width: 100%;
    }

    .results-stats {
        flex-direction: column;
        align-items: center;
    }

    .thankyou-hero h1 {
        font-size: 32px;
    }

    .steps-timeline::before {
        left: 20px;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 18px;
        margin-right: 20px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .reassurance-features {
        flex-direction: column;
        align-items: center;
    }

    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }
}.cookies-section, .privacy-section {
 padding: 100px 0;
   background: #f8f9fa;
}

.cookies-content, .privacy-content {

	  max-width: 800px;
   margin: 0 auto;
    padding: 0 20px;
}

.cookies-content h2, .privacy-content h2		{
   text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
  color: #2c3e50;
     }

.cookies-content p, .privacy-content p {
   font-size: 18px;
  margin-bottom: 25px;
    color   :  #7f8c8d;
	 line-height: 1.6;
}