* 
 {
    margin    :   0;
    padding: 0;
  box-sizing: border-box;


}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
   color: #2c3e50;
   overflow-x: hidden;
}

.container {
   max-width: 1200px;
      margin: 0 auto;
   padding: 0 20px;
}

.main-navigation {
   position  :       fixed;
    top: 0;
   width    :        100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
} 

.nav-container {
	max-width: 1200px;
    margin  :     0 auto;
   padding: 0 20px;
 display: flex;
  justify-content: space-between;
   align-items: center;
  height: 70px;
}

.brand-section {
   display: flex;
   align-items    :        center;
  gap: 12px;
}


.nav-logo {
    height :     40px;
    width: auto;
}

.brand-text {
  font-size: 1.4rem;
  font-weight:700;
  color: #2c3e50;
  letter-spacing: -0.5px;
}

.nav-links {
    align-items     :       center;
   display   :     flex;
   gap: 35px;
}

.nav-link {
     text-decoration: none;
   color: #2c3e50;
   font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
	position: relative;
}

.nav-link:hover,
.nav-link.active  
  {
    color     :  #e74c3c;
}

.nav-link::after {
  content: '';
   position  :      absolute;
   bottom:-5px;
    left  :       0;
  width: 0;
        height: 2px;
	 background: #e74c3c;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
   width: 100%;
	
}

.burger-menu {
  display: none;
   flex-direction: column;
   cursor: pointer;
    gap: 4px;
}

.burger-line {
  width: 25px;
          height  :3px;
    background: #2c3e50;
  transition: all 0.3s ease; 

}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
   opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {

	  display: none;
          background: white;
   padding     :20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-link {
   display: block;
   padding: 15px 0;
   text-decoration: none;
  color    : #2c3e50;
    font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: color 0.3s ease;
}

.mobile-link:hover {
      color :#e74c3c; 

}

.hero-area {
    padding: 120px 20px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
   display: flex;
    align-items: center;
}

.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;
   color: white;
               margin-bottom   :    24px;
   line-height: 1.2;
    font-weight: 800;
}

.hero-subtitle {
   font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;

  gap: 20px;

  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    padding     :     16px 32px;
    border-radius: 50px;
    text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
    display: inline-block;
}

.primary-button {
  background: #e74c3c;
  color: white;
   border  :     2px solid #e74c3c; 

}

.primary-button:hover {
    background:transparent;
    color: #e74c3c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.secondary-button {
	background: transparent;
  color: white;
   border: 2px solid white;
}

.secondary-button:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);

}

.hero-visual    {
    text-align: center;
}

.hero-image {
    width     : 100%;
    height: 400px;
   object-fit: cover;
    border-radius :20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.services-section {
    padding: 100px 20px;
   background: #f8f9fa;
}

.services-section h2 {
	text-align  :  center;
  font-size: 2.8rem;
    margin-bottom: 60px;
   color: #2c3e50;
  font-weight  :      700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
   max-width: 1200px;
   margin: 0 auto;
}

.service-card {
   background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
}

.service-card:hover 
 {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-image   {
    height     :     250px;
   overflow  :hidden;
} 

.service-image img	{
   height: 100%;
    object-fit     :     cover;
    transition: transform 0.3s ease;
    width: 100%;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card h3 {

    padding: 25px 25px 15px;
  font-size :    1.5rem;
   color: #2c3e50;
    font-weight: 600;
}

.service-card p {
  padding: 0 25px 25px; 
	   color: #7f8c8d; 
	  line-height: 1.6;
}

.process-section {
           padding: 100px 20px;
   background: white;}

.process-section h2 {
    text-align: center;
   font-size: 2.8rem;
  margin-bottom     :  60px;
    color: #2c3e50;
	 font-weight: 700;
}

.process-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
   max-width: 1000px;
    margin: 0 auto;
}

.step-item {
      text-align: center;
   padding    :30px 20px;}

.step-number {
   display: inline-block;
   width: 80px;
   height   :    80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
    font-size: 1.8rem;
 font-weight: 700;
  border-radius: 50%;
    line-height: 80px;
   margin-bottom: 20px;
}

.step-item h3 {
    font-size: 1.4rem;
  color: #2c3e50;
         margin-bottom :      15px;
    font-weight: 600;
}


.step-item p {
    color: #7f8c8d;
	line-height: 1.6;
}

.cta-section {
   padding: 100px 20px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
} 

.cta-content {
  max-width: 1200px;
  margin: 0 auto;
    display: grid;
   grid-template-columns :       1fr 1fr;
   gap: 60px;
  align-items: center;
    margin-bottom: 50px;
}

.cta-text h2 {

   font-size: 2.5rem;
   margin-bottom: 20px;
  font-weight: 700;

}

.cta-text p  
  {
   font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.cta-visual img {
   width: 100%;
    height: 350px;
   object-fit: cover;
    border-radius: 15px;
}  

.cta-action {
    text-align: center;
}

.cta-button {
  display: inline-block;
   padding: 20px 40px;
    background: white;
    color: #e74c3c;
					text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.results-section {
  padding: 100px 20px;
  background: #2c3e50;
  color     :   white;
}

.results-section h2 {
    text-align: center;
   font-size: 2.8rem;
  margin-bottom  :  60px;
   font-weight    : 700;
}

.stats-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap  :  40px;
   max-width: 800px;
   margin: 0 auto;
}

.stat-item {
   text-align   :center;
} 

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #e74c3c;
  margin-bottom: 10px;
}

.stat-label {
	font-size: 1.1rem;
	opacity: 0.9;
}

.contact-section {
  padding: 100px 20px;
	background  :  #f8f9fa;

}

.contact-content {

  max-width: 1200px; 
	   margin: 0 auto; 
	   display: grid; 
	     grid-template-columns: 1fr 1fr; 
	   gap: 60px;}

.contact-info h2 {
    margin-bottom: 20px;
    color: #2c3e50;
	font-weight: 700;
	font-size: 2.5rem;

}

.contact-info p {
   font-size: 1.1rem;
  color: #7f8c8d;
   line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
          display: flex;
    flex-direction: column;
       gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
               gap: 5px;
}

.contact-item strong {
	 color: #2c3e50;
  font-weight: 600;
}

.contact-item span {
  color: #7f8c8d;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
  border-radius     :   15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
               margin-bottom: 25px;
}


.form-group input,
.form-group select,
.form-group textarea {
    -webkit-border-radius: 10px;
   width: 100%;
   padding: 15px 20px;
    border :        2px solid #ecf0f1;
    -moz-border-radius   :  10px;
   -o-transition: all 0.3s ease;
        border-radius: 10px;
    -webkit-transition: all 0.3s ease;
       font-size: 1rem;
   transition   :  all 0.3s ease;
	-moz-transition: all 0.3s ease;
   background: #f8f9fa;


}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus     {
     outline: none;
   border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-button {
	width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #667eea, #764ba2);
               color: white;
   border: none;
  border-radius: 10px;
  font-size: 1.1rem;
               font-weight: 600;
     cursor    : pointer;
   transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.main-footer {
  background     :#2c3e50;
   color: white;
    padding: 60px 20px 20px;
}

.footer-content {
   max-width: 1200px;
  margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
               gap: 60px;
    margin-bottom: 40px; 
	
}

.footer-brand h3 {

	  font-size: 1.5rem;
    margin: 15px 0;
  font-weight    :700;


}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-logo {
  height: 40px;
   width: auto;
}

.footer-links {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}


.link-group h4 {
	font-size: 1.2rem;
  margin-bottom  :     20px;
	 color  : #e74c3c;
  font-weight: 600;
}

.link-group a {
   display: block;
  color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
   margin-bottom: 10px;
   transition: color 0.3s ease;
}

.link-group a:hover {
   color: #e74c3c;


}

.link-group p {
  color: rgba(255, 255, 255, 0.8);
   margin-bottom: 10px;
  line-height: 1.5;
}

.footer-bottom {
	    text-align: center;
   padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);


}@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .primary-button,
    .secondary-button {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .services-section h2,
    .process-section h2,
    .results-section h2 {
        font-size: 2.2rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}.about-hero     {
  padding: 120px 20px 80px;

  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);

    color: white;
	
}

.about-hero-content {
  max-width: 1200px;
    margin: 0 auto;
  display     :      grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text-section h1		{
    font-size: 3.2rem;
   margin-bottom: 24px;
   line-height    :   1.3;
  font-weight: 800;
}

.hero-description {
    font-size: 1.2rem;
   line-height: 1.7;
   opacity: 0.95;
}

.about-hero-img {
   width: 100%;
    height: 400px;
   object-fit  :     cover;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.our-story {

    padding: 100px 20px;
  background: white;
     }

.story-content {
	max-width    :      1200px;
	margin: 0 auto;
  display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.6rem;
                       color: #2c3e50;
       margin-bottom: 30px;
     font-weight: 700;
}

.story-text p    {
  margin-bottom: 25px;
    color: #5d6d7e;
   line-height: 1.8;
    font-size: 1.1rem;
}

.story-image {

	  width: 100%;

	    height: 450px;

	  object-fit: cover;

	  border-radius: 12px;

	  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);}

.values-section {
    padding: 100px 20px;
   background: #f8f9fa;
}

.values-section h2 {

	   text-align: center; 
       font-size: 2.8rem; 
   color: #2c3e50; 
  margin-bottom: 60px; 
    font-weight: 700;
     }

.values-grid {
  display  :        grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
   gap: 40px; 
    max-width: 1000px; 
	 margin: 0 auto;
}

.value-item {
     background     :      white;
  padding: 35px 30px;
       border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
   transition    :        all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-number    {
  display: inline-block;
    width: 60px;
       height: 60px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
   color:       white;
   font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    line-height     :       60px;
    margin-bottom: 20px;
}

.value-item h3 {
  font-size: 1.4rem;

	   color: #2c3e50;

		margin-bottom: 15px;

	    font-weight :  600;
}

.value-item p {
  color: #7f8c8d;
  line-height: 1.6;
}

.methodology-section {
    padding: 100px 20px;
  background: white;
}

.methodology-content {
  max-width: 1200px;
   margin    :        0 auto;
   display: grid;
       grid-template-columns: 1fr 1.2fr;
    gap   :     60px;
   align-items: center;
}

.method-img {
   width: 100%; 
	         height: 450px; 
	  object-fit: cover; 
	    border-radius: 12px; 
	  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.methodology-text h2 {

	   font-weight: 700;
    color: #2c3e50;
        font-size: 2.6rem;
                    margin-bottom: 40px;}

.method-points {
   display: flex;
  flex-direction: column;
    gap: 30px;
}

.method-point  
  {
  padding: 25px;
    background: #f8f9fa;
    border-radius     :        10px;
   border-left: 4px solid #e74c3c;
}

.method-point h4 {
  font-size: 1.3rem;
   color: #2c3e50;
   margin-bottom: 10px;
    font-weight: 600;
}

.method-point p {
  color: #7f8c8d;
	line-height: 1.6;
}

.achievements-stats {
  padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color   :white;
}

.achievements-stats h2 {
   text-align: center;
   font-size: 2.8rem;
   margin-bottom: 60px;
	font-weight: 700;
}

.achievement-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.achievement-item    {
	 text-align :       center;
    padding: 30px 20px;
}

.achievement-icon    {
   font-size: 3rem;
   margin-bottom: 20px;
   display: block;
}

.achievement-number {
    font-size: 3.5rem;
  font-weight: 800;
   margin-bottom: 10px;
   color: #fff;
}

.achievement-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.team-philosophy {
   padding: 100px 20px;
  background: #f8f9fa;
}

.philosophy-content  
  {
   max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns  :  1.2fr 1fr;
	gap: 60px;
  align-items     :  center;
}

.philosophy-text h2 {
   font-size: 2.6rem;
  color: #2c3e50;
   margin-bottom: 30px;
 font-weight    :    700;
}

.philosophy-text p {
    font-size: 1.1rem;
   line-height: 1.8;
   color: #5d6d7e;
   margin-bottom: 25px;


}

.philosophy-img {
    width: 100%;
    height: 400px;
   object-fit: cover;
    border-radius    :       12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.about-cta {
	 padding: 80px 20px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-align :center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
	 font-weight: 700;


}

.about-cta p {
   font-size: 1.2rem;
  margin-bottom: 40px;
    opacity: 0.95;
}

.about-cta-button {
                    display: inline-block;
   padding: 18px 36px;
  background: white;
  color: #e74c3c;
  text-decoration: none;
    border-radius: 50px;
  font-weight: 700;
               font-size: 1.1rem;
      transition: all 0.3s ease;
}

.about-cta-button:hover

{
  transform: translateY(-3px); 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text-section h1 {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .methodology-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-text-section h1,
    .story-text h2,
    .methodology-text h2,
    .philosophy-text h2 {
        font-size: 2.2rem;
    }

    .achievements-stats h2,
    .values-section h2,
    .about-cta h2 {
        font-size: 2.2rem;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
    }
}.thankyou-hero	{
	padding: 120px 20px 80px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color :       white;
   text-align: center;
   min-height    :     70vh;
    display:     flex;
    align-items: center;
}

.thankyou-container   {
   max-width: 800px;
    margin: 0 auto;
   width: 100%;
}

.thankyou-content h1 {
   font-size: 3.2rem;
  margin-bottom: 24px;
    font-weight: 800;
   line-height: 1.3;
}

.thankyou-subtitle {
   font-size: 1.3rem; 
	line-height: 1.6; 
   opacity: 0.95; 
   margin-bottom: 40px;
}


.success-animation {
    margin-bottom: 40px;
}

.checkmark-circle
	{
	 width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
  margin: 0 auto 30px;
    display: flex;
   align-items: center;
  justify-content: center;
   animation: scaleIn 0.8s ease-out;
}

.checkmark {
   width: 60px;
    height: 60px;
  position: relative;
}

.checkmark::after {
  content: '';
    position     :      absolute;
  width: 20px;
   height: 35px;
               border  :      solid white;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
   left: 20px;
  top: 10px;
    animation :        checkmarkDraw 0.6s ease-out 0.3s both;
}@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkmarkDraw {
    0% {
        height: 0;
        width: 0;
    }
    50% {
        height: 0;
        width: 20px;
    }
    100% {
        height: 35px;
        width: 20px;
    }
}.next-steps {
   padding: 100px 20px;
    background: white;
}

.next-steps h2 {
     text-align: center;
   font-size: 2.8rem;
    color: #2c3e50;
  margin-bottom: 60px;
	font-weight: 700;
}

.steps-timeline {
  max-width  : 800px;
	margin: 0 auto;
  position: relative;


}

.steps-timeline::before {
  content: '';
  position   :     absolute;
  left  :30px;
       top: 40px;
	bottom: 40px;
  width: 3px;
  background: linear-gradient(to bottom, #27ae60, #2ecc71);
   z-index: 1;
}

.timeline-item {
  position: relative;
               margin-bottom   :        50px;
  display: flex;
   gap   :40px;
}

.timeline-marker {

  flex-shrink: 0;
  width     :        60px;
    height: 60px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
   align-items: center;
  justify-content: center;
    position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);


}

.step-number {
   color    :white;
      font-size    :     1.4rem;
      font-weight: 700;
}

.timeline-content {
	flex: 1;
    padding-top: 8px;
}

.timeline-content h3 {
  font-size: 1.5rem;
   color: #2c3e50;
    margin-bottom: 12px;
	 font-weight: 600;
}  

.timeline-content p {
  color: #7f8c8d; 
  line-height: 1.6; 
   margin-bottom: 8px;
}

.time-estimate {
  display:   inline-block;
  color: #2c3e50;
  background: #ecf0f1;
   padding: 6px 12px;
    font-weight: 600;
    border-radius: 20px;
  font-size: 0.9rem;
}

.benefits-reminder	{
   padding:        100px 20px;
   background: #f8f9fa;
} 

.benefits-content {
   gap: 60px;
	 max-width: 1200px;
    align-items: center;
    display: grid;
  margin: 0 auto;
  grid-template-columns: 1.2fr 1fr;
}

.benefits-text h2 {
    font-size: 2.6rem;
  color: #2c3e50;
  margin-bottom: 40px;
	font-weight: 700;
}

.benefit-list {
  display: flex;
   flex-direction: column;
  gap: 25px;
}

.benefit-item

{
  display: flex;
  align-items: flex-start;
   gap: 20px;
}

.benefit-icon
{
  font-size: 2.5rem;
  flex-shrink: 0;
  margin-top: 5px; 
	
} 

.benefit-text h4 {
   font-size: 1.3rem;
    color: #2c3e50;
  margin-bottom: 8px;
   font-weight: 600;}

.benefit-text p {
  color: #7f8c8d;
    line-height: 1.6;
}

.benefits-image {
                    width: 100%;
   height: 400px;
   object-fit: cover;
   border-radius  :    12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);


	}



.preparation-tips {
  padding: 100px 20px;
   background: white;
}

.preparation-tips h2 {

  text-align: center;
   font-size: 2.8rem;
  color     :      #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;

}

.tips-grid {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  max-width: 1000px;
                    margin: 0 auto;

	}

.tip-card {
  background :        #f8f9fa;
    padding: 30px 25px;
	 border-radius: 12px;
   border-left: 4px solid #27ae60;
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);


}

.tip-card h3		{
	margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.4rem;
   font-weight: 600;
}

.tip-card p {
  color: #7f8c8d;
     line-height  :  1.6;
}

.success-teaser {
   padding     :        100px 20px;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
   color: white;
}

.teaser-content {
    max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1.2fr;
	 gap   :   60px;
	 align-items: center;
}

.success-img {
  width: 100%;
  height: 350px;
  object-fit     :        cover;
	 border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.teaser-text h2 {
   font-size: 2.4rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.teaser-text p {
    margin-bottom     :       20px;
  font-style: italic;
  font-size     : 1.1rem;
    line-height: 1.7;
   opacity: 0.95;
}

.teaser-text cite {
	 display: block;
   font-size: 1rem;
    opacity: 0.8;
	margin-bottom: 30px;
}

.stats-quick {


   display: flex;
	   gap: 40px;


}

.quick-stat {
  text-align: center;
}

.stat-num {
    display: block;
  font-size: 2.5rem;
         font-weight: 800;
   color: #27ae60;
   margin-bottom     :      5px;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

.return-cta {
	padding: 80px 20px; 
    background :  #f8f9fa; 
      text-align    :      center;
}

.return-content h2 {
  font-size :      2.5rem;
    color: #2c3e50;
   margin-bottom: 20px;
  font-weight    :        700;
}

.return-content p {
	 max-width: 600px;
               font-size: 1.2rem;
  margin-left: auto;
  margin-right: auto;
    margin-bottom: 40px;
    color: #7f8c8d; 

}

.return-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-return-btn,
.secondary-return-btn {
   padding: 16px 32px;
   border-radius: 50px;
   text-decoration: none;
    font-weight: 600;
   font-size: 1.1rem;
    transition: all 0.3s ease;
  display: inline-block;
}

.primary-return-btn {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
    border: 2px solid transparent;
}

.primary-return-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.secondary-return-btn   {
  color: #2c3e50;
   background: transparent;
    border: 2px solid #2c3e50;
}

.secondary-return-btn:hover {
  transform: translateY(-2px);
	  background: #2c3e50;
	    color: white;
}@media (max-width: 768px) {
    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .steps-timeline::before {
        left: 15px;
    }

    .timeline-marker {
        width: 30px;
        height: 30px;
    }

    .step-number {
        font-size: 1rem;
    }

    .timeline-item {
        gap: 25px;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .teaser-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .stats-quick {
        justify-content: center;
        gap: 30px;
    }

    .return-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .thankyou-content h1 {
        font-size: 2rem;
    }

    .next-steps h2,
    .preparation-tips h2,
    .benefits-text h2 {
        font-size: 2.2rem;
    }

    .checkmark-circle {
        width: 80px;
        height: 80px;
    }

    .checkmark {
        width: 40px;
        height: 40px;
    }

    .checkmark::after {
        width: 12px;
        height: 20px;
        left: 14px;
        top: 8px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .steps-timeline::before {
        display: none;
    }
}.cookies-hero {
  padding    :     120px 20px 80px;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: white;
}

.cookies-hero-content {
    max-width: 1200px;
   text-align: center;
    margin: 0 auto;
}

.cookies-hero-content .hero-text-section h1 {
  font-size: 3.2rem;
  margin-bottom: 24px;
	line-height    : 1.3;
       font-weight: 800;
}


.cookies-hero-content .hero-description {
	 font-size: 1.2rem;
    line-height    :        1.7;
   opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

.cookies-content {
         padding: 100px 20px;
    background: white;
}

.cookies-content h2 {
  font-size  :  2.6rem;
    color: #2c3e50;
   margin-bottom: 30px;
  font-weight: 700;
}  

.cookies-content h3 {
  font-size: 1.8rem;
    color     :   #2c3e50;
  margin: 40px 0 20px;
    font-weight   : 600;
}

.cookies-content p {
  font-size:    1.1rem;
  line-height: 1.8;
	color: #5d6d7e;
   margin-bottom   :   20px;
}

.privacy-hero {
	padding: 120px 20px 80px;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
         color: white;


}

.privacy-hero-content {
	 text-align: center;
    margin: 0 auto;
  max-width: 1200px; 

}

.privacy-hero-content .hero-text-section h1 {

   font-size: 3.2rem;
  margin-bottom: 24px;
  line-height: 1.3;
  font-weight: 800;}

.privacy-hero-content .hero-description {
  font-size: 1.2rem;
  opacity: 0.95;
    line-height: 1.7;
	margin: 0 auto;
    max-width: 800px;
}

.privacy-content {
  padding: 100px 20px;
               background:      white;
}

.privacy-content h2 {
       font-size: 2.6rem;
    color: #2c3e50;
    margin-bottom: 30px;
  font-weight: 700;
}

.privacy-content h3 {
    margin: 40px 0 20px;
   font-size: 1.8rem;
                    font-weight: 600;
  color: #2c3e50;
}

.privacy-content p
	{
  font-size: 1.1rem;
                    line-height: 1.8;
	color: #5d6d7e;
   margin-bottom: 20px; 
	
}@media (max-width: 768px) {
    .cookies-hero-content .hero-text-section h1,
    .privacy-hero-content .hero-text-section h1 {
        font-size: 2.5rem;
    }

    .cookies-content h2,
    .privacy-content h2 {
        font-size: 2.2rem;
    }

    .cookies-content h3,
    .privacy-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .cookies-hero-content .hero-text-section h1,
    .privacy-hero-content .hero-text-section h1 {
        font-size: 2rem;
    }

    .cookies-content h2,
    .privacy-content h2 {
        font-size: 2rem;
    }

    .cookies-content h3,
    .privacy-content h3 {
        font-size: 1.4rem;
    }

    .cookies-content p,
    .privacy-content p {
        font-size: 1rem;
    }
}