* {
	box-sizing: border-box;
   margin: 0;
  padding: 0;
} 

body {
  font-family: 'Arial', sans-serif;
	 line-height: 1.6;
   color: #333;
}

.site-wrapper {
   overflow-x     :      hidden;


}

.main-navigation {
   background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   position: fixed;
   width   :       100%;
  top     : 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
   margin: 0 auto;
	 padding: 0 20px;
   display: flex;
     justify-content: space-between;
   align-items: center;
    height: 70px;
	}

.brand-logo {
   height: 45px;
   width: auto;
}

.nav-links {
   display: flex;
  gap: 2rem;
}

.nav-links a {
    text-decoration: none;
   color: #333;
  font-weight: 500;
   transition: color 0.3s ease;
}

.nav-links a:hover {
	color: #2563eb;
}

.menu-toggle {
   display:none;
    flex-direction: column;
   background: none;
  border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
  background: #333;
    margin: 3px 0;
  transition: 0.3s;

}

.mobile-menu {
   display: none;
    background: #fff;
	position: absolute;
    top: 100%;
	left: 0;
   width: 100%;
         padding :      20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mobile-menu a {
   padding: 10px 0;
  text-decoration: none;
   border-bottom    :   1px solid #eee;
   color: #333;
   display: block;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }
}.hero-section {
   padding: 120px 20px 80px; 
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
  max-width: 1200px;
    margin: 0 auto;
    display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
 margin-bottom    :      20px;
	 color:   #1e293b;
 line-height: 1.2;
}

.hero-description {
   font-size: 1.2rem;
  color: #64748b;
    margin-bottom: 30px;
}

.hero-actions {
	 display: flex;
	gap: 20px;
	}

.primary-btn, .secondary-btn {
   padding  :15px 30px;
  text-decoration: none;
          border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s ease;
}

.primary-btn {
    background: #2563eb;
  color: white;
}

.primary-btn:hover {
   background: #1d4ed8;
  transform: translateY(-2px);
}

.secondary-btn {

	   background: transparent;
    color: #2563eb;
  border: 2px solid #2563eb;

}

.secondary-btn:hover {
   background: #2563eb;
	 color: white;
}

.hero-visual img     {
   width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}.services-overview {
  padding: 80px 20px;
	 background: #fff;
}

.section-container {
  max-width: 1200px;
    margin: 0 auto;
  text-align :      center;
}

.services-overview h2 {
   font-size: 2.5rem;
    margin-bottom: 60px;
   color: #1e293b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  margin-top: 60px;
}

.service-card {
  background: #f8fafc;
  padding: 40px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
  height: 200px;
   object-fit: cover;
   border-radius     : 8px;
   margin-bottom: 25px;

}

.service-card h3 {
   font-size: 1.5rem;
  margin-bottom: 15px;
   color: #1e293b;
}

.service-card p {
   color: #64748b;
   line-height: 1.6;
}

.expertise-section {

  padding: 80px 20px;
   background: #f1f5f9;


}

.content-wrapper {
    max-width   :   1200px;
   margin: 0 auto;
  display: grid;
     grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.expertise-text h2 {
    font-size: 2.5rem;
	 margin-bottom: 30px;
	color: #1e293b; 

}

.expertise-text p
{
   font-size: 1.1rem;
  color: #64748b;
    margin-bottom: 20px;
  line-height: 1.7;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
   margin-top: 40px;
}

.stat-item {
	text-align    :        center;
}

.stat-item strong {
  display: block;
   font-size:      2rem;
   color :#2563eb;
   margin-bottom: 8px;
}

.stat-item span  {
  color: #64748b;
    font-size     :0.9rem;
}

.expertise-visual img 
 {
   width: 100%;
    height: auto;
     border-radius    :12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }
}.cta-section {
	 padding: 80px 20px;

  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);

    text-align: center;

	color: white;
}

.cta-content {
  max-width: 800px;
  margin    :       0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
  margin-bottom: 25px;

}

.cta-content p {


  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;

}

.cta-button {
	display: inline-block; 
	               background: white; 
	    color: #2563eb; 
	  padding: 18px 40px; 
	  text-decoration: none; 
	    border-radius    :   8px; 
	    font-weight: 700; 
	    font-size: 1.1rem; 
	  transition  :  all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-section {
   padding: 80px 20px;
  background: #fff;
}

.contact-container {
   max-width: 1200px;
   margin: 0 auto;
}

.contact-section h2 {
     text-align: center;
   font-size    :     2.5rem;
    margin-bottom: 60px;
  color: #1e293b;
     }

.contact-layout

{
   display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form {


   display: flex;
    flex-direction: column;
	 gap :25px;
	}



.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
   padding: 15px;
  border: 2px solid #e2e8f0;
    border-radius: 8px;
               font-size: 1rem;
  transition: border-color 0.3s ease;
	
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
    border-color: #2563eb;
} 

.submit-btn {
    background: #2563eb;
   color: white;
   padding: 18px 30px;
   border: none;
  border-radius: 8px;
  font-size: 1.1rem;
   font-weight     :     600;
    cursor: pointer;
   transition: all 0.3s ease;
}

.submit-btn:hover

{
    background     :    #1d4ed8; 
  transform: translateY(-2px);
}  

.contact-info h3 {
  font-size: 1.5rem;
   margin-bottom: 30px;
 color: #1e293b;
}

.contact-item {
   margin-bottom: 25px;
}

.contact-item strong {
   display: block;

	    color  :  #2563eb;

	    margin-bottom: 8px;
}

.contact-item p   {
   color: #64748b;
    line-height   :   1.6;
}@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}.site-footer {
    background: #1e293b;
   color  :   white;
    padding     :    60px 20px 20px;
}

.footer-content {
   max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns   :      1fr 2fr;
    gap: 40px;
  align-items: center;


}

.footer-logo {
    height     : 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
	display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.company-details p {
  margin-bottom: 10px;
    color: #94a3b8;
}

.footer-links {
  display :   flex;
   flex-direction: column;
         gap: 15px;
}

.footer-links a {
  color: #94a3b8;
   transition: color 0.3s ease;
  text-decoration: none;
}

.footer-links a:hover  {
    color: white;
}

.footer-bottom {
  margin-top: 40px;
   padding-top   :        20px;
    border-top: 1px solid #334155;
  text-align: center;
  color: #94a3b8;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }
}.page-hero  
  {
   padding: 120px 20px 60px;

	  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);

	   color: white;

	   text-align: center;
}

.hero-container h1 {
	  font-size: 3rem;
    margin-bottom: 20px;
  font-weight: 700;

}

.hero-container p {

	  font-size: 1.2rem;
  opacity: 0.9;
   max-width: 600px;
   margin: 0 auto;}

.mission-section {
    padding: 80px 20px;
    background: #fff;
}

.content-container {
  max-width: 1200px;
      margin: 0 auto;
}

.mission-content {
   display: grid;
	grid-template-columns: 1fr 1fr;
  gap  :   60px;
    align-items: center;
}

.mission-text h2 {
    font-size  :     2.5rem;
	 margin-bottom: 30px;
    color: #1e293b;
}

.mission-text p {
    font-size: 1.1rem;
    color: #64748b;
   margin-bottom: 25px;
   line-height: 1.7;
}

.mission-visual img {
	  width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
	}

.story-section {
	padding: 80px 20px;
    background: #f8fafc;
}

.story-container {
   max-width: 1000px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 2.5rem;
  text-align: center;
    margin-bottom: 60px;
	 color: #1e293b;
}

.story-timeline {
    position:      relative;
    padding-left  :  30px;
} 

.story-timeline::before {
  content: '';
   position: absolute;
    left: 15px;
      top: 0;
   bottom: 0;
  width: 2px;
   background: #2563eb;
}

.timeline-item {
   position: relative;
     margin-bottom:  50px;
       padding-left: 60px;
}

.timeline-year {
    font-weight: 700;
  font-size: 0.9rem;
   padding: 10px 15px;
    left   :   -45px;
   position: absolute;
  color: white;
    border-radius: 20px;
   background: #2563eb;
   top: 0;
}

.timeline-content h3 {
    font-size:        1.5rem;
    color: #1e293b;
    margin-bottom: 15px;
}  

.timeline-content p {
         color: #64748b;
    line-height: 1.6;
}

.values-section {
       padding    :   80px 20px;
  background   : #fff; 



}

.values-container {
	    max-width: 1200px;
	 margin: 0 auto;
 text-align: center;


}

.values-container h2     {
   font-size    :   2.5rem;
	     margin-bottom: 60px;
	   color: #1e293b;
}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap    :     40px;
}

.value-card {
   background: #f1f5f9;
  padding: 40px;
       border-radius: 12px;
   transition: transform 0.3s ease;
}

.value-card:hover    {
  transform: translateY(-5px);
}

.value-card img {
  width     :    100%;
  height: 200px;
	 object-fit: cover;
 border-radius: 8px;
    margin-bottom :   25px;
}

.value-card h3 {
  font-size     :   1.5rem;
	    color: #1e293b;
	     margin-bottom: 15px;
}

.value-card p {
   color    :        #64748b;
  line-height: 1.6;
}

.approach-section {
  padding:     80px 20px;
   background     :   #f8fafc;
}

.approach-container {
    max-width: 1200px;
  margin: 0 auto;
}

.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
               gap: 60px;
   align-items: center;
}

.approach-visual img {
	   width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);

}

.approach-text h2 {
	font-size: 2.5rem;
  margin-bottom     :25px;
	color: #1e293b;
}

.approach-text p {

   color: #64748b;
   line-height: 1.7;
  margin-bottom: 25px;
}

.approach-list {
    list-style: none;
   padding: 0;
    margin   :      30px 0;
}

.approach-list li {
    margin-bottom: 15px;
  padding-left: 20px;
	position  :    relative;
  color: #64748b;
}

.approach-list li::before {
  content: '•';
    color: #2563eb;
    font-weight: bold;
   position: absolute;
               left: 0;
}

.commitment-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: white;
   text-align: center;
}

.commitment-content {
      max-width     :     1000px;
   margin: 0 auto;


}  

.commitment-content h2		{
	font-size: 2.5rem;
   margin-bottom: 30px;
}

.commitment-content p    {
  font-size: 1.2rem;
  opacity: 0.9;
    margin-bottom: 50px;
  line-height: 1.6;
}

.commitment-stats  {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap: 40px;
}

.commitment-stat {
  background: rgba(255,255,255,0.1);
  padding: 30px;
    border-radius: 12px;
}  

.commitment-stat strong    {
    display: block;
    font-size: 2.5rem;
        margin-bottom: 10px;
}

.commitment-stat span {
   font-size: 1rem;
	 opacity: 0.9;
}

.thankyou-hero {
       padding: 120px 20px 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
  text-align: center;
}

.thankyou-container {
    max-width: 800px;
   margin: 0 auto;
}

.success-icon {
    margin-bottom: 30px;
}

.checkmark {
  display: inline-block;
   width: 80px;
   height: 80px;
  background: rgba(255,255,255,0.2);
    border-radius: 50%;
  font-size: 40px;
  line-height: 80px;
  font-weight: bold;
}



.thankyou-content h1 {
    font-size: 3rem;
   margin-bottom: 25px;
	font-weight  :       700;}

.thankyou-message {
      font-size:   1.2rem;
   opacity: 0.9;
   line-height   :    1.6; 

}

.next-steps {
    padding     :   80px 20px;
	background: #fff;
}

.steps-container    {
      max-width: 1200px;
    margin: 0 auto;
 text-align: center;}

.steps-container h2 {
  color: #1e293b;
   font-size: 2.5rem;
  margin-bottom: 60px;
}

.steps-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step-card {
   background   : #f8fafc;
	 padding: 40px;
    border-radius: 12px;
   position: relative;
}

.step-number {

   position    :  absolute;
   top    :     -20px;
			left: 50%;
  transform: translateX(-50%);
  width: 40px;
    height   :       40px;
   background: #10b981;
    color: white;
    border-radius: 50%;
    font-size:       1.2rem;
          font-weight: 700;
    line-height: 40px;
     }

.step-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 15px;
   color: #1e293b;
}

.step-card p {
    color: #64748b;
   line-height: 1.6;
}

.preparation-tips {
     padding: 80px 20px;
   background: #f1f5f9; 

     }

.tips-container

{
       max-width: 1200px;
  margin: 0 auto;
}

.tips-content {
   grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: center;
  display: grid;
}

.tips-text h2 {
    font-size   :      2.5rem;
   margin-bottom: 25px;
  color:    #1e293b; 

}

.tips-text p {
   color: #64748b;
  line-height: 1.7;
   margin-bottom: 25px;
}

.preparation-list {
   list-style: none;
    padding :   0;
    margin: 30px 0;
}

.preparation-list li   {
  margin-bottom: 15px;
   padding-left: 25px;
  color: #64748b;
        position: relative;
}

.preparation-list li::before {

  content: '✓';
  color: #10b981;
   font-weight: bold;
   position     :   absolute;
   left: 0;}

.tips-visual img {
    width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.resources-section 
 {
    padding: 80px 20px;
   background: #fff;
}

.resources-container

{
   max-width :   1200px;

   margin: 0 auto;

    text-align: center;
}

.resources-container h2
{
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #1e293b;
}

.resources-intro {
    font-size: 1.1rem;
   color: #64748b;
          margin-bottom: 60px;
   max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.resources-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap   :       40px;
}

.resource-item {
   border-radius: 12px;
  transition: transform 0.3s ease;
  padding: 30px;
  background: #f8fafc;
}

.resource-item:hover {
  transform: translateY(-5px);


}

.resource-item img {
  width: 100%;
   height: 180px;
   object-fit: cover;
   border-radius: 8px;
  margin-bottom: 20px;
}

.resource-item h3 {
  color: #1e293b;
    font-size: 1.3rem;
    margin-bottom:15px;}

.resource-item p


{
    color: #64748b;
    line-height: 1.6;
   font-size: 0.95rem;
}

.contact-reminder {
   padding: 80px 20px;
  background    :#f1f5f9;
  text-align: center;
}

.reminder-content {
  max-width: 800px;
   margin: 0 auto;
}

.reminder-content h2 {
   font-size: 2.5rem;
  margin-bottom: 25px;
   color: #1e293b;
}

.reminder-content p {


   font-size: 1.1rem;
  color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;}

.contact-details {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
    margin-bottom: 50px;
	}

.contact-method strong {
  display: block; 
	   color: #10b981; 
	   font-size: 1.1rem; 
	  margin-bottom: 10px;
}

.contact-method p     {
   color: #64748b;
    margin: 0;
}

.back-home-btn {
   -moz-transition: all 0.3s ease;
   -o-transition: all 0.3s ease;
    display: inline-block;
    background: #10b981;
                    color: white;
   padding: 15px 30px;
  text-decoration   :     none;
  border-radius: 8px;
    font-weight     :        600;
         transition: all 0.3s ease;
   -webkit-transition: all 0.3s ease;
}

.back-home-btn:hover {
	   background: #059669;
  transform: translateY(-2px);
	}@media (max-width: 768px) {
    .hero-container h1 {
        font-size: 2.5rem;
    }

    .mission-content,
    .approach-content,
    .tips-content {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-year {
        left: -35px;
    }

    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .commitment-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}.cookies-section,
.privacy-section {


  padding: 120px 20px 80px;
   background: #fff;
}

.cookies-content,
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
  text-align: left;
}

.cookies-content h1,
.privacy-content h1 {
                    font-size: 2.5rem;
  margin-bottom: 30px;
  color   :    #1e293b;
    text-align: center;
}

.cookies-content h2,
.privacy-content h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: #1e293b;
}

.cookies-content p,
.privacy-content p {
	   font-size  :   1.1rem;
   margin-bottom: 20px;
  line-height: 1.7;
   color: #64748b;


}

.cookies-content ul,
.privacy-content ul     {
    margin: 20px 0;

	   list-style-type: disc;

	                    padding-left: 30px;
}

.cookies-content ul li,
.privacy-content ul li  
  {
    font-size: 1.1rem;
    color    :  #64748b;
  margin-bottom: 10px;
}