* {
    margin: 0;
    padding: 0;
	box-sizing: border-box; 

}

body {
  font-family: 'Arial', sans-serif;
        line-height: 1.6;
   color: #333;
	background-color: #fafafa;
}

.primary-navigation {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   padding: 1rem 0;
  position: fixed;
       width: 100%;
    top: 0;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);

}

.nav-container {
  max-width :1200px;
   margin: 0 auto;
  display: flex;
   justify-content: space-between;
    align-items: center;
	padding: 0 2rem; 
	
}

.brand-section {
   display: flex;
    align-items: center;
    gap: 12px;
	
}

.company-logo {
  width: 45px;
                    height  :      45px;
  filter: brightness(0) invert(1);
}  

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
   color: white;
}

.navigation-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
   font-weight: 500;
    transition: color 0.3s ease;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.mobile-menu-toggle {
  display   :        none;
    flex-direction: column;
	cursor: pointer;
    gap: 4px;
}

.menu-line {
   width: 25px;
   height: 3px;
    background-color: white;
                    transition: 0.3s;}

.mobile-navigation {
	display: none;
   background-color     :    #34495e;
    padding: 1rem;
  position: absolute;
	top: 100%;
   left     :     0;
   right: 0;
}

.mobile-link {
  border-bottom   :      1px solid #2c3e50;
    text-decoration: none;
  color: white;
  display: block;
   padding: 0.8rem; 

}

.content-wrapper {
   margin-top: 80px;
}

.hero-section    {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	        color: white; 
	   padding  :   4rem 0; 
	    min-height: 70vh; 
	    display: flex; 
	   align-items: center;

}

.hero-content {
    max-width  :     1200px;
  margin :  0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items   :     center;
   padding: 0 2rem;
}

.hero-text h1 {
  font-size: 3rem;
    margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-subtitle {
    font-size   :        1.2rem;
    margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
    gap: 1rem;
   flex-wrap: wrap;
}

.primary-button,
.secondary-button {
   padding: 1rem 2rem;
    text-decoration: none;
  border-radius: 5px;
   font-weight: 600;
   transition: transform 0.3s ease;
}

.primary-button {
  background-color: #e74c3c;
  color  :        white;
}

.secondary-button {
	background-color: transparent;
  color: white;
   border: 2px solid white;
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.hero-image img 
 {
   width: 100%; 
    border-radius: 10px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.section-container {
    max-width: 1200px;
   margin: 0 auto;
   padding     :     4rem 2rem;
}

.services-overview {
  background-color: white;
}

.services-overview h2 {
   text-align: center; 
	    font-size: 2.5rem; 
	    margin-bottom: 3rem; 
	       color: #2c3e50;
}

.services-grid {
   display  :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
   border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover   {
  transform: translateY(-5px);
}

.service-card img {
   border-radius: 8px;
  max-width: 250px;
    margin-bottom: 1.5rem;
    width: 100%;
}

.service-card h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
    color: #2c3e50;
}

.methodology-section 
 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.methodology-content

{
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.method-text h2 {
  font-size: 2.5rem;
      margin-bottom: 2rem;

}

.methodology-points    {


    margin-top: 2rem;
     }

.point-item {
    margin-bottom: 1.5rem;
	
}

.point-item strong {
  display: block;
   font-size: 1.2rem;
   margin-bottom: 0.5rem;
}

.method-visual img {
   width: 100%;
  border-radius: 10px;
}

.cta-section {
   background-color: #2c3e50;
   color     :       white;
   padding: 4rem 0;
}

.cta-container {
	 max-width: 800px; 
   margin: 0 auto; 
   text-align  :        center; 
    padding: 0 2rem;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}


.cta-content p {
  font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button
{
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
   color    : white;
        padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 5px;
	 font-weight: 600;
    display: inline-block;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
}

.testimonials-section   {
    background-color: #ecf0f1;
}

.testimonials-section h2 {
       text-align: center;
   font-size: 2.5rem;
               margin-bottom: 3rem;
  color: #2c3e50;
	
}

.testimonials-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap     : 2rem;
}

.testimonial-card	{
     background: white;
	 padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);}

.testimonial-card p {
    font-style: italic;
    margin-bottom     :   1.5rem;
	font-size: 1.1rem;
}

.testimonial-author strong {
  display: block;
	color  :        #2c3e50;
    margin-bottom: 0.3rem;
}

.contact-section {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	color     :   white;
}

.contact-content {
    display: grid;
  grid-template-columns: 1fr 1fr;
	 gap: 4rem;
          align-items: start;
}

.contact-info h2 {
 font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-details   {
   margin-top: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {


    display: block;
  margin-bottom: 0.5rem;
	
     }

.contact-form {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
    border-radius: 10px;
  backdrop-filter: blur(10px);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem;
	 font-weight: 600;
               display: block;
}

.form-group input,
.form-group select,
.form-group textarea  
  {

    width: 100%;
   padding    : 0.8rem;
    border: none;
  border-radius: 5px;
         font-size: 1rem;
  background: rgba(255,255,255,0.9);


}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
    background: white;
}

.submit-button {
    background: #e74c3c; 
		 color: white; 
	   padding: 1rem 2rem; 
	    border: none; 
	    border-radius: 5px; 
	  font-size: 1.1rem; 
	  font-weight: 600; 
	  cursor: pointer; 
	   transition     :  background-color 0.3s ease; 
	  width: 100%;
}

.submit-button:hover {
  background: #c0392b;
}

.site-footer {
	  background-color: #2c3e50;
	 color: white;
  padding: 3rem 0 1rem; 
	

}

.footer-content {
   max-width: 1200px;
    margin  :  0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  padding: 0 2rem;
}

.footer-brand {
          display: flex; 
    align-items: center; 
	gap: 12px; 
    margin-bottom:      1rem;
}

.footer-logo {
 width: 40px;
   height: 40px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
   color: #3498db;
    margin-bottom: 1rem;
}

.footer-links {
	    list-style: none;
	}

.footer-links li

{
    margin-bottom   :       0.5rem;


}

.footer-links a {


 color: #bdc3c7;
    text-decoration: none;
  transition: color 0.3s ease;

}

.footer-links a:hover {
  color: white;
}

.footer-bottom  
  {
  border-top: 1px solid #34495e;
   margin-top: 2rem;
   padding-top: 1rem;
  text-align :     center;
  color: #bdc3c7;
}@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navigation-links {
        display: none;
    }

    .mobile-navigation.active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .methodology-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .section-container {
        padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}.primary-navigation {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 1rem 0;
  position :        fixed;
   width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container

{
	max-width: 1200px;
  margin: 0 auto;
  display: flex;
   justify-content    :    space-between;
   align-items: center;
   padding: 0 2rem;
}

.brand-section {

    display:   flex;
   align-items: center;
  gap    :      12px;
}

.company-logo {
    width:   45px;
 height: 45px;
  filter: brightness(0) invert(1);
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.navigation-links {
    display: flex;
    gap: 2rem;
}


.nav-link {
   color: white;
          text-decoration: none;
  font-weight: 500;
   transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link.active  {
    color  :   #3498db;
}

.mobile-menu-toggle {
   display: none;

   flex-direction: column;

    cursor: pointer;

    gap: 4px;
}

.menu-line {
  width: 25px;
  height: 3px;
    background-color: white;
   transition: 0.3s;
}

.mobile-navigation

{
  display: none;
               background-color: #34495e;
    padding: 1rem;
   position  :        absolute;
  top   :       100%;
   left: 0;
       right: 0;
}

.mobile-link {
   display: block;

	    color :white;

	    text-decoration: none;

	    padding: 0.8rem;

	    border-bottom: 1px solid #2c3e50;
}@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navigation-links {
        display: none;
    }

    .mobile-navigation.active {
        display: block;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
}.about-hero {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 6rem 0 4rem;
    margin-top: 80px;}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
}

.hero-content-about {
          text-align: center;
  margin-bottom: 3rem;
}

.hero-content-about h1 {
        font-size: 3.5rem;
    margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
   max-width: 800px;
  margin    :        0 auto 2rem;
  opacity: 0.9;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
   max-width: 600px;
   width    :100%;
    border-radius  :        15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.section-wrapper {
         max-width: 1200px;
   margin: 0 auto;
  padding: 4rem 2rem;
	
}

.mission-section {
    background-color: #f8f9fa;


}


.mission-content {
   display: grid;
	grid-template-columns: 1.2fr 1fr;
    gap :      4rem;
		 align-items: center;
} 

.mission-text h2 {
  margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 2.8rem;
}

.mission-text > p {
    font-size: 1.2rem;
    line-height: 1.7;
   margin-bottom: 3rem;
   color: #555;
}

.values-list {

    display: flex;
               flex-direction: column;
   gap     : 2rem;
	}

.value-item {
   padding: 1.5rem;
  background: white;
   border-radius     :    10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #3498db;
}

.value-item h3 {
   margin-bottom: 0.8rem;
   color: #2c3e50;
   font-size: 1.3rem;


}

.mission-image img {
	width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.expertise-section     {
	background-color: white;
}

.expertise-section h2 {
  text-align: center;
  font-size: 2.8rem;
    color: #2c3e50;
        margin-bottom: 3rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap :        2.5rem;
}

.expertise-card{
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   color: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
}

.expertise-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.expertise-card > p {
  margin-bottom: 1.8rem;
   opacity: 0.9;
}

.expertise-details {
  list-style: none;
    padding: 0;
}

.expertise-details li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
    position: relative;
    padding-left: 1.5rem;
}

.expertise-details li:before {
  content: "→";
    position: absolute;
   left: 0;
  font-weight: bold;
}

.approach-section {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.approach-content {
    display: grid;
	grid-template-columns  :     1fr 1.2fr;
  gap:       4rem;
  align-items:     center;
}

.approach-text h2 {
  font-size :    2.8rem;
  margin-bottom: 2rem;
}


.approach-text > p {
    font-size: 1.2rem;
  margin-bottom: 3rem;
		opacity: 0.9;
} 

.process-steps {
   display: flex;
    gap: 2rem;
   flex-direction: column;
}

.step-item {
   		 display :flex;
      align-items: flex-start;
  gap: 1.5rem;
  background: rgba(255,255,255,0.1);
               padding  :    1.5rem;
    border-radius: 10px;
  backdrop-filter: blur(10px);
     }

.step-number {
   background: #e74c3c;
  color: white;
    width: 50px;
  height   :      50px;
	border-radius: 50%;
      display: flex;
  align-items: center;
   justify-content: center;
    font-weight: bold;
          font-size: 1.2rem;
   flex-shrink: 0;
}


.step-content h4   {

	    margin-bottom: 0.8rem;
   font-size     : 1.3rem;
	}

.approach-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.stats-section

{
   background-color: #2c3e50;
  color: white;
}

.stats-section h2 {
  font-size: 2.8rem;
   margin-bottom: 3rem;
   text-align: center;
}

.stats-grid  
  {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  text-align: center;
}

.stat-item
	{
  padding    :2rem;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.stat-number {
   display: block;
    font-size: 3rem;
      font-weight  : bold;
   color:#3498db;
   margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity     : 0.9;
}

.experience-section {
  background-color: #ecf0f1;

}

.experience-content
	{
   display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
       align-items: center;
}

.experience-text h2 {
   font-size: 2.8rem;
	   color: #2c3e50;
	      margin-bottom: 2rem;
}

.experience-text > p {
   font-size   :        1.2rem;
	    margin-bottom: 3rem;
	               color: #555;
	   line-height: 1.7;
}

.advantages-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.advantage-point {
          background: white;
   padding: 1.5rem;
   border-radius :    10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.advantage-point strong {
    display: block;
        color: #2c3e50;
        margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.experience-visual img {
    width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 4rem 0;


}

.cta-wrapper {
   max-width: 800px;
   margin: 0 auto;
	padding:    0 2rem;
    text-align: center;
}

.cta-content-about h2 {
    font-size: 2.8rem;
     margin-bottom: 1.5rem;
}

.cta-content-about p {
	font-size: 1.2rem;
    margin-bottom: 2.5rem;
   opacity: 0.9;
}

.contact-btn		{
     background: #e74c3c;
         color: white;
          padding: 1.2rem 2.5rem;
   text-decoration: none;
  border-radius  :       5px;
	font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
         font-size :      1.1rem;
}

.contact-btn:hover {
  transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
 background: #c0392b;
	
}@media (max-width: 768px) {
    .hero-content-about h1 {
        font-size: 2.5rem;
    }

    .mission-content,
    .approach-content,
    .experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .advantages-list {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        gap: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .section-wrapper {
        padding: 2rem 1rem;
    }

    .hero-content-about h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .expertise-card {
        padding: 2rem;
    }

    .value-item,
    .advantage-point {
        padding: 1.2rem;
    }
}.thankyou-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color   : white;
  padding: 6rem 0 4rem;
          margin-top: 80px;
    min-height: 70vh;
   display: flex;
                    align-items   :  center;


}

.thankyou-container {
  max-width: 1200px;
	margin: 0 auto;
  padding: 0 2rem;
  display: grid;
    grid-template-columns     :      1.2fr 1fr;
   gap: 4rem;
    align-items: center;
}

.success-content {
  text-align: left;
}

.success-icon   {
  margin-bottom    : 2rem;
}


.checkmark-circle {
	width :80px;
   height: 80px;
   background: #27ae60;
    border-radius: 50%;
    display: flex;
  align-items: center;
    justify-content: center;
    position :      relative;
	animation: scaleIn 0.6s ease-out;
}

.checkmark {
    width: 30px;
   height    :  15px;
   border: 4px solid white;
    border-top: none;
 border-right: none;
  transform: rotate(-45deg);
   animation:       drawCheck 0.4s ease-out 0.2s both;
}@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes drawCheck {
    0% {
        width: 0;
        height: 0;
    }
    100% {
        width: 30px;
        height: 15px;
    }
}.success-content h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
   line-height: 1.2;
}

.success-message     {
    font-size :   1.3rem;
    margin-bottom: 3rem;
    opacity     :    0.9;
  line-height: 1.6;
}



.next-steps h2  {
   font-size: 2.2rem;
               margin-bottom: 2rem;
    color: #f1c40f;
}

.steps-timeline {
   display: flex;
    flex-direction     :     column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
   transition  :      transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(10px);
}

.timeline-number {
      background: #e74c3c;
   color: white;
   width    :    50px;
   height: 50px;
	border-radius: 50%;
     display: flex;
    align-items: center;
	justify-content: center;
  font-weight: bold;
    font-size: 1.3rem;
 flex-shrink: 0;

}

.timeline-content h3 {
    margin-bottom     :   0.8rem;
   font-size: 1.4rem;
}

.timeline-content p {
    margin-bottom: 0.8rem;
   opacity: 0.9;
}

.timeline-duration {
   font-size: 0.9rem;
   color  :       #f1c40f;
    font-weight: 600;
}

.thankyou-visual img
{
	width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.additional-resources {
   background-color: #f8f9fa;
      padding: 4rem 0;
}

.resources-container {
	max-width: 1200px;
   margin: 0 auto;
  padding: 0 2rem;
}

.additional-resources h2 {


   text-align: center;
        font-size: 2.8rem;
  color: #2c3e50;
   margin-bottom: 1.5rem;}



.resources-intro    {
   text-align: center;
  font-size: 1.2rem;
  color: #555;
  margin-bottom  :    3rem;
  max-width: 800px;
   margin-left: auto;
        margin-right: auto;
}

.resources-grid {
    display  :  grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.resource-card {
   background: white;
  padding: 2.5rem;
	border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
   border-top: 4px solid #3498db;
    transition: transform 0.3s ease;
	
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card h3


{
      color: #2c3e50;
    margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.resource-list {
               list-style: none;
   padding: 0;
}

.resource-list li {
               padding: 0.8rem 0;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
  padding-left: 2rem;
  color: #555;
}

.resource-list li:before {
	  content: "•";
    color: #3498db;
  position: absolute;
               left: 0;
   font-size: 1.5rem;
   top: 0.5rem;
	}

.urgent-contact {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
   color: white;
   padding: 4rem 0;
}

.urgent-container {
    max-width: 1200px;
  margin    :       0 auto;
    padding: 0 2rem;
	display: grid;
  grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  align-items: center;
}

.urgent-content h2 {
    margin-bottom: 1.5rem;
    font-size     : 2.5rem;
}

.urgent-content > p {
    font-size:   1.2rem;
   margin-bottom: 3rem;
   opacity: 0.9;
}

.urgent-contact-options {

               display: flex;
   gap: 3rem;
      flex-wrap: wrap; 

	}

.contact-option {
  background: rgba(255,255,255,0.1); 
	    padding: 2rem; 
	    border-radius: 10px; 
	  backdrop-filter: blur(10px); 
	  min-width:  200px;
}

.contact-option h3 {
 margin-bottom: 1rem;
  color: #f1c40f;
    font-size: 1.3rem;


}

.contact-detail {


  font-size: 1.1rem;
  margin-bottom: 0.8rem;
               font-weight    :       600;
	

}

.availability {
  font-size: 0.9rem;
     opacity: 0.8;
}

.confidence-image img {
    width: 100%;
 border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.social-proof {
    background-color: #2c3e50; 
	    color: white; 
	       padding: 4rem 0;
}


.proof-container {
   max-width: 1200px;
  margin    :    0 auto;
  padding   :  0 2rem;
    text-align: center;
}

.social-proof h2 {
       font-size:     2.8rem;
	margin-bottom: 3rem;
}

.proof-stats {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 2rem;
  margin-bottom: 4rem;
}

.proof-stat {
  background: rgba(255,255,255,0.1);
    padding: 2.5rem;
  border-radius    :      12px;
  backdrop-filter: blur(10px);
}

.proof-number {
   font-size: 3.5rem;
   	 color: #3498db;
       font-weight: bold;
      margin-bottom: 0.5rem;
       display: block;
}

.proof-label {
   display   :    block;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}  

.proof-description 
 {
  font-size: 0.9rem;
   opacity: 0.8;
}

.testimonial-highlight {
  background: rgba(255,255,255,0.1);
    padding    :        3rem;
   border-radius: 15px;
  backdrop-filter: blur(10px);
         max-width   :      800px;
 margin: 0 auto;
}

.testimonial-highlight p {
  font-size  :  1.3rem;
   font-style: italic;
   margin-bottom: 1.5rem;
	 line-height: 1.6;
}

.testimonial-highlight cite
	{
  font-size: 1rem;
    color: #f1c40f;


}

.navigation-suggestions {
   background-color: #ecf0f1;
    padding     :  4rem 0;
}

.suggestions-container {
   max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
}

.navigation-suggestions h2 {
	    text-align     :        center;
  font-size: 2.8rem;
   color: #2c3e50;
   margin-bottom: 3rem;
	}

.navigation-cards {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
   gap: 3rem;
}

.nav-card {
   background: white;
	border-radius: 15px;
   overflow    :      hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}  

.nav-card:hover {
  transform: translateY(-8px);
}

.nav-card img {
          width: 100%;
  height: 200px;
     object-fit: cover;
	
}

.nav-card-content
	{
    padding: 2.5rem;
	
}

.nav-card-content h3 {
   margin-bottom: 1rem;
    font-size: 1.5rem;
    color :   #2c3e50;
}

.nav-card-content p {
	color: #555;
  margin-bottom: 2rem;
   line-height: 1.6;
}

.nav-card-link


{
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); 
	    color: white; 
	   padding : 1rem 2rem; 
	   text-decoration: none; 
	  border-radius  : 5px; 
		 font-weight: 600; 
	  display   :        inline-block; 
	  transition: transform 0.3s ease;
}

.nav-card-link:hover {
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
}@media (max-width: 768px) {
    .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .success-content h1 {
        font-size: 2.5rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .urgent-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .urgent-contact-options {
        justify-content: center;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .navigation-cards {
        grid-template-columns: 1fr;
    }

    .proof-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .thankyou-hero {
        padding: 4rem 0 2rem;
    }

    .success-content h1 {
        font-size: 2rem;
    }

    .urgent-contact-options {
        flex-direction: column;
        gap: 1.5rem;
    }

    .testimonial-highlight {
        padding: 2rem;
    }

    .nav-card-content {
        padding: 2rem;
    }
}.cookies-section,
.privacy-section {
    background-color: #f8f9fa;
}

.cookies-section h2,
.privacy-section h2 {
  font-size : 2.5rem;
   color: #2c3e50;
  margin-bottom: 2rem;
   text-align: center;
}

.cookies-content,
.privacy-content {
   max-width: 800px;
  margin: 0 auto;
   padding: 2rem;
}

.cookies-content p,
.privacy-content p {
     font-size   : 1.1rem;
   line-height: 1.7;
	 color: #555;
   margin-bottom: 1.5rem;

}