* {
  margin: 0;
       padding: 0;
   box-sizing: border-box;
}

body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
   color: #2c3e50;
  background: #ffffff;}

.main-navigation {
  background :#fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        position: fixed;
  top: 0;
	 width:       100%;
    z-index: 1000;
    padding   : 1rem 0;

}

.nav-container {
   max-width: 1200px;
	margin: 0 auto;
  display: flex;
   justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.brand-logo {
   height: 45px; 
  width: auto;
}

.nav-links {
    display: flex;
   list-style: none;
  gap: 2.5rem;
}

.nav-links a {
	    text-decoration: none;
  color: #2c3e50;
   font-weight: 500;
   transition: color 0.3s ease;
	font-size: 1.1rem;




}

.nav-links a:hover {
	 color: #3498db;}

.mobile-toggle {


    display: none;
  flex-direction: column;
  cursor: pointer;
   gap: 4px;
     }

.mobile-toggle span {
    width: 25px;
  height   :    3px;
  background: #2c3e50;
   transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
				 opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

main {
  margin-top: 80px;
}

.hero-section {
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
	 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;
    align-items: center;

}

.hero-text h1 {
  font-size: 3.2rem;
    margin-bottom: 1.5rem;
   font-weight: 700;
    line-height     :    1.2;

}

.hero-text p {
	font-size: 1.3rem;
   margin-bottom: 2rem;
  opacity: 0.9;
     }

.main-cta-button  
  {
   display: inline-block;
   background: #e74c3c;
     color   :  white;
  padding: 1rem 2.5rem;
      text-decoration: none;
   border-radius   :8px;
    font-weight: 600;
    font-size: 1.1rem;
   transition: all 0.3s ease;
   border: none;
  cursor: pointer;
}

.main-cta-button:hover    {
      background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
	}

.hero-image img {
    width    :    100%;
   height: auto;
      border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-overview {
   padding: 5rem 2rem;
   background   :        #f8f9fa;
}

.section-wrapper {
       max-width: 1200px;
  margin: 0 auto;
}

.services-overview h2 {
    font-size: 2.5rem;
  margin-bottom: 3rem;
	 text-align: center;
    color: #2c3e50;
	}

.services-grid
	{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2.5rem;


}


.service-card {
    background: white;
  padding: 2rem;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card:hover {

  transform: translateY(-5px);

}

.service-card img {
   width: 100%;
  height: 200px;
          object-fit: cover;
    border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-card h3 {
	 font-size: 1.4rem;
    margin-bottom: 1rem;
         color: #2c3e50; 
	
}

.service-card p {
  color    :#7f8c8d;
   line-height: 1.6;
}

.methodology-section  {
    padding: 5rem 2rem;
    background : white; 

}

.content-container {
  margin: 0 auto;
   align-items: center;
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
 max-width: 1200px;
}

.methodology-text h2 {
       font-size: 2.3rem;
 margin-bottom   :      1.5rem;
   color: #2c3e50;
}

.methodology-text p {
  font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
    line-height: 1.7;
}

.methodology-points {
    list-style: none;
   padding: 0;
} 

.methodology-points li {
      padding: 0.8rem 0;
    color  :       #2c3e50;
    position: relative;
    padding-left: 2rem;
     }

.methodology-points li::before {
  content: '✓';
   position: absolute;
       left: 0;
    color: #27ae60;
	 font-weight: bold;
  font-size: 1.2rem;
}

.methodology-visual img

{
  width: 100%;
  height    :       auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(135deg, #3498db, #2c3e50);
   color: white;
  padding: 4rem 2rem;
  text-align: center;
} 

.cta-container h2    {
    font-size: 2.5rem;
    margin-bottom: 1rem;
	
}

.cta-container p {
  font-size  : 1.2rem;
    margin-bottom     :       2rem;
	 opacity: 0.9;
   max-width: 600px;
    margin-left :       auto;
   margin-right: auto;
}

.secondary-cta  
  {
   display: inline-block;
    background: transparent;
   color: white;
   border: 2px solid white;
    padding    :     1rem 2.5rem;
   text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
	 transition: all 0.3s ease;
}

.secondary-cta:hover {
	 background    :white;
    color: #3498db;
  transform: translateY(-2px);
}

.contact-section {
  padding     :      5rem 2rem;
   background: #f8f9fa;
}

.contact-wrapper {
   max-width: 800px;
    margin: 0 auto;
}

.contact-wrapper h2 {
  text-align: center;
   font-size: 2.5rem;
	margin-bottom     :  3rem;
  color: #2c3e50;
}

.contact-form {

    background: white;
  padding: 3rem;
         border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);


}


.form-row {
        grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  display  :  grid;
      margin-bottom: 1.5rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
	margin-bottom: 0.5rem;
 font-weight: 600;
      color: #2c3e50;
}

.input-group input,
.input-group select,
.input-group textarea {
  width :100%;
      padding: 1rem;
  border: 2px solid #ecf0f1;
    border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
 outline: none;
	border-color: #3498db;
}

.input-group input.error,
.input-group select.error,
.input-group textarea.error {


 border-color: #e74c3c;

}

.submit-button {
    width: 100%;
  background: #3498db;
	color: white;
    padding: 1rem;
   border: none;
  border-radius    :      8px;
   font-size: 1.1rem;
	font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: #2980b9; 
	  transform: translateY(-2px);
}

.site-footer {
    background: #2c3e50;
  color: white;
   padding   :   3rem 2rem 1rem;
}

.footer-content {

    max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 2fr;
    gap: 2rem;
   align-items: center;}

.footer-logo     {


    height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {

    display: flex;
  justify-content: space-between;
   align-items: flex-start;} 

.contact-details p {
    margin-bottom:      0.5rem;
    color: #bdc3c7;
}

.footer-links {
    display: flex;
  gap: 1.5rem;
    flex-direction: column;
   align-items :      flex-end;
}

.footer-links a {
    color: #bdc3c7;
  text-decoration    :  none;
   transition: color 0.3s ease;


}

.footer-links a:hover{

	    color: white;}

.footer-bottom {
   text-align: center;
  margin-top: 2rem;
    padding-top: 2rem;
  border-top:1px solid #34495e;
}

.footer-bottom p {
    color :   #bdc3c7;
	 font-size: 0.9rem;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .footer-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .services-overview,
    .methodology-section,
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}.page-header {
  background: linear-gradient(135deg, #2c3e50 0%, #4a6741 100%);
   color: white;
	padding: 6rem 2rem 4rem;
   text-align: center;
  margin-top: 80px;
}

.header-content h1 {
    font-size: 3rem;
          margin-bottom: 1rem;
  font-weight   :        700;
}

.header-content p {
  font-size: 1.3rem; 
  opacity: 0.9; 
	 max-width: 600px; 
   margin: 0 auto;
}

.company-story {
  padding: 5rem 2rem;
    background: white;
}

.story-container {
    display: grid;
   gap: 4rem;
    grid-template-columns: 1.2fr 1fr;
  margin: 0 auto;
  max-width: 1200px;
  align-items: center; 
	


}

.story-text h2 {

	  font-size: 2.4rem;
   margin-bottom: 2rem;
   color: #2c3e50;

}

.story-text p {


    font-size: 1.1rem;
    line-height: 1.7;
   margin-bottom: 1.5rem;
	color: #555; 
}

.story-image img {
    width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.our-approach {
	    padding: 5rem 2rem;
     background: #f8f9fa;
	}

.approach-wrapper {
    max-width: 1200px; 
	  margin: 0 auto;
}

.approach-wrapper h2 {
   text-align: center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
   color: #2c3e50;
}

.philosophy-grid {
  display  :   grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; 

}


.philosophy-item {
   background: white;
	 padding: 2.5rem 2rem;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.philosophy-item:hover    {
	  transform: translateY(-3px);
	}

.philosophy-item h3 {
    font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
    font-weight: 600;
}

.philosophy-item p


{
   color: #666;
    line-height: 1.6;

}

.methodology-details {


         padding: 5rem 2rem;
  background: white;

}  

.details-container {
    max-width: 1200px;
  margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap:   4rem;
	align-items: center;
}

.methodology-visual img {
   width: 100%;
   height: auto;
       border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.methodology-content h2 {
  font-size: 2.3rem;
   margin-bottom: 2rem;
  color     :  #2c3e50;
}

.feature-item {
   margin-bottom: 2.5rem;
}

.feature-item h4 {
   font-size: 1.2rem;
   margin-bottom: 0.8rem;
          color: #2c3e50;
  font-weight: 600;
}

.feature-item p     {
   color: #666;
   line-height: 1.6;
}

.success-metrics {
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.metrics-container {
         margin: 0 auto;
  max-width: 1200px;
   text-align: center;
}

.metrics-container h2 {

	   font-size: 2.5rem;
         margin-bottom: 3rem;
     }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap :     2rem;
}

.metric-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding   :     2.5rem 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.2);
}

.metric-number {
    font-size: 3rem;
  font-weight: 700;
    margin-bottom: 0.5rem;
   color: #fff;
}

.metric-label {
   font-size: 1rem;
	  opacity: 0.9; 
	
}

.team-values {


    background: #f8f9fa;

	  padding: 5rem 2rem;
     }

.values-wrapper

{
   max-width: 1200px;
    margin: 0 auto;
  display: grid;
   grid-template-columns: 1.3fr 1fr;
   gap: 4rem;
  align-items: center;
}

.values-content h2 {
    font-size: 2.3rem;
    margin-bottom :     1.5rem;
	color: #2c3e50;
}

.values-content p {
   font-size   :     1.1rem;
   margin-bottom   :2rem;
  color: #666;
   line-height: 1.7;
}

.values-list {
  list-style: none;
          padding: 0;
}

.values-list li {
  padding: 0.8rem 0;
  color: #2c3e50;
   position: relative;
   padding-left: 2rem;
   line-height:      1.6;
}

.values-list li::before {
  color: #3498db;
  content: '→';
    position   :absolute;
	 font-weight: bold;
   left  :  0;

}

.values-image img {
    width: 100%;

    height: auto;

    border-radius: 12px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.12);

}

.working-process {
  padding: 5rem 2rem;
  background: white;
}

.process-container {
      max-width: 1000px;
		margin: 0 auto;
}

.process-container h2 {
    text-align :center;
    font-size     :   2.5rem;
  margin-bottom: 3rem;
	 color: #2c3e50;
}

.process-steps {
    display: flex;
  flex-direction: column;
  gap    :      3rem;
}

.step-item {
  display: flex;
   align-items: flex-start;
               gap: 2rem;
}

.step-number {
		 background: #3498db;
   color: white;
	 width  :      60px;
	height: 60px;
    border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content: center;
   font-size: 1.3rem;
	 font-weight: bold;
  flex-shrink: 0;

}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  color  :  #2c3e50;
}

.step-content p {
  color: #666;
  line-height: 1.6;
}

.final-image {
	position:     relative;
   height: 400px;
  overflow: hidden;
}

.final-container {
	    position: relative;
    height: 100%;}

.final-container img		{
    width: 100%;
    height: 100%;
  object-fit: cover;
}

.final-overlay	{
   position: absolute;
   top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
   display: flex;
   flex-direction: column;
    justify-content: center;
     align-items  :        center;
  text-align: center;
  color: white;
    padding    :        2rem;
}

.final-overlay h2 {
  font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-overlay p {

	   font-size: 1.2rem;
    opacity: 0.9;
	}

.thankyou-hero	{
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
	 color: white;
    padding: 6rem 2rem 4rem;
  text-align: center;
          margin-top: 80px;
   min-height     :     70vh;
   display: flex;
    align-items: center;
	
}

.thankyou-container {
    max-width: 800px;
  margin:     0 auto;
}

.success-icon {
		 margin-bottom: 2rem;
}

.checkmark	{
  background: rgba(255,255,255,0.2);
        width: 100px;
    height: 100px;
  border-radius: 50%;
    display: flex;
    align-items   :        center;
  justify-content: center;
  font-size: 3rem;
    margin  :       0 auto;
  border: 3px solid rgba(255,255,255,0.3);
}  

.thankyou-container h1 {

	   font-size: 3rem;
   margin-bottom: 1.5rem;
  font-weight: 700;

}

.main-message {
  font-size:      1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
   line-height: 1.6;
}

.next-steps {
	  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
   padding: 3rem 2rem;
  border-radius: 15px;
    margin-bottom: 3rem;
   text-align: left;
  border: 1px solid rgba(255,255,255,0.2);}

.next-steps h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom   :      2rem;
}

.steps-timeline{
   display: flex;
    flex-direction: column;
   gap: 2rem;

}

.timeline-item {
  display: flex;
	align-items: flex-start;
    gap  :1.5rem;
}

.timeline-dot {
   width: 20px;
   height: 20px;
    background: white;
    border-radius     :   50%;
    margin-top: 0.5rem;
  flex-shrink     : 0;
}

.timeline-content h3 {
    font-size: 1.2rem;
   margin-bottom: 0.5rem;
        font-weight: 600;
}  

.timeline-content p 
 {
    opacity: 0.9;
  line-height: 1.6;
} 

.additional-info {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
               padding: 3rem 2rem;
    border-radius: 15px;
  margin-bottom: 3rem;
    text-align    :      left;
  border: 1px solid rgba(255,255,255,0.2);
}

.additional-info h2 {
  text-align: center;
    font-size: 2rem;
  margin-bottom: 1.5rem;
}

.additional-info p {
  margin-bottom: 1.5rem;
 opacity: 0.95;
}

.preparation-list
	{
    list-style: none;
    padding: 0;
}  

.preparation-list li
{
    padding: 0.5rem 0;
	position: relative;
    padding-left: 2rem;
    opacity: 0.9; 
	
}

.preparation-list li::before
{
  content: '•';
  position: absolute;
   left: 0;
   color: white;
   font-size: 1.2rem;
}

.contact-reminder {
  margin-bottom: 3rem;
}

.reminder-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
   padding: 2.5rem;
	 border-radius: 12px;
    text-align   :   center;
  border: 1px solid rgba(255,255,255,0.2);
}


.reminder-card h3 {
   font-size: 1.4rem;
   margin-bottom: 1rem;
  font-weight: 600;

}

.reminder-card p {
    margin-bottom: 0.5rem;

	   opacity: 0.9;
}

.reminder-card .note {
    font-size: 0.95rem;
	margin-top: 1rem;
    font-style: italic;
   opacity: 0.8;
}

.action-buttons {
    display: flex;
    gap    :      1.5rem;
  justify-content   :  center;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-button {
   background: white;
	color: #27ae60;
}

.primary-button:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.secondary-button {
   background: transparent;
   color: white;
    border: 2px solid white;
}

.secondary-button:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.resource-preview 
 {
	padding: 4rem 2rem;
   background: #f8f9fa;
}

.resources-container {
   max-width: 1000px;
  margin: 0 auto;
	 text-align: center;
}

.resources-container h2 {
	   font-size: 2.3rem;
   margin-bottom: 1rem;
  color  :  #2c3e50;


}

.resources-container > p

{
  font-size :  1.1rem;
	  margin-bottom: 3rem;
	  color: #666;
}

.resource-grid{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap     :       2.5rem;
}

.resource-item {
    background: white;
   padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: left;
}

.resource-item img {
   object-fit: cover;

    height: 200px;

   border-radius: 8px;

    margin-bottom: 1.5rem;

   width: 100%;
}

.resource-item h3 {
    font-size: 1.3rem;
                    margin-bottom: 1rem;
   color: #2c3e50;
	
}

.resource-item p {
  color    :   #666;
		line-height: 1.6;
}@media (max-width: 768px) {
    .page-header {
        padding: 4rem 1rem 3rem;
    }

    .header-content h1 {
        font-size: 2.2rem;
    }

    .story-container,
    .details-container,
    .values-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .thankyou-hero {
        padding: 4rem 1rem 3rem;
    }

    .thankyou-container h1 {
        font-size: 2.2rem;
    }

    .next-steps,
    .additional-info,
    .reminder-card {
        padding: 2rem 1.5rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .resource-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header,
    .thankyou-hero {
        padding: 3rem 1rem 2rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .checkmark {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .resource-item {
        padding: 1.5rem;
    }
}.cookies-section,
.privacy-section {
  padding: 5rem 2rem;
  background: #f8f9fa;
}

.cookies-section h2,
.privacy-section h2 {
  color: #2c3e50;
  font-size: 2.5rem;
   margin-bottom: 2rem;
	text-align: center;
}

.cookies-section h3,
.privacy-section h3 {

	    font-size: 1.8rem;
   margin: 1.5rem 0 1rem;
  color: #2c3e50;
     }



.cookies-section p,
.privacy-section p {


   font-size: 1.1rem;
    color: #7f8c8d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
	}@media (max-width: 480px) {
    .cookies-section,
    .privacy-section {
        padding: 3rem 1rem;
    }

    .cookies-section h2,
    .privacy-section h2 {
        font-size: 2rem;
    }

    .cookies-section h3,
    .privacy-section h3 {
        font-size: 1.5rem;
    }
}