* {
    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: #ffffff;
     }

.container-wrapper {
  max-width  :        1200px;
    margin: 0 auto;
  padding: 0 20px;
}

.cookies-notice {
   position: fixed;
    bottom: 0;
   left: 0;
       right: 0;
  background: rgba(52, 73, 94, 0.95);
   color: white;
   padding     :    20px;
  z-index: 1000;
  transform: translateY(100%);
   transition: transform 0.3s ease;
}

.cookies-notice.show {
  transform: translateY(0);
}

.cookies-content {
    max-width: 1200px;
		 margin :        0 auto;
	  display    :        flex;
	    justify-content: space-between;
	  align-items: center;
	   flex-wrap: wrap;
	    gap: 15px;
}

.cookies-actions {
   display: flex;
  gap: 15px;
}

.cookies-accept {

	   background: #3498db;
    color: white;
   border: none;
    padding: 10px 20px;
  border-radius: 5px;
  cursor  :pointer;
    font-size: 14px;
     }

.cookies-policy   {
   color: #ecf0f1;
    text-decoration: underline;
}

.main-navigation {
   background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   position: fixed;
     top: 0;
    width: 100%;
   z-index: 999;
}

.nav-container {
   max-width :      1200px;
  margin: 0 auto;
    padding: 0 20px;
    display: flex;
      justify-content: space-between;
   align-items: center;
	min-height  : 70px;


}

.brand-logo {
               height: 45px;
    width: auto;
}

.nav-links-wrapper {
    display: flex;
}

.nav-links {


   display: flex;
  list-style: none;
    gap: 35px;


}

.nav-links a {
  text-decoration: none;
   color: #2c3e50;
    font-weight: 500;
  font-size: 16px;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: #3498db; 
	
}

.mobile-menu-toggle


{
    display: none;
    flex-direction: column;
   cursor: pointer;
   gap: 4px;
}

.mobile-menu-toggle span {
	  width: 25px;
  height :      3px;
   background: #2c3e50;
   transition: 0.3s;
}

.mobile-navigation {
	  display: none;

	    background: white;

	  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	}

.mobile-navigation ul {

   list-style: none;
	 padding: 20px;
}

.mobile-navigation li {
   margin-bottom: 15px;
}

.mobile-navigation a {

	text-decoration: none;
    color  :  #2c3e50;
  font-size: 18px;
  font-weight: 500;

}

.hero-section {
    margin-top   :   70px;
   padding :      80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content  {
   max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
   font-size: 3.2em;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle  {
  font-size: 1.3em;
	 color: #5a6c7d;
   margin-bottom: 35px;
      line-height: 1.5;
}

.hero-buttons {
   display: flex;
          gap: 20px;
}

.primary-btn, .secondary-btn {
	 padding  :     15px 30px;
    text-decoration: none;
   border-radius: 8px;
   font-weight: 600;
   font-size  :   16px;
    transition: all 0.3s;
  display: inline-block;
}

.primary-btn {
	background: #3498db; 
  color: white;
}

.primary-btn:hover {
   background: #2980b9;
  transform: translateY(-2px);
}

.secondary-btn {
  background: transparent;
  color: #3498db;
    border: 2px solid #3498db;
}


.secondary-btn:hover
	{
    background: #3498db;
  color: white;
}

.hero-image img {
  width: 100%;
   height: auto;
	border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.trust-section {
  background: white;
    padding: 60px 0;
}

.trust-stats {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
	gap: 40px;
   text-align   :       center;
}

.stat-item h3 {
    font-size: 2.5em;
    color: #3498db;
	 font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p

{
    font-size: 1.1em;
  color: #5a6c7d;
}

.services-overview {
    padding: 80px 0;
	   background: #f8f9fa; 
	
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5em;
   color: #2c3e50;
    margin-bottom     :       60px;
   font-weight: 700;
}

.services-grid {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap:       40px;
}

.service-card {

      background: white;
   border-radius: 15px;
   padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
   transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.service-card img {
    width   :        100%;
    height: 200px;
   object-fit: cover;
   border-radius: 10px;
   margin-bottom: 25px;
}

.service-card h3 {
	  font-size: 1.5em;
    color: #2c3e50;
   margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
   color: #5a6c7d;
   margin-bottom: 20px;
  line-height   :   1.6;
}

.service-features  {
  list-style: none;
}

.service-features li {
  color: #5a6c7d;
    margin-bottom: 8px;
   padding-left     :      20px;
  position: relative;
}

.service-features li::before {
  content: "✓";
	  position: absolute;
	      left: 0;
	    color: #27ae60;
	   font-weight: bold;
	
}


.methodology-section {
	    padding: 80px 0;
  background: white;
}

.methodology-content {
	  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items: center;}

.methodology-text h2 {
  font-size: 2.3em;
        color: #2c3e50;
    margin-bottom: 25px;
   font-weight: 700; 
	
}

.methodology-text > p {
  font-size: 1.1em;
   color    :      #5a6c7d;
   margin-bottom: 40px;
 line-height: 1.6;
}

.methodology-points {
	   display: flex;
   flex-direction: column;
   gap: 25px;
}

.method-point h4 {
  color: #3498db;
	font-size: 1.2em;
  margin-bottom: 10px;
    font-weight: 600;
}

.method-point p {
   color: #5a6c7d;
   line-height: 1.5;
}

.methodology-image img {
  width: 100%;
	 height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cta-section {
    padding: 80px 0;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
    text-align: center;
}

.cta-content h2 {
        font-size: 2.5em;
   margin-bottom: 20px;
  font-weight: 700;
}

.cta-content > p{
    margin-right: auto;
    margin-left: auto;
    max-width: 800px;
    margin-bottom: 40px;
   line-height: 1.6;
  font-size: 1.2em;
} 

.cta-benefits {
    display: flex;
    justify-content: center;
   gap: 30px;
    margin-bottom: 40px;
   flex-wrap :    wrap;

}

.benefit-item {
   font-weight: 500;
  font-size: 1.1em;
}

.cta-button {
  background: white;
    color: #3498db;
    padding: 18px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
    font-size: 1.1em;
        transition: all 0.3s;
                    display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.testimonials-section {
	 padding :80px 0;
	 background: #f8f9fa;
}

.testimonials-section h2 {
  text-align: center;
  font-size:    2.5em;
    color: #2c3e50;
  margin-bottom: 60px;
	font-weight: 700;
}

.testimonials-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.testimonial-card {
	background: white;
    padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

}

.testimonial-card p {

	   font-size: 1.1em;
    color: #5a6c7d;
   line-height: 1.6;
   margin-bottom: 25px;
    font-style: italic;}

.testimonial-author strong {
   color: #2c3e50;
  font-size: 1.1em;
}

.testimonial-author span {
  color   : #7f8c8d;
   font-size: 0.95em;
  display: block;
   margin-top: 5px;
}

.contact-section
	{
    padding: 80px 0;
   background: white;
}

.contact-wrapper {

	        display: grid;
   grid-template-columns     :        1fr 1fr;
    gap   :    60px;
	}

.contact-info h2 {
   font-size: 2.3em;
  color: #2c3e50;
  margin-bottom: 20px;
   font-weight: 700;
}

.contact-info > p   {
   font-size: 1.1em;
  color: #5a6c7d;
   margin-bottom: 40px;
		 line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
    gap: 25px;
}

.contact-item strong  
  {
	color: #3498db;
   font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
  color: #5a6c7d; 
	 line-height: 1.5;
}

.contact-form {
   background :    #f8f9fa;
    padding: 40px;
  border-radius: 15px;
}

.form-group {
   margin-bottom : 25px;
}

.form-group label {
		display : block;
   color: #2c3e50;
   font-weight: 500;
  margin-bottom: 8px;
       font-size: 1.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
       padding: 12px 15px;
   border: 2px solid #e0e6ed;
  border-radius: 8px;
   font-size: 16px;
    transition: border-color 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
   border-color: #3498db;
}

.submit-btn {
   background: #3498db;

    -webkit-transition: all 0.3s;

   color: white;

    -moz-border-radius: 8px;

    -webkit-border-radius: 8px;

    padding: 15px 40px;

  border     :       none;

   border-radius: 8px;

   font-size: 1.1em;

			font-weight: 600;

  cursor: pointer;

  transition  :    all 0.3s;

  width: 100%;
}

.submit-btn:hover {
   background: #2980b9;
  transform: translateY(-2px);

     }

.main-footer {
   color: #ecf0f1;
 background: #2c3e50;
   padding: 60px 0 30px;
}

.footer-content{
  display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
   margin-bottom: 40px;
}

.footer-brand p {
       color: #95a5a6;
                    line-height: 1.6;
  margin-top: 20px;
}

.footer-logo
	{
  height: 40px;

	  width    :  auto;

	  filter: brightness(0) invert(1);


}

.footer-column h4 {
	color: #ecf0f1;
  font-size: 1.2em;
  margin-bottom: 20px;
      font-weight: 600;
}

.footer-column ul 
 {
    list-style: none;


}

.footer-column li {
   margin-bottom: 10px;
}

.footer-column a {
   color: #95a5a6;
    text-decoration: none;
          transition: color 0.3s;
}

.footer-column a:hover {
   color: #ecf0f1;
	
}

.footer-contact p     {

		color: #95a5a6;
   line-height     :  1.5;
    margin-bottom: 10px;
	}

.footer-bottom {
  border-top: 1px solid #34495e;
    padding-top: 30px;
   text-align: center;
        color   :      #95a5a6;
}@media (max-width: 768px) {
    .nav-links-wrapper {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5em;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .methodology-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 15px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .cookies-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2em;
    }

    .services-overview h2,
    .testimonials-section h2 {
        font-size: 2em;
    }

    .service-card,
    .contact-form {
        padding: 25px;
    }

    .testimonial-card {
        padding: 25px;
    }
}.page-hero {
  margin-top: 70px;
  padding : 60px 0;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
   color: white;
    text-align: center;
}

.page-hero-content h1 {
         font-size: 3em;
  font-weight:        700;
   margin-bottom: 20px;
}

.page-hero-content p {
	font-size: 1.2em;
	max-width: 800px;
   margin: 0 auto;
                    line-height: 1.6;
	 color: #ecf0f1;
}

.story-section {
    padding: 80px 0;
   background: white;
}

.story-content {
        display: grid;
  grid-template-columns: 1fr 1fr;
	 gap: 60px;
  align-items: center;
}

.story-text h2{
	font-size: 2.3em;
   color: #2c3e50;
   margin-bottom   : 30px;
               font-weight: 700;
}

.story-text p {
  font-size: 1.1em;
   color: #5a6c7d;
    line-height: 1.7;
   margin-bottom     :       25px;
}

.story-image img {
     width  :   100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);

}

.mission-section {
	padding: 80px 0;
  background: #f8f9fa;
}

.mission-grid {

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap :40px;

}

.mission-item {
    background: white;
   padding: 40px;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
   text-align: center;
}

.mission-item h3 {
   font-weight : 600;
    color: #3498db;
       font-size: 1.5em;
    margin-bottom: 20px;
}

.mission-item p {


   color: #5a6c7d;
   line-height: 1.6;
	}

.team-section {
    padding: 80px 0;
    background: white;
}

.team-section h2 {
  text-align: center;
  font-size  :2.5em;
   color: #2c3e50;
  margin-bottom: 60px;
  font-weight: 700;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap   :       40px;
}

.team-member {
  background     :      #f8f9fa;
   border-radius: 15px;
 overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
   transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
   width: 100%;
    height: 250px;
  object-fit: cover;
}

.member-info {
    padding: 30px;
}

.member-info h4 
 {
  font-size: 1.4em;
  color: #2c3e50;
  margin-bottom: 5px;
    font-weight: 600; 
	
}

.member-role


{
          color: #3498db;
    font-weight: 500;
    font-size:   1.05em;
      display: block;
   margin-bottom: 15px;
}

.member-info p {
    color:       #5a6c7d;
    line-height: 1.6;
}

.approach-section  {
  padding: 80px 0;
  background: #f8f9fa;
}

.approach-content {
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap    : 60px;
  align-items: center;
}

.approach-text h2 {
    font-size: 2.3em;
  color: #2c3e50;
  margin-bottom: 25px;
   font-weight: 700;
}

.approach-text > p {
   font-size: 1.1em;
    color: #5a6c7d;
    margin-bottom: 35px;
    line-height    :  1.6;
}

.approach-features {
    display: grid;
   grid-template-columns :       1fr 1fr;
   gap: 25px;
}

.approach-feature h4 {
	 color     :  #3498db;
  font-size: 1.1em;
  margin-bottom: 10px;
    font-weight: 600;

}

.approach-feature p {
	   color: #5a6c7d;
 font-size: 0.95em;
      line-height: 1.5;

}

.approach-image img {
	width: 100%;
  height: auto;
	 border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);


}

.achievements-section {
    padding:   80px 0;
    background :    white;
}

.achievements-section h2 {
   text-align    : center;
  font-size    :     2.5em;
     color: #2c3e50;
   margin-bottom: 60px;
  font-weight     :  700;
}

.achievements-grid {

	   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	    gap: 40px; 
	

}

.achievement-item {
	text-align :        center;
    padding: 30px;
}

.achievement-number    {
    font-size: 3em;
	color: #3498db;
    font-weight: 700;
    margin-bottom: 15px;
}

.achievement-item h4 {
   color: #2c3e50;
    font-weight: 600;
    font-size: 1.3em;
   margin-bottom: 15px;
}

.achievement-item p{
        color: #5a6c7d;
  line-height: 1.6;
} 

.philosophy-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.philosophy-content h2 {
    text-align: center;
    font-size: 2.5em;
	color: #2c3e50;
        margin-bottom: 40px;
  font-weight: 700;
}

.philosophy-text {

   max-width: 1000px;
  margin: 0 auto;}

.philosophy-text > p {

	  font-size: 1.15em;
   color: #5a6c7d;
   line-height: 1.7;
  margin-bottom: 25px;
  text-align:       center;
	}

.philosophy-principles

{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
    margin-top: 50px;
	
}

.principle {
    background: white;
    padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center; 

}

.principle h4 {
    margin-bottom: 15px;
  font-size: 1.3em;
  color: #3498db;
  font-weight: 600;
}

.principle p {
	color: #5a6c7d;
    line-height    :   1.6;
}

.thankyou-hero {
  margin-top: 70px;
    padding: 80px 0;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
}

.thankyou-content {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;
	}

.thankyou-message    {
    text-align: center;
}  

.success-icon {

  margin-bottom: 30px;
}

.checkmark {
  width   :      80px;

	   height: 80px;

	   border-radius: 50%;

	  display: block;

	  stroke-width: 3;

	    stroke: white;

	    stroke-miterlimit: 10;

	  margin: 0 auto;

	  position: relative;
}


.checkmark-circle {
       stroke-dasharray: 166;
   stroke-dashoffset: 166;
    stroke-width: 3;
  stroke-miterlimit: 10;
 stroke: white;
    fill: none;
	 border: 3px solid white;
    border-radius: 50%;
        width: 80px;
               height:    80px;
   position: absolute;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
	}

.checkmark-stem {
	   transform-origin :     50% 50%;
  stroke-dasharray: 48;
    stroke-dashoffset :     48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    position:        absolute;
  top: 35px;
  left: 28px;
   width: 15px;
   height: 2px;
   background: white;
  transform: rotate(45deg);
     }

.checkmark-kick {
  transform-origin: 50% 50%;

     stroke-dasharray: 48;

    stroke-dashoffset: 48;

  animation: stroke 0.2s cubic-bezier(0.65, 0, 0.45, 1) 0.9s forwards;

		 position: absolute;

  top: 42px;

    left: 20px;

   width: 8px;

   height :2px;

  background: white;

  transform: rotate(-45deg);
}@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}.thankyou-message h1 {
  margin-bottom:20px;
	   font-weight: 700;
	   font-size: 2.8em;
}

.thankyou-subtitle {
	  font-size: 1.2em;
   line-height: 1.6;
    color     :       #ecf0f1;
     }

.thankyou-image img {
	 width: 100%;
    height    :     auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.next-steps-section {
	padding: 80px 0;
	    background: white;
}

.next-steps-section h2 {
    text-align: center;
  font-size: 2.5em;
	 color: #2c3e50;
  margin-bottom: 60px;
    font-weight: 700;
}

.steps-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.step-item {


  text-align: center;
  padding:     40px 30px;
  background   :#f8f9fa;
  border-radius   :  15px;
    position: relative;

}

.step-number {
	width:  60px;

  height: 60px;

    background: #3498db;

  color    :    white;

    border-radius: 50%;

   display : flex;

	 align-items: center;

   justify-content: center;

  font-size: 1.5em;

   font-weight: 700;

  margin: 0 auto 25px;
}

.step-item h3 
 {
	    font-size     :    1.4em;
  color: #2c3e50;
  margin-bottom: 15px;
    font-weight: 600;

}

.step-item p {
	color: #5a6c7d;
   line-height: 1.6;
}

.while-waiting-section {
  padding: 80px 0;
   background: #f8f9fa;
}

.waiting-content {
  display     : grid;
    grid-template-columns: 1fr 1fr;
  gap     :      60px;
    align-items: center;
}

.waiting-text h2
{
       font-size: 2.3em;

   color: #2c3e50;

   margin-bottom: 25px;

    font-weight: 700;
	}

.waiting-text > p {
   font-size: 1.1em;
   color: #5a6c7d;
                    margin-bottom: 35px;
    line-height: 1.6;
}

.resource-list {
  display :        flex;

	    flex-direction:column;

	  gap: 25px;
}

.resource-item h4 {
  margin-bottom: 10px;
    font-weight: 600;
  font-size: 1.2em;
   color: #3498db;
}

.resource-item p {
    color: #5a6c7d;
               line-height: 1.5;
}

.waiting-image img {
   width: 100%;
   height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.reassurance-section {
  padding:     80px 0;
  background: white;
}

.reassurance-content h2 {
   text-align: center;

	   margin-bottom: 60px;

	  font-weight: 700;

	    font-size:        2.5em;

	  color   :   #2c3e50;
}

.reassurance-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.reassurance-item {
	 text-align: center;
  padding: 30px;
    background: #f8f9fa;
  border-radius: 15px;

}

.reassurance-item img {


	width: 100%;
               height: 200px;
   object-fit: cover;
  border-radius: 10px;
  margin-bottom :    25px;
}

.reassurance-item h3 {

	   font-size: 1.4em;
   color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.reassurance-item p    {
   color: #5a6c7d;
    line-height :       1.6;
	
}

.contact-reminder-section

{

	  padding: 80px 0;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: white;
   text-align: center; 
	


}

.contact-reminder h2 {
  font-size: 2.3em;
  margin-bottom: 20px;
   font-weight     :     700;
}

.contact-reminder > p {
   color: #ecf0f1;
  margin-bottom: 50px;
       font-size: 1.15em;
}

.contact-options {


  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
  max-width: 800px;
	margin: 0 auto;


     }

.contact-option {
  background: rgba(255,255,255,0.1);

	  padding: 35px;

	  border-radius: 15px;

	  backdrop-filter: blur(10px);
}

.contact-option h4 {
    font-size: 1.3em;
 margin-bottom   :   15px;
   font-weight   :     600;
}

.contact-detail {
   font-size: 1.1em;
    margin-bottom    :    10px;
   color: #ecf0f1;
}

.availability {
    color :     #95a5a6;
   font-size: 0.95em;
}  

.return-home-section {
	padding: 60px 0;
    background: #f8f9fa;
    text-align   :     center;
}

.return-home h3 {
   font-size: 2em;

         color: #2c3e50;

	margin-bottom: 15px;

  font-weight: 600;
}

.return-home p {
   font-size: 1.1em;
   color: #5a6c7d;
  margin-bottom: 35px;
}

.home-buttons {
  display: flex;
    gap: 20px;
    justify-content: center;
  flex-wrap: wrap;
}@media (max-width: 768px) {
    .story-content,
    .approach-content,
    .waiting-content,
    .thankyou-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-hero-content h1,
    .thankyou-message h1 {
        font-size: 2.2em;
    }

    .team-grid,
    .mission-grid,
    .achievements-grid,
    .philosophy-principles,
    .steps-grid,
    .reassurance-grid,
    .contact-options {
        grid-template-columns: 1fr;
    }

    .approach-features {
        grid-template-columns: 1fr;
    }

    .thankyou-message {
        order: 1;
    }

    .thankyou-image {
        order: 2;
    }

    .home-buttons {
        flex-direction: column;
        align-items: center;
    }

    .home-buttons .primary-btn,
    .home-buttons .secondary-btn {
        width: 250px;
        text-align: center;
    }
}.cookies-section, .privacy-section {
      padding: 100px 0;
    background: #f8f9fa;
	}

.cookies-section h1, .privacy-section h1 {
    font-size: 2.5em;
   color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 700;
    text-align: center;
}

.cookies-section h2, .privacy-section h2 {
    font-size    :     1.8em;
   color: #2c3e50;
   margin: 40px 0 20px;
   font-weight: 600;
}  

.cookies-section p, .privacy-section p		{
   font-size: 1.1em;
   color    :   #5a6c7d;
  line-height    :       1.6;
   margin-bottom: 20px;
}

.cookies-section ul, .privacy-section ul {


  list-style: none;
   margin-bottom: 20px;

}

.cookies-section ul li, .privacy-section ul li {
    margin-bottom: 10px;
               padding-left: 20px;
   position: relative;
  color: #5a6c7d;
}

.cookies-section ul li::before, .privacy-section ul li::before {
  content: "✓";
   position:   absolute;
    left: 0;
  color: #27ae60;
    font-weight: bold;
}