*   {
      margin: 0;
   padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
    line-height: 1.6;
   color: #333;
  overflow-x: hidden;
}

.container
	{
    max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
}

.navbar {
          position: fixed;
    top: 0;
  width   :  100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index  :    1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
  padding: 0 20px;
   display: flex;
    justify-content: space-between;
    align-items: center;
   height: 70px; 
	
}

.nav-logo .logo-img {
    height: 45px;
    width: auto;
}

.nav-menu {
	display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
        font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
   color: #2563eb;
}

.nav-toggle {
  display: none;
       flex-direction: column;
      cursor :    pointer;
}

.bar {
  width: 25px;
   height: 3px;
 background-color: #333;
   margin: 3px 0;
  transition: 0.3s;
}

.hero-section {
  margin-top: 70px;
  min-height: 80vh;
   display: flex;
         align-items: center;
          padding: 4rem 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	
}

.hero-content {
   max-width: 600px;
  margin: 0 auto;
   text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1e293b;
      margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.25rem;
   color: #64748b;
    margin-bottom: 2.5rem;
}

.hero-buttons {
   display: flex;
    gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary {
  background: #2563eb;
   color: white;
   padding: 14px 28px;
  text-decoration: none;
   border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;


}

.cta-primary:hover {
    background   :        #1d4ed8;
  transform: translateY(-2px);
}

.cta-secondary {
   border: 2px solid #2563eb;
    color: #2563eb;
    padding: 12px 26px;
   text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
                    transition: all 0.3s ease;
}

.cta-secondary:hover
	{
  background: #2563eb;
    color    :  white;
}

.hero-image {
	margin-top: 3rem;
   text-align: center;
}

.hero-image img {
	max-width: 100%;
	height: auto;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.intro-section {
  padding: 5rem 0;
  background: white;
}

.intro-section h2	{
    font-size: 2.5rem;
  text-align: center;
    margin-bottom: 2rem;
	color: #1e293b;
}

.intro-section p {
	font-size: 1.1rem;
  color: #64748b;
   text-align: center;
	max-width: 800px;
  margin: 0 auto;
         line-height: 1.8;
}

.services-section {
  padding: 5rem 0;
    background   :    #f8fafc;
} 

.services-section h2 {
	   font-size: 2.5rem;
   text-align: center;
   margin-bottom: 3rem;
    color: #1e293b;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
  margin-top:       3rem;
}  

.service-card	{
   background: white;
   padding:  2rem;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
   width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
   margin-bottom: 1.5rem;
}

.service-card h3 {
   font-size: 1.5rem;
  margin-bottom :  1rem;
   color: #1e293b;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

.cta-section {
  padding     :     5rem 0;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color  :        white;
}

.cta-content {
  text-align: center;
   max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 
 {
    font-size: 2.5rem;
   margin-bottom: 1.5rem;
}

.cta-content p {
   font-size: 1.1rem;
  margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
  color: #2563eb;
    padding: 14px 28px;
               text-decoration: none;
   border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-image


{
   margin-top: 3rem;
    text-align: center;
}

.cta-image img {
	 max-width: 100%;
  height:    auto;
  border-radius: 12px;
}

.benefits-section {
  padding: 5rem 0;
      background  :        white;
}

.benefits-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
        text-align: center;
	color: #1e293b;
}

.benefits-list {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-item {
  border-radius    :        8px;
   border-left: 4px solid #2563eb;
    background: #f8fafc;
  padding: 2rem;
}

.benefit-item h3 {

	  font-size: 1.3rem;
   margin-bottom: 1rem;
   color :        #1e293b;


}

.benefit-item p {
	               color: #64748b;
    line-height: 1.6;
}

.contact-section
	{
  padding: 5rem 0;
  background: #f8fafc;
}

.contact-section h2 {

	  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
        color     :   #1e293b;

}

.contact-content {


    display: grid;

   grid-template-columns: 2fr 1fr;

  gap: 3rem;

    max-width: 1000px;

	margin: 0 auto;

}

.contact-form {
   background: white;
    padding  :  2.5rem;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
        margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
    margin-bottom   :    0.5rem;
  font-weight: 600;
  color: #1e293b;
}



.form-group input,
.form-group select,
.form-group textarea {
	 width: 100%;
    padding: 12px;
	 border: 2px solid #e2e8f0;
   border-radius: 6px;
    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: 14px 28px;
               border: none;
  border-radius: 6px;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
  transition: all 0.3s ease;
    width: 100%;

}

.submit-btn:hover {
 background: #1d4ed8;
  transform: translateY(-2px);
}

.contact-info    {
   background: white;
             padding: 2.5rem;
             border-radius: 12px;
     box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      height: fit-content; 
	
}

.contact-info h3 {
    font-size: 1.5rem;

	  margin-bottom: 1.5rem;

	  color: #1e293b;
}

.contact-item     {
   margin-bottom: 1.5rem;
   color: #64748b;
    line-height: 1.6;
}

.contact-item strong {
	color: #1e293b;
}

.footer    {
       background: #1e293b;
       color     :     white;
  padding: 3rem 0 1rem;


}

.footer-content {
    display: grid;
    grid-template-columns :   1fr 2fr 1fr;
   gap: 2rem;
  max-width    : 1200px;
  margin: 0 auto;
   padding: 0 20px;
}

.footer-logo img {
    height: 40px;
  width: auto;
}

.footer-links {
   display: grid;

  grid-template-columns: 1fr 1fr;

    gap: 2rem;
}

.footer-column h4 {
	margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-column a {
     display: block;
  color    :        #94a3b8;
	text-decoration: none;
	margin-bottom: 0.5rem;
   transition: color 0.3s ease;
	}

.footer-column a:hover {
   color    : white;
}

.footer-contact h4 {


					margin-bottom: 1rem;
    color: #f1f5f9;}

.footer-contact p {
  margin-bottom: 0.5rem;
   color: #94a3b8;
}

.footer-bottom {
  border-top: 1px solid #334155;
   margin-top: 2rem;
  padding-top: 1rem;
   text-align: center;
  color: #94a3b8;
}@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
}.about-hero {
   margin-top: 70px;
   padding: 4rem 20px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display    :   flex;
  align-items:      center;
  min-height: 60vh;


}

.about-hero-content {
    grid-template-columns: 1fr 1fr;
  gap     : 3rem;
    display: grid;
   margin: 0 auto;
    align-items     :  center;
	max-width:    1200px;
}

.about-hero-content h1 {
    font-size: 3rem;
       color: #1e293b;
       margin-bottom: 1.5rem;
       line-height: 1.2;
}

.about-subtitle 
 {
   font-size: 1.2rem;
    color: #64748b;
   line-height: 1.6;
}

.about-hero-visual img {
    width   :   100%;

    height: auto;

  border-radius: 12px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.story-section {
   padding: 5rem 0;
    background:      white;


}

.story-content h2 {
          font-size   :      2.5rem;
     color: #1e293b;
   margin-bottom: 2rem;
}  

.story-content p {
     font-size: 1.1rem;
     color: #64748b;
                    line-height: 1.8;
   margin-bottom: 1.5rem;
}

.story-image {


   margin: 3rem 0;
    text-align: center;
}

.story-image img {
    max-width: 100%;
  height: auto;
    border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.methodology-section {
    padding: 5rem 0;

   background: #f8fafc;
}

.methodology-section h2 {
	 font-size    :2.5rem;
  text-align: center;
    color: #1e293b;
  margin-bottom: 3rem;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
	 max-width: 1000px;
  margin:        0 auto;
}

.method-card {
   background: white;
               padding: 2.5rem;
   border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	 border-left: 4px solid #2563eb;
}

.method-card h3     {
  font-size: 1.4rem;
  color: #1e293b;
   margin-bottom: 1rem;
}

.method-card p {
    color: #64748b;
   line-height: 1.6;
}

.expertise-section {
   padding    :     5rem 0;
  background: white;
}

.expertise-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
     grid-template-columns: 1fr 1fr;
  gap: 4rem;
	align-items: center;
}

.expertise-text h2 {
   font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.expertise-list {
   display   :flex;
  flex-direction: column;
   gap: 1.5rem;
}

.expertise-item h4 {
   font-size: 1.2rem;
		color: #1e293b;
    margin-bottom: 0.5rem;
}

.expertise-item p {
   color: #64748b;

		line-height: 1.6;
}

.expertise-visual img {
    width   :    100%;
    height: auto;
   border-radius  :10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
} 

.results-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
                    color  :       white;
}

.results-section h2 {


  font-size: 2.5rem;
   text-align: center;
  margin-bottom: 3rem;


} 

.results-stats {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
         max-width: 1000px;
     margin     :        0 auto;
}

.stat-item {
   text-align   :     center;
    padding    :2rem;
}

.stat-number {
    margin-bottom: 0.5rem;
   font-size: 3rem;
   font-weight: bold;
}

.stat-label {

	   font-size: 1.1rem;
  opacity  :      0.9;
	}

.approach-section {
    padding: 5rem 0;
   background:    #f8fafc;
}

.approach-content h2 {
   font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
  text-align: center;
}

.approach-content > p {
  font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
               text-align: center;
    max-width: 800px;
	 margin: 0 auto 3rem;
} 

.approach-pillars {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
    margin-bottom: 3rem;
}

.pillar {
   background: white;
  padding   : 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);


}

.pillar h4 {
   font-size: 1.3rem;

	   color   :     #1e293b;

	          margin-bottom: 1rem;
}

.pillar p {
   color: #64748b;
    line-height   :       1.6;
}  

.approach-image {
  text-align: center;
   margin-top   :   3rem;
}

.approach-image img		{
    max-width : 100%;
     height: auto;
   border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.thankyou-hero {
  margin-top: 70px;
  padding: 4rem 20px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  min-height: 90vh;
}

.thankyou-container {
  max-width: 1200px;
    margin: 0 auto;
    display: grid;
         grid-template-columns: 2fr 1fr;
   gap: 4rem;
    align-items: start;
}

.thankyou-content {
    background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.success-icon {
     text-align    :        center;
  margin-bottom    : 2rem;
}

.checkmark {
  border-radius: 50%;
    text-align: center;
    line-height: 80px;
	height: 80px;
   width    :     80px;
   font-size: 3rem;
  display :   inline-block;
    color: white;
    background: #10b981;
   font-weight: bold;
}

.thankyou-content h1 {
  color:       #1e293b;
  font-size: 2.8rem;
	margin-bottom: 1.5rem;
  text-align: center;
}

.thankyou-message {
  font-size: 1.2rem;
  color: #64748b;
   text-align  :        center;
    margin-bottom: 3rem;
	line-height: 1.6;
}

.next-steps h2 {
        font-size: 2rem;
  color: #1e293b;
  margin-bottom: 2rem;
}

.steps-list {
    display: flex;
  flex-direction: column;
    gap: 2rem;
   margin-bottom: 3rem;
}

.step-item {
     display: flex;

    gap: 1.5rem;

   align-items: flex-start;
	}  

.step-number   {
   background    :        #2563eb;
  color: white;
   width: 40px;
    height: 40px;
    border-radius: 50%;
	 display: flex;
 align-items: center;
   justify-content: center;
	 font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;

	   color: #1e293b;

	    margin-bottom: 0.5rem;
}

.step-content p {

  color: #64748b;
   line-height: 1.6;
}

.preparation-tips {
	background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
   margin-bottom: 3rem;
}

.preparation-tips h2 {
  font-size: 1.8rem; 
   color: #1e293b; 
   margin-bottom: 1.5rem;
}

.tips-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.tip-card {
    background: white;
  padding :  1.5rem;
	 border-radius: 8px;
    border-left: 3px solid #10b981;
}

.tip-card h4 {
    color: #1e293b; 
    font-size    :     1.1rem; 
   margin-bottom: 0.5rem;
}

.tip-card p {
  color: #64748b;
  font-size: 0.95rem;
    line-height    :      1.5;
}

.contact-reminder {

	 background: #eff6ff;
    padding: 2rem;
    border-radius: 8px;
   -webkit-border-radius     :  8px;
   -moz-border-radius: 8px;
    text-align: center;
   margin-bottom: 3rem;
}

.contact-reminder h3 {
               font-size: 1.4rem;
   color: #1e293b;
  margin-bottom   :1rem;
}

.contact-reminder p {
  color: #64748b;
    margin-bottom: 1rem;
}

.contact-details {
   background: white;
    padding: 1.5rem;
    border-radius: 6px;
    display   : inline-block;
}


.contact-details p {
   margin: 0.5rem 0;
   color   :  #1e293b;
	
	}

.return-actions {

	  display: flex;
   gap: 1rem;
    justify-content: center;
   flex-wrap: wrap;


}

.btn-primary {

	   background: #2563eb;
     color: white;
       -moz-border-radius:       6px;
      padding: 12px 24px;
     text-decoration: none;
        border-radius: 6px;
     font-weight: 600;
      transition :    all 0.3s ease;
	


}

.btn-primary:hover {
    background: #1d4ed8;
  transform: translateY(-2px);

}

.btn-secondary {
	 border: 2px solid #2563eb;
    color: #2563eb;
	padding: 10px 22px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
               transition: all 0.3s ease;
}

.btn-secondary:hover {

	background: #2563eb;
   color: white;
     }

.thankyou-visual{
  position: sticky;
    top: 100px;

}

.thankyou-visual img
	{
    width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .expertise-content {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .return-actions {
        flex-direction: column;
        align-items: center;
    }

    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .thankyou-content {
        padding: 1.5rem;
    }

    .checkmark {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        line-height: 60px;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .results-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}.cookies-hero,
.privacy-hero {
   margin-top: 70px; 
    padding: 4rem 20px; 
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); 
    display: flex; 
	align-items: center; 
   min-height: 60vh;
}

.cookies-hero .about-hero-content,
.privacy-hero .about-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cookies-hero h1,
.privacy-hero h1 {
  font-size: 3rem;
    color     :   #1e293b;
  margin-bottom: 1.5rem;
    line-height  : 1.2;
}

.cookies-hero .about-subtitle,
.privacy-hero .about-subtitle {
          font-size: 1.2rem;
   color: #64748b;
  line-height: 1.6;
       max-width: 800px;
   margin: 0 auto;
}@media (max-width: 768px) {
    .cookies-hero h1,
    .privacy-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .cookies-hero h1,
    .privacy-hero h1 {
        font-size: 2rem;
    }
}