* {
		 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-color: #ffffff;
}

.main-header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: fixed;
    width   :        100%;
    top :       0;
  z-index: 1000; 

}

.navigation-wrapper {
    padding: 1rem 2rem;
  justify-content: space-between;
    max-width: 1200px;
   align-items: center;
    margin   :  0 auto;
    display:  flex;
}

.logo-section {
  display: flex;
  gap: 12px;
   align-items: center;
}

.company-logo {


   height: 45px;
   width: auto;
  filter: brightness(0) invert(1);


}  

.brand-title {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
    letter-spacing: -0.5px;
}

.desktop-nav {
	display : flex;
    gap :    2rem;
}

.nav-item{
  color: rgba(255,255,255,0.9);
  text-decoration: none;
    font-weight    :  500;
	 padding: 0.5rem 1rem;
    border-radius: 6px;
  transition: all 0.3s ease;


}

.nav-item:hover, .nav-item.active {
  background-color: rgba(255,255,255,0.15);
  color: white; 
	
}

.mobile-menu-toggle {
    cursor: pointer;
   flex-direction: column;
  display: none;
     gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
   height   :    3px;
    background: white;
  transition: 0.3s; 

}

.mobile-nav
{
   display: none;
  position :        absolute;
   top: 100%;
    left: 0;
    width: 100%;
    background: #1e3c72;
   padding: 1rem;
  flex-direction: column;
	gap: 1rem;
}

.mobile-nav-item {
     color: white;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 4px;
  transition: background 0.3s;
}

.mobile-nav-item:hover {
  background: rgba(255,255,255,0.1);
}

.main-content {
   margin-top: 80px;
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 4rem 0;
      color  :     white;
}

.hero-container {
   max-width: 1200px;
	margin: 0 auto;
  padding: 0 2rem;
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
}

.hero-content h1.hero-title    {
    font-size: 2.8rem;
  font-weight: 700;
	 margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
	margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-actions {
   display: flex;
                    gap: 1rem;
   flex-wrap: wrap;
}

.primary-button, .secondary-button {
    padding  :      1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;
}

.primary-button {
    background: #ff6b6b;
   color: white;
}

.primary-button:hover {
	background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,107,107,0.3);
}

.secondary-button {
  background: transparent;
   color: white;
  border: 2px solid white;
}

.secondary-button:hover {
      background :       white;
    color    :  #667eea;
}

.hero-image img {
       width  :  100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);}

.benefits-section, .services-section, .testimonials-section {
   padding: 5rem 0;
}

.content-container, .contact-container {
     max-width :       1200px;
	 margin: 0 auto;
					padding: 0 2rem;
}

.section-heading {


    text-align   :  center;

	   font-size: 2.5rem;

	  margin-bottom: 3rem;

	    color: #2c3e50;
     }

.benefits-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap :        2rem;
    margin-top: 2rem;
}

.benefit-card {
   background: white;
       padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-title {
   color:      #1e3c72;
    margin-bottom: 1rem;
	font-size   :       1.3rem;
}

.benefit-text {
   color: #666;
   line-height: 1.7;
}

.services-showcase {
  display: grid;

		gap: 3rem;
}

.service-item {

	   display: grid;
  grid-template-columns  :     1fr 2fr;
   gap: 2rem;
  align-items: center;
    background: #f8f9fa;
  border-radius     :    12px;
	padding: 2rem;
     }

.service-item:nth-child(even) {
  grid-template-columns:        2fr 1fr;
}

.service-item:nth-child(even) .service-content {
   order     :     -1;
}

.service-item img {
     width: 100%;
   height: 250px;
    object-fit: cover;
  border-radius: 8px;


	}

.service-name {
      color: #1e3c72;
	font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-description {
     color: #555;
  line-height    :1.7;
     }

.cta-section {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  padding: 4rem 0;
    color     :        white;
      text-align: center;
}

.cta-container {
    padding: 0 2rem;
  margin: 0 auto;
   max-width: 800px;
}

.cta-title		{
   font-size: 2.2rem; 
    margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
    opacity   :   0.95; 
	
}

.cta-button {
    background: white;

   color: #ff6b6b;

   padding: 1rem 2.5rem;

   text-decoration: none;

    border-radius: 8px;

   font-weight: 600;

   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);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.testimonial-card {
  background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
   border-left: 4px solid #1e3c72;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
   color: #555;
    line-height: 1.6;
}

.testimonial-author {
   font-weight: 600;
  color: #1e3c72;
}

.contact-section {
                    background: #f8f9fa;
    padding: 5rem 0;
}

.contact-container {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap :        4rem;
  align-items: start;
}

.contact-title {
   font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.contact-description {
   color :     #666;
   line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-details {
    display: flex;
       flex-direction: column;
   gap: 1rem;
}

.contact-item {
	display: flex;
   flex-direction: column;
    gap :        0.25rem;
}

.contact-label {
       font-weight: 600;
   color :     #1e3c72;
     }

.contact-value {
	color: #555;
}

.contact-form {
    background: white;
  padding    :    2rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-row {
	display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group{
	margin-bottom :        1.5rem;
}

.form-label {
     display: block;
	 margin-bottom: 0.5rem;
  font-weight: 600;
    color: #2c3e50;
}

.form-input, .form-select, .form-textarea {
   width: 100%;
   padding:    0.75rem;
    border: 2px solid #e0e0e0;
   border-radius: 6px;
   font-size: 1rem;
	transition  :border-color 0.3s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
   border-color: #1e3c72; 
	
}

.form-submit {
    padding: 1rem 2rem;
  background: #1e3c72;
    width: 100%;
                    cursor: pointer;
    transition: all 0.3s ease;
	font-weight: 600;
    color: white;
   font-size: 1rem;
   border: none;
  border-radius: 6px;
}



.form-submit:hover {
  background: #2a5298;
  transform: translateY(-2px);
}

.cookies-banner {
  position  :     fixed;
  bottom: 0;
  left   :0;
        right: 0;
  background: #2c3e50;
    color: white;
  -moz-transform: translateY(100%);
  -webkit-transform: translateY(100%);
    padding: 1rem;
    z-index: 1000;
  transform: translateY(100%);
  -ms-transform: translateY(100%);
          transition    : transform 0.3s ease;
}

.cookies-banner.show {
  transform: translateY(0);
}

.cookies-content {
	max-width: 1200px;
    margin: 0 auto;
 display :flex;
    justify-content: space-between;
   align-items: center;
    gap: 2rem;
}

.cookies-actions {
  display: flex;
    gap: 1rem;
   align-items: center;
}

.cookies-link {
    color: #74b9ff;
    text-decoration: none;
}

.cookies-accept {
	background: #74b9ff; 
    color  :  white; 
    border: none; 
	 padding: 0.5rem 1rem; 
  border-radius: 4px; 
 cursor: pointer;
}

.site-footer {
   background     : #2c3e50;
  color: white;
        padding   :  3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;

	    margin: 0 auto;

	   padding: 0 2rem;

	    display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	  gap   :    2rem;
} 

.footer-brand  {
  margin-bottom: 1rem;
   gap: 1rem;
	display: flex;
  align-items:      center;

}  

.footer-logo {

	    height: 40px;
  filter: brightness(0) invert(1);
	}

.footer-title {
      color: white;
     font-size: 1.2rem;
}

.footer-description {

  color: rgba(255,255,255,0.8);
   line-height: 1.6;
}

.footer-heading {
   color: white;
   margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
    flex-direction   :   column;
  gap:       0.5rem;
}

.footer-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
   transition: color 0.3s;
}

.footer-link:hover {
   color: white;
}

.footer-contact p 
 {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
  margin-top: 2rem;
   padding-top: 1rem;
         text-align: center;
  color: rgba(255,255,255,0.7);
}@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem !important;
    }

    .service-item {
        grid-template-columns: 1fr !important;
    }

    .service-item:nth-child(even) .service-content {
        order: 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cookies-content {
        flex-direction: column;
        text-align: center;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
	 color: white;
}


.about-hero-container {
    max-width :   1200px;
  margin: 0 auto;
  padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  gap     :        3rem;
    align-items: center;
}

.about-hero-title {
  font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.5rem;
   line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.3rem;
	opacity: 0.95;
  line-height: 1.6;
}

.about-hero-image img 
 {
         width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.company-story {
   padding: 5rem 0;
  background: #f8f9fa;

}

.story-layout {


  display: grid;
  grid-template-columns   :       1.5fr 1fr;
   gap: 4rem;
   align-items: center;
}

.story-heading     {
    font-size: 2.2rem;
   	 color: #2c3e50;
       margin-bottom: 2rem;
}



.story-text {
	color: #555;
    line-height: 1.8;
  margin-bottom: 1.5rem;
   font-size:       1.1rem;
}

.story-image img {
    width: 100%;
   height: 300px;
  object-fit: cover;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1); 

}

.mission-values		{
    padding    :  5rem 0;
	
}

.values-grid		{
   display  :    grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
   margin-top  :3rem;
}


.value-card {
    background: white;
   padding: 2.5rem 2rem;
  border-radius   :       12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  border-top: 4px solid #e0e0e0;
}

.value-card.primary-card {
   border-top-color: #1e3c72;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.value-card:hover		{


  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);}


.value-title {
    color: #1e3c72;
  font-size     :     1.4rem;
  margin-bottom: 1rem;
    font-weight: 600;
}

.value-description
{
   color: #666;
   line-height: 1.7;
}

.team-section {
	 padding: 5rem 0;
	 background: #f8f9fa;
}

.team-intro


{


    text-align: center;
   margin-bottom: 3rem;


}

.team-description {
   font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
    max-width  :   800px;
    margin: 0 auto;
}

.team-members {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.team-member {
    background: white;
  padding    :       2.5rem;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-name {
   color: #1e3c72;
    font-size: 1.4rem;
   margin-bottom: 0.5rem;
}

.member-role {
  color: #ff6b6b;
    font-weight: 600;
          margin-bottom: 1rem;
  font-size    :   1.1rem;
}

.member-experience		{
    color: #666;
	line-height: 1.7;
}

.methodology-section {
    padding   :    5rem 0;
}

.methodology-layout {
   display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
   align-items: center;
}

.methodology-image img    {
  width: 100%;
   height: 400px;
    object-fit: cover;
	border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
} 

.methodology-title {
   font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.methodology-steps {
   display     : flex;
    flex-direction: column;
 gap: 2rem;
}

.method-step {
   display: flex;
    gap  :        1.5rem;
        align-items     :       flex-start;
}

.step-number {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
         color: white;
         width: 50px;
   height: 50px;
  border-radius: 50%;
         display: flex;
       align-items: center;
  justify-content: center;
  font-weight: 700;
	font-size: 1.2rem;
    flex-shrink: 0;
}

.step-title  {
    color: #1e3c72;
  font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-description {
        color: #666;
  line-height: 1.6;
}

.achievements-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.achievements-grid {
	display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

   gap: 2rem;

    margin-top: 3rem;
}

.achievement-item {
    text-align: center;
    padding: 2rem;
} 

.achievement-number {
   font-size: 3rem;
   font-weight: 700;
   color: #ff6b6b;
    margin-bottom: 0.5rem;


}

.achievement-label {
  font-size: 1.1rem;
  opacity  : 0.9;
}

.approach-section {
   padding: 5rem 0;
}

.approach-title {
  text-align: center;
   font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 3rem;
}

.approach-reasons {
  display: grid;
  gap: 3rem;
   max-width: 1000px;
   margin: 0 auto;
}

.reason-item	{
   display: grid;
    grid-template-columns     : 300px 1fr;
  gap: 2rem;
   align-items: center;
    background: #f8f9fa;
  padding: 2rem;
    border-radius     :    12px;
}

.reason-item:nth-child(even)		{

   grid-template-columns: 1fr 300px;

}

.reason-item:nth-child(even) .reason-content {
  order: -1;
}

.reason-item img {


   width  :100%;
     height: 200px;
       object-fit: cover;
     border-radius: 8px;
	}

.reason-title {
  color: #1e3c72;
  font-size: 1.4rem;
	 margin-bottom: 1rem;
}

.reason-text {
    color: #666;
       line-height: 1.7;
}



.thankyou-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
		 padding: 6rem 0;
   color     :   white;
         text-align: center;
}  

.thankyou-container {
	        max-width: 1200px;
               margin: 0 auto;
   padding: 0 2rem;
		display: grid;
  grid-template-columns    :      1.5fr 1fr;
         gap: 4rem;
   align-items: center;
   text-align: left;


}

.success-icon {
  display: flex;
    justify-content: center;
       margin-bottom: 2rem;
}

.checkmark-circle {
  width: 80px;

   height   :      80px;

  background: rgba(255,255,255,0.2);

   border-radius: 50%;

  display: flex;

   align-items: center;

  justify-content     :    center;

	position: relative;

  border: 3px solid rgba(255,255,255,0.3);
}

.checkmark 
 {
	  width: 25px;
  height: 15px;
  border: 3px solid white;
    border-top: none;
    border-right :       none;
  transform: rotate(-45deg);
     }

.thankyou-title {

    font-size: 2.8rem;
	line-height: 1.2;
   margin-bottom: 1.5rem;
   font-weight: 700;
}

.thankyou-subtitle {
    font-size: 1.3rem;
          opacity   :        0.95;
   line-height: 1.6;
	 margin-bottom: 3rem;
}


.thankyou-image img{
   width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.next-steps {


  background: rgba(255,255,255,0.1);
    padding: 2.5rem;
  border-radius: 12px;
   margin-bottom: 3rem;
  backdrop-filter: blur(10px);}

.steps-title {
   font-size: 1.8rem;
  margin-bottom: 2rem;
   text-align: center;
}

.steps-list {
    gap: 2rem;
  display: flex;
       flex-direction: column;
}

.step-item {
   	 display: flex;
  gap: 1.5rem;
   align-items: flex-start;}

.step-icon {

	    background: #ff6b6b;
   color: white;
        width: 40px;
   height: 40px;
   border-radius: 50%;
   display: flex;
          align-items: center;
    justify-content: center;
      font-weight: 700;
  flex-shrink: 0;
}

.step-heading {
	 font-size: 1.2rem;
   margin-bottom: 0.5rem;
}

.step-description {
  opacity: 0.9;
    line-height: 1.6;
}

.contact-reminder {
  background: rgba(255,255,255,0.1);
   padding: 2rem;
  border-radius: 12px;
    margin-bottom: 3rem;
  backdrop-filter: blur(10px);
}

.reminder-title {
    font-size: 1.4rem;
   margin-bottom    :        1rem;
  text-align: center;


}

.reminder-text {
   opacity:    0.9;
   line-height: 1.6;
   margin-bottom: 1.5rem;
  text-align: center;
}

.contact-info-quick {
  display: flex;
  flex-direction: column;
          gap: 1rem;
    align-items: center;
}

.contact-item-quick {
    display: flex;
    gap: 0.5rem;
    align-items  :       center;
}

.contact-label-quick {
        font-weight    :    600;
}

.contact-value-quick {
   opacity: 0.9;
}

.thankyou-actions {
   display: flex;
	 gap: 1rem;
	flex-wrap: wrap;
}

.additional-resources {
     padding: 5rem 0;

  background: #f8f9fa;


}

.resources-title {
   text-align: center;
	 font-size    :       2.5rem;
      color: #2c3e50;
    margin-bottom: 1rem;
}

.resources-subtitle {
   text-align: center;

  color: #666;

  font-size: 1.2rem;

  margin-bottom: 3rem;

   line-height: 1.6;
} 

.resources-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.resource-card {
       background: white;
    border-radius: 12px;
	overflow   :hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
}

.resource-card:hover {
	  transform: translateY(-5px);


}

.resource-card img {
   width: 100%;
  height: 200px;
    object-fit: cover;
}

.resource-content {
	  padding: 2rem;}

.resource-title		{
    font-size: 1.3rem;
  color: #1e3c72;
 margin-bottom: 1rem;
}

.resource-description {
  color   :       #666;
   line-height: 1.7;
}@media (max-width: 768px) {
    .about-hero-container, .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero-title, .thankyou-title {
        font-size: 2.2rem !important;
    }

    .story-layout, .methodology-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reason-item {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .reason-item:nth-child(even) .reason-content {
        order: 0;
    }

    .team-members {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .thankyou-actions {
        justify-content: center;
    }

    .next-steps, .contact-reminder {
        margin-left: -1rem;
        margin-right: -1rem;
    }
}.cookies-hero, .privacy-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding   :        4rem 0;
  color: white;
}

.cookies-content-section, .privacy-content-section {
               padding: 5rem 0;
	background: #f8f9fa;
}@media (max-width: 768px) {
    .cookies-hero, .privacy-hero {
        padding: 3rem 0;
    }

    .cookies-content-section, .privacy-content-section {
        padding: 3rem 0;
    }
}