* {
    margin     :      0;
   padding: 0;
    box-sizing: border-box;
}

body{
  font-family: 'Arial', sans-serif;
   line-height: 1.6;
  color: #333;
    background-color: #ffffff;
}

.container {
       max-width: 1200px;
     margin: 0 auto;
   	padding   :    0 20px;}

.navbar-container {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   position: fixed;
          top: 0;
    width: 100%;
    z-index: 1000;
  box-shadow: 0 2px 10px 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.8rem 20px;
}

.brand-section {
 display: flex;
  align-items: center;
}

.nav-logo {
   height: 45px;
   width  :      auto;
}

.navigation-menu {
   display: flex;
   list-style: none;
  gap: 2rem;
}

.nav-link {
    color: #ecf0f1;
  text-decoration: none;
    font-weight: 500;
  transition: color 0.3s ease;
   padding: 0.5rem 1rem;
  border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
  background-color: rgba(52, 152, 219, 0.1);
}

.mobile-toggle {
   cursor: pointer;
    display: none;
    flex-direction: column;
   padding: 0.5rem;
}

.burger-line {
   width: 25px;
  height: 3px;
   background-color: #ecf0f1;
  margin: 3px 0;
   transition: 0.3s;
   border-radius: 2px;
}

.hero-section {
    margin-top: 80px;
   padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
	 grid-template-columns  :       1fr 1fr;
	 display: grid;
   align-items  :     center;
          max-width: 1200px;
    gap: 3rem;
  padding: 0 20px;
       margin: 0 auto;
}

.hero-text 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: #6c757d;
	margin-bottom: 2rem;
	line-height: 1.7;
}

.hero-actions {
    display: flex;
	gap: 1rem;
   flex-wrap: wrap;
}  

.primary-btn, .secondary-btn {
   padding: 0.9rem 2rem;
      border-radius: 8px;
	text-decoration :none;
   font-weight: 600;
   transition: all 0.3s ease;
    border   :       2px solid transparent;
}

.primary-btn {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
      color: white; 
	
}

.primary-btn:hover   {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.secondary-btn {
    background: transparent;
	color: #3498db;
   border-color: #3498db;
}

.secondary-btn:hover {
  background: #3498db;
    color: white;
}

.hero-visual img {
    width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.services-section {
   padding: 5rem 0;
    background-color: #fff;
}

.services-section h2 {
  text-align: center;
  font-size: 2.8rem;
    color: #2c3e50;
   margin-bottom: 3rem;
    font-weight   :  700;
}

.services-grid	{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2.5rem;
}

.service-card {
       background: #fff;
    border-radius   :  15px;
   padding: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   transition  :  transform 0.3s ease, box-shadow 0.3s ease;
   border: 1px solid #f1f2f6;}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
  height     :  200px;
	 object-fit: cover;
   border-radius: 10px;
      margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
	  color: #2c3e50;
	    margin-bottom  :      1rem;
	    font-weight: 600;
	}

.service-card p {
  color: #6c757d;
    line-height: 1.6;

}


.features-showcase {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.features-content {
    display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
      align-items: center;
}

.features-text h2 {
  font-size: 2.5rem;
   margin-bottom: 2rem;
    font-weight: 700;
}

.feature-list

{
    display: flex;
	flex-direction: column;
   gap     :  1.5rem;
} 

.feature-item h4 {
   font-size: 1.3rem;
   margin-bottom: 0.5rem;
  color: #f8f9fa;
}

.feature-item p    {
  color: #e9ecef;
   line-height: 1.6;
}

.features-image img {
   width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}  

.cta-section {
	   padding    :      4rem 0;
  background: linear-gradient(135deg, #ff7675 0%, #fd79a8 100%);
  text-align: center;
   color: white;}

.cta-content h2    {
    font-size: 2.5rem;
          margin-bottom: 1.5rem;
     font-weight: 700;
}

.cta-content p {
   font-size: 1.2rem;
  margin-bottom: 2rem;
    max-width: 800px;
               margin-left: auto;
  margin-right: auto;
  line-height    :    1.6;
}

.cta-button {
     background: white;
	    color :      #ff7675;
	  padding: 1rem 2.5rem;
	  border-radius: 50px;
	   text-decoration:      none;
	   font-weight: 700;
	   font-size :        1.1rem;
	    transition: all 0.3s ease;
	      display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-section {
    padding: 5rem 0;
   background-color: #f8f9fa;
}

.contact-section h2 {
   text-align: center;
  font-size: 2.8rem;
       color: #2c3e50;
  margin-bottom: 3rem;
   font-weight: 700;
}

.contact-wrapper {
  display: grid;
   grid-template-columns: 1fr 2fr;
   gap:      3rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
  font-size: 1.8rem;
   color :     #2c3e50;
}

.info-item {
    margin-bottom: 1.5rem;

}

.info-item strong {
	color: #3498db;
 display: block;
  margin-bottom: 0.5rem;
}

.info-item p {
   color: #6c757d;
   line-height     :       1.6;

}

.contact-form {
  background: white;

  padding: 2.5rem;

    border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea  
  {
	 width:       100%;
               padding: 0.9rem;
   border     : 2px solid #e9ecef;
  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: #3498db;


}

.submit-btn {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color    :       white;
	padding: 1rem 2rem;
  border    :        none;
    border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover

{
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.footer-section  {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
   padding  :3rem 0 1rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 2rem;
  margin-bottom :     2rem;
}

.footer-brand p  {
       color: #bdc3c7;
   margin-top: 1rem;
	line-height: 1.6;
}

.footer-logo {
    height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
}

.link-column h4 {
    color: #3498db;
 margin-bottom: 1rem;
    font-size: 1.2rem;
}

.link-column ul {
   list-style: none;

}

.link-column ul li {
   margin-bottom: 0.5rem;
}

.link-column ul li a {

	    color: #bdc3c7;
  text-decoration     :     none;
    transition: color 0.3s ease;}

.link-column ul li a:hover {
     color: #3498db;
}

.footer-contact h4 {
  color    :#3498db;
	margin-bottom: 1rem;
}



.footer-contact p {
  color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
   padding-top: 1rem;
   text-align: center;
}

.footer-bottom p   {
   color: #95a5a6;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .navigation-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 2rem;
    }
    
    .navigation-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .services-section h2,
    .contact-section h2 {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }
}.about-hero {
  margin-top: 80px;

    padding: 4rem 0;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  color: white;

  text-align: center;
	
}

.about-hero-content h1 {
  font-weight: 700;
   font-size: 3.5rem;
   margin-bottom: 1.5rem;
}

.about-intro {
  font-size  :   1.3rem;
   max-width: 900px;
   margin: 0 auto;
    line-height: 1.7;
   opacity  :     0.95;
}

.story-section {
  padding   :5rem 0;
  background-color: #f8f9fa;
}

.story-content {
   display   :        grid;
   grid-template-columns   :    2fr 1fr;
    gap: 3rem;
  align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
   font-weight: 700;
  margin-bottom: 2rem;
   color: #2c3e50;
}

.story-text p {
   font-size :1.1rem;
   color: #6c757d;
    line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;

	   height: auto;

	   border-radius: 12px;

	  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.expertise-section {
     padding   :  5rem 0;
   background-color: #fff;

} 

.expertise-section 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(280px, 1fr));
  gap: 2rem;
}

.expertise-card {
	background: #fff;
                    padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #3498db;
}

.expertise-card:hover
{
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.expertise-card h3 {
    font-size: 1.4rem;
                    color    :     #2c3e50;
  margin-bottom: 1rem;
   font-weight: 600;
}

.expertise-card p {
  color: #6c757d;
   line-height: 1.6;
}

.approach-section {
   padding: 5rem 0;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  color: white;
}

.approach-content {
	  grid-template-columns: 1fr 1fr;
    gap: 3rem;
   display: grid;
   align-items: center;}

.approach-text h2 {
   font-size: 2.5rem;
   margin-bottom: 2rem;
    font-weight: 700;
     }

.approach-points	{
       display: flex;
   flex-direction: column;
  gap: 1.5rem;
}

.approach-point h4 {
	font-size: 1.2rem;
  margin-bottom: 0.5rem;
		 color     :     #f8f9fa;
}

.approach-point p {

	  line-height: 1.6;
   color: #e9ecef;


}

.approach-image img {
   width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.values-section {
	 padding: 5rem 0;
    background-color: #f8f9fa;
}

.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(250px, 1fr));
         gap: 2rem;
}

.value-item {
   background: white;

	  border-radius: 15px;

	    overflow: hidden;

	  box-shadow: 0 8px 25px rgba(0,0,0,0.08);

	    transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-content {
  padding     :        2rem;
}

.value-content h3
{
          font-size: 1.4rem;
    color: #2c3e50;
  margin-bottom: 1rem;
   font-weight: 600;
}

.value-content p

{
   color: #6c757d;
    line-height: 1.6;
}

.stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color :     white;
}  

.stats-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
   text-align: center;
}

.stat-item


{
    padding: 1.5rem;
}

.stat-number 
 {
  font-size: 3rem;
	  font-weight: 700;
	    color: #3498db;
	   margin-bottom: 0.5rem;
}

.stat-label {
   font-weight: 500;
   font-size: 1.1rem;
    color: #ecf0f1;
}

.thankyou-section {
   margin-top   : 80px;
    padding: 5rem 0;
  background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    color: white;
   min-height: 70vh;

}

.thankyou-content {
   display     :grid;
   grid-template-columns: 1fr 2fr;
       gap: 3rem;
    align-items   :     center;
}

.thankyou-visual {
   text-align: center;
}

.success-indicator {
  background: rgba(255,255,255,0.2);
   width: 150px;
   height: 150px;
  border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
    margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
}

.check-mark {
  font-size: 4rem;
   color: white;
    font-weight: bold;
}

.thankyou-text h1 {

	 font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;

}

.thankyou-message {
		font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.95;
}

.next-steps {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
    border-radius: 15px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.next-steps h3 {
	font-size: 1.5rem;
  margin-bottom: 1.5rem;
	color: #f8f9fa;
} 

.steps-list


{
    display: flex;
	flex-direction :     column;
    gap: 1.5rem;
}

.step-item {
	  display: flex;
  gap: 1rem;
  align-items: flex-start;
	}

.step-number  {
    background: #3498db;
	    color: white;
	   width: 30px;
	  height: 30px;
	  border-radius: 50%;
	  display: flex;
	                    align-items: center;
	  justify-content: center;
		 font-weight: bold;
	   flex-shrink: 0;
}

.step-description h4 {
       font-size: 1.1rem;

	margin-bottom: 0.5rem;

    color: #f8f9fa;
}

.step-description p   {
  color: #e9ecef;
  line-height: 1.5;
    font-size  : 0.95rem;
}

.contact-reminder {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
    border-radius: 10px;
   margin-bottom: 2rem;
}

.contact-reminder h3 {
   font-size: 1.3rem;
  margin-bottom: 1rem;
	 color :        #f8f9fa;
}

.urgent-contact p {
    margin-bottom: 0.5rem;
 color: #e9ecef;
}

.additional-resources h3 {
    font-size: 1.3rem;
   margin-bottom: 1rem;
	color: #f8f9fa;
}

.additional-resources p		{
   margin-bottom: 1.5rem;
    color  :   #e9ecef;
}

.resource-links  
  {
  flex-wrap: wrap;
      display: flex;
   gap: 1rem;
}

.resource-btn {
  background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.8rem 1.5rem;
         border-radius: 25px;
   text-decoration: none;
        font-weight: 500;
    transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.3);
}

.resource-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.testimonial-preview {
    padding: 4rem 0;
  background-color: #f8f9fa;
    text-align: center;
}

.testimonial-preview h2 {
   font-size: 2.5rem;
         color: #2c3e50;
  margin-bottom: 2rem;
  font-weight: 700;
}

.testimonial-item {
  max-width :    800px;
	 margin: 0 auto;
   background: white;
	padding: 2.5rem;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-item blockquote {
   font-size: 1.2rem; 
	    font-style    :italic; 
	    color: #2c3e50; 
	   margin-bottom   :1.5rem; 
	               line-height: 1.7;
}

.testimonial-item cite {


   font-size: 1rem;
   color     :      #6c757d;
     font-style: normal;
  font-weight:       500;

}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .thankyou-text h1 {
        font-size: 2.2rem;
    }
    
    .resource-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-text h1 {
        font-size: 1.8rem;
    }
    
    .success-indicator {
        width: 120px;
        height: 120px;
    }
    
    .check-mark {
        font-size: 3rem;
    }
    
    .resource-btn {
        width: 100%;
        text-align: center;
    }
}.privacy-section,
.cookies-section {
   padding: 5rem 0;
  background-color: #f8f9fa;
}

.privacy-section h1,
.cookies-section h1 {
    text-align: center;
  font-size: 2.8rem;
  color: #2c3e50;
   margin-bottom   :    2rem;
   font-weight: 700;
}

.privacy-section h2,
.cookies-section h2

{
	    font-size: 1.8rem;
   color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight     : 600;
     }

.privacy-section p,
.cookies-section p {
   color: #6c757d;
                    line-height :       1.6;
  margin-bottom:   1.5rem;
  font-size: 1.1rem;
}