* 
 {
	margin     :0;
   padding :        0;
  box-sizing   :    border-box;
}

html {


  scroll-behavior: smooth;
     }

body     {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   color: #2c3e50;
    line-height     :  1.6;
    background-color: #ffffff;
}

.main-nav {
	        background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   position: sticky;
    top: 0;
   z-index: 1000;


}

.nav-container {


        max-width: 1200px;
  margin    : 0 auto;
    display: flex;
   justify-content: space-between;
  align-items: center;
    padding:  0 20px;
    height: 70px;

}

.nav-logo img
{
    height: 64px;
        width   :  auto;
  filter: brightness(0) invert(0);

}

.nav-menu {
    display   :flex;
  list-style: none;
  gap: 35px;
}  

.nav-menu a {


  position: relative;
   transition: color 0.3s ease;
    font-weight: 500;
	text-decoration     :     none;
	 font-size: 15px;
   color: #2c3e50;
}

.nav-menu a:hover {
       color: #e74c3c;
}

.nav-menu a::after {
     content: '';
   position: absolute;
     bottom: -5px;
  left: 0;
   width: 0;
    height :      2px;
    background-color     :    #e74c3c;
	 transition: width 0.3s ease;

}

.nav-menu a:hover::after {
    width: 100%;
}



.burger-menu {
       display: none;
	 padding :        10px;
   border: none;
  gap: 6px;
   background: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-line {
  width: 25px;
	height: 3px;
  background-color: #2c3e50;
  border-radius: 2px;
  transition    :     all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1)  {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity    :      0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);


}

.hero-section {
   max-width: 1200px; 
  margin: 0 auto; 
   padding: 80px 20px; 
	display: grid; 
    grid-template-columns     : 1fr 1fr; 
   gap: 60px; 
  align-items: center;
}

.hero-content h1 {
    font-size:  48px;
       color: #1a252f;
     margin-bottom: 20px;
             line-height    :    1.2;
       font-weight: 700;
}

.hero-subtitle
{
    font-size: 18px;
       margin-bottom: 40px;
  line-height: 1.7;
	color: #555;
}

.hero-cta {
	   display: inline-block;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);


}

.hero-cta:hover {


  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
	
     }  

.hero-image img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-section {
	 background-color     :   #f8f9fa;
    padding: 80px 20px;
}

.about-wrapper {
   display :grid;
       gap: 60px;
   max-width: 1200px;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    margin     :   0 auto;
}

.about-text h2 {
               font-size: 42px;
     color :  #1a252f;
    margin-bottom: 30px;
                    font-weight: 700;
}

.about-text p {
  font-size: 16px;
	  color    :#555;
	    margin-bottom: 20px;
	  line-height: 1.8;
}

.about-image img  {
   width: 100%; 
	  border-radius: 12px; 
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-overview {
  max-width: 1200px;
   margin: 0 auto;
   padding: 80px 20px;
}

.services-overview h2


{
    font-size: 42px;
    text-align: center;
   color: #1a252f;
      margin-bottom: 60px;
	 font-weight: 700;
}

.services-grid
{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.service-card {
      transition  : all 0.3s ease;
   padding: 40px 30px;
   background: white;
    border: 1px solid #ecf0f1;
         text-align: center;
	 border-radius: 12px;
}

.service-card:hover
{
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #e74c3c;
}

.service-icon    {
     width: 70px;
    height: 70px;
   margin: 0 auto 25px;
   display: flex;
   align-items   : center;
			justify-content: center;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border-radius     :    50%;
   color: white;


}

.service-icon svg {
    width: 35px;

    height: 35px;
}

.service-card h3 {
  font-size: 22px; 
	   color :    #1a252f; 
	               margin-bottom: 15px; 
	   font-weight: 600;
}

.service-card p {
	font-size: 15px;
   color: #666;
	 line-height: 1.7;
}

.crisis-management {
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
	padding: 80px 20px;
}

.crisis-wrapper {
  max-width: 1200px;
    margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
         gap: 60px;
    align-items: center;
}

.crisis-image img {
   width: 100%;
 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.crisis-content h2 {
         font-size: 42px;
   color: #1a252f;
  margin-bottom: 40px;
    font-weight: 700;
}

.crisis-phases {
     display     :   grid;
       gap: 25px;
     }

.phase-item {
  background: white;
    padding: 25px 30px;
    border-radius: 10px;
    border-left:   4px solid #e74c3c;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}


.phase-item h4 {
          font-size: 18px;
	color: #1a252f;
   margin-bottom: 12px;
  font-weight     :    600;
	
}

.phase-item p {
	 font-size: 15px;
    color: #666;
                    line-height  : 1.6;
}

.advisory-section {
    margin: 0 auto;
   padding  :    80px 20px;
  max-width: 1200px; 

}

.advisory-section h2  {
     font-size: 42px;
	    text-align: center;
	    color: #1a252f;
	    margin-bottom: 20px;
	  font-weight: 700;
}

.section-intro {
   text-align: center;
    font-size: 18px;
    color: #666;
   margin-bottom: 50px;
   max-width: 600px;
	margin-left: auto;
   margin-right    :    auto;
}

.advisory-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.advisory-card {
  background: white;
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
		 transition:       all 0.3s ease;


}

.advisory-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.advisory-card img {
   width: 100%;
    height: 250px;
   object-fit: cover;


}



.advisory-card h3 {
	font-size: 24px;
    color: #1a252f;
   padding: 30px 25px 15px;
	 font-weight: 600; 
	
}

.advisory-card p		{
               font-size     :        16px;
    color    : #666;
   padding: 0 25px 25px;
   line-height:      1.7; 
	
}

.cta-section {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
       padding: 80px 20px;
   text-align :     center;
}

.cta-content  {

    max-width: 800px;
   margin: 0 auto;


}

.cta-content h2 {
       font-size: 42px;
   color: white;
  margin-bottom: 20px;
   font-weight  :700;

}

.cta-content p {
	  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom:   35px;
	 line-height :1.7;


}

.cta-button {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
   color   :  #e74c3c;
   border-radius :  8px;
    display: inline-block;
	 padding: 15px 45px;
  background    :       white;
   transition: all 0.3s ease;
}

.cta-button:hover
	{

	  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

}

.contact-section


{
  max-width: 1200px;
   margin: 0 auto;
	padding  :  80px 20px; 

}

.contact-wrapper {
          max-width: 800px;
  margin: 0 auto;
}

.contact-section h2     {
   font-size: 42px;

	text-align: center;

                    color    :      #1a252f;

	margin-bottom: 15px;

  font-weight: 700;
}

.contact-section > p {
                    text-align: center;
    font-size:16px;
  color: #666;
    margin-bottom: 50px;
}

.contact-form {
   background: white;
  padding:        50px 40px;
	 border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}



.form-group {

   margin-bottom     :  25px; 

     }  

.form-group label {
	display: block;

	   margin-bottom   :      10px;

		font-weight: 600;

	 color: #2c3e50;

	   font-size: 15px;


}

.form-group input,
.form-group select,
.form-group textarea {
  width     :    100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
   border-radius: 6px;
    font-size: 15px;
   font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
        outline: none;
    border-color    :   #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
     }

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
   color: white;
   padding: 15px 30px;
  border: none;
   border-radius: 6px;
   font-size: 16px;
  font-weight: 600;
   cursor: pointer;
  transition  :   all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
	border-radius: 12px;
    text-align: center;
}

.contact-info h3 {
   margin-bottom: 20px;
   font-size: 22px;
  font-weight: 600;
    color: #1a252f;
}



.contact-info p {
       font-size: 15px;
   color  :      #666;
  margin-bottom: 12px;
    line-height   :    1.8;

}

.main-footer {

	   background-color: #2c3e50;
  color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 30px;

}

.footer-container {
   max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
   margin-bottom: 40px;
}

.footer-logo-section {
    display: flex;
     align-items: flex-start;
}

.footer-logo {
  height: 86px;
      width: auto;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
   color: white;
   margin-bottom   :     20px;
   font-size   :   16px;
  font-weight: 600; 
	
}

.footer-column ul {
         list-style: none;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
  font-size     :14px;
  transition: color 0.3s ease;
  display: block;
    margin-bottom: 10px;
}

.footer-column a:hover {
   color  :      white;
}

.footer-contact-section h4 {
		 color: white;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

.footer-contact-section p {
	font-size: 14px;
    margin-bottom     : 10px;
    line-height :       1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top    :      30px;
    text-align  :        center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 50px 20px;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .crisis-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .crisis-content h2 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .main-footer .footer-container {
        grid-template-columns: 1fr;
    }

    .services-overview h2,
    .advisory-section h2,
    .contact-section h2 {
        font-size: 32px;
    }

    .advisory-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .about-text h2,
    .services-overview h2,
    .crisis-content h2,
    .cta-content h2,
    .contact-section h2 {
        font-size: 26px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .nav-container {
        height: 60px;
    }

    .nav-logo img {
        height: 50px;
    }
}.services-header {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  color: white;
   padding: 100px 20px;
  text-align: center;

}

.services-header h1 {
  font-size     :        48px;
  margin-bottom: 15px;
    font-weight: 700;
}

.services-header p {
    font-size: 20px;
   opacity: 0.9;
    max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.detailed-service {
    padding: 80px 20px;
  background-color: #ffffff;
}

.detailed-service.alternate {

	   background-color: #f8f9fa;


}

.service-container {

    max-width     :        1200px;
	   margin: 0 auto;
	   display: grid;
	   grid-template-columns: 1fr 1fr;
				gap: 60px;
	  align-items: center;


}

.service-text h2 {
  font-size: 40px;
   color :#1a252f;
  margin-bottom   :25px;
   font-weight: 700;
         line-height: 1.2;
}

.service-text > p {
        font-size  :      16px;
	color: #555;
	 margin-bottom  : 30px;
  line-height: 1.8;

}

.service-highlights {
    margin: 35px 0;


}

.highlight-item h4 {
	font-size: 18px;
  color: #1a252f;
         margin-bottom: 15px;
  font-weight: 600;
}

.service-list {
    list-style: none;
   margin-bottom: 25px;
}

.service-list li {
    font-size: 15px;
	  color: #555;
	    margin-bottom:        10px;
	    padding-left: 25px;
	    position: relative;
	  line-height   :  1.6;
}

.service-list li:before {
  font-size     :16px;
  left: 0;
  content: '✓';
  font-weight: bold;
	color: #e74c3c;
  position: absolute;
}

.service-meta {


    display: flex;
  flex-wrap: wrap;
  gap: 25px;
	 margin-top: 30px;
   padding-top: 25px;
  border-top: 1px solid #ecf0f1;
	}

.meta-item{
	font-size: 14px;
          color: #666;
    font-weight :   500;
	
}

.meta-item:before {
  content: '• ';
   color: #e74c3c;
   font-weight: bold;
   margin-right: 8px;
}

.service-image img {
   width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.service-image img:hover {
  transform: scale(1.02);
}

.pricing-section {
   max-width: 1200px;
   margin: 0 auto;
	padding: 80px 20px;
}

.pricing-section h2 {
       font-size: 42px;
  text-align :  center;
   color     :#1a252f;
    margin-bottom: 20px;
   font-weight: 700;
}

.pricing-intro {
	 text-align: center;
    font-size: 16px;
        color: #666;
 margin-bottom: 50px;
    max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
   border-radius: 12px;
    border: 2px solid #ecf0f1;
   text-align: center;
    transition     :      all 0.3s ease;
  position: relative;
}

.pricing-card:hover 
 {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #e74c3c;
}

.pricing-card.featured    {

	     border-color: #e74c3c;
	  background: linear-gradient(to bottom, #fff, #fff7f5);
	  transform: scale(1.05);
     }

.pricing-card h3 {
   font-size:24px;
   color: #1a252f;
  margin-bottom: 20px;
  font-weight: 600;
}

.price {
   font-size: 36px;
    color: #e74c3c;
  font-weight  :  700;
  margin-bottom: 5px;
}

.price-period {
	font-size: 14px;
   color: #999;
   margin-bottom: 25px;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
   text-align: left;


}

.pricing-features li {
    font-size  :     14px; 
	    color: #555; 
	  margin-bottom: 12px; 
	   padding-left: 25px; 
	   position: relative;
}

.pricing-features li:before

{
  content: '✓';

  position: absolute;

  left: 0;

    color: #e74c3c;

   font-weight: bold;
}

.process-section {
    background-color: #f8f9fa;
   padding  :     80px 20px;
}

.process-section h2 {
  font-size  :       42px;
   text-align: center;
  color: #1a252f;
    margin-bottom: 60px;
  font-weight: 700;
}

.process-steps {

         max-width: 1000px;
    margin: 0 auto;
  display   :      grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;


}


.step {
	background: white;
  padding   :     30px 25px;
    border-radius: 10px;
	text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
    position: relative;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
   width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
    border-radius: 50%;
   display  : flex;
   align-items: center;
   justify-content: center;
    font-size: 24px;
    font-weight    :      700;
   margin    : 0 auto 20px;
	}

.step h3 {
  margin-bottom: 15px;
	font-size: 18px;
   color: #1a252f;
   font-weight   :       600;
}

.step p {
      font-size: 14px;
    color: #666;
  line-height: 1.6;
}

.faq-section		{
    max-width: 1000px;
   margin: 0 auto;
  padding: 80px 20px;
}

.faq-section h2     {
   font-size: 42px;
   text-align: center;
   color: #1a252f;
   margin-bottom: 50px;
  font-weight: 700;
}

.faq-container

{
    display     :   grid;
	 gap: 20px;
}

.faq-item {


  background: white;
	    padding: 25px 30px;
	      border-radius: 10px;
	   border-left :        4px solid #e74c3c;
	  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	  transition: all 0.3s ease;
}

.faq-item:hover {
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);}

.faq-question


{
 font-size: 18px;
   color: #1a252f;
    margin-bottom: 12px;
   font-weight: 600;
  cursor: pointer;

}

.faq-answer {
	font-size   :      15px;
    color: #666;
  line-height: 1.7;
}

.services-cta {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
   color: white;
  padding: 70px 20px;
  text-align: center;
}

.services-cta h2 {
	margin-bottom: 15px;
    font-size: 42px;
   font-weight: 700;
}

.services-cta p {

   font-size : 18px;
   		margin-bottom: 35px;
         opacity: 0.95;
     }

.cta-link {
  display: inline-block;

	 background: white;

	  color     :     #e74c3c;

	   padding: 15px 45px;

	   border-radius: 8px;

	  text-decoration: none;

	   font-weight: 600;

	   font-size  : 16px;

	   transition: all 0.3s ease;
}

.cta-link:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.thankyou-section {
  min-height: calc(100vh - 200px);
   display  :       flex;
   align-items: center;
    padding  : 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
}

.thankyou-container {
    max-width: 700px;
    margin: 0 auto;
	 background: white;
  padding: 60px 40px;
	 border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thankyou-icon {
  width: 100px;
    height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
      border-radius: 50%;
	display: flex;
   align-items: center;
  justify-content: center;
   color  :   white;
}

.thankyou-icon svg {
  width: 80px;
  height: 80px;
  stroke: white;
  fill: none;
}

.thankyou-container h1 {
  font-size: 38px;
  color     :#1a252f;
   margin-bottom: 15px;
  font-weight: 700; 
	
}

.thankyou-subtitle {
    font-size: 18px;
   color   :#666;
    margin-bottom: 40px;
   line-height: 1.6;
}

.thankyou-content {
      margin: 40px 0;
     text-align: left;
}

.thankyou-content p {
   font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.8;
}

.what-happens {
  background  : #f8f9fa;
   padding: 35px 25px;
    border-radius: 10px;
    margin: 35px 0;
}



.what-happens h2 {
	font-size: 22px;
      color: #1a252f;
   margin-bottom: 30px;
   font-weight: 600;
}

.steps-timeline {
     display: grid;
    gap: 20px; 

} 

.timeline-step {
   display: grid;
    grid-template-columns: 60px 1fr;
   gap: 20px;
	align-items: start;
} 

.timeline-marker {
	   width: 50px; 
   height: 50px; 
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); 
  color: white; 
  border-radius  :      50%; 
  display: flex; 
    align-items: center; 
    justify-content    :  center; 
   font-weight: 700; 
    font-size: 20px; 
  flex-shrink     :     0;
	}

.timeline-step h3 {
  font-size  :       16px;

	  color: #1a252f;

	   margin-bottom: 5px;

	    font-weight: 600;

	   text-align    :  left;
}

.timeline-step p {
    font-size: 14px;
    color: #666;
    text-align: left;
   margin-bottom: 0;
 line-height: 1.5;
}

.tips-box {


    background: #fff3e0;
      padding   :  30px 25px;
       border-radius: 10px;
   border-left: 4px solid #f39c12;
  margin: 30px 0;
    text-align: left;
	


}

.tips-box h3 {
   font-size: 18px;
    color: #1a252f;
         margin-bottom: 20px;
   font-weight: 600;
}

.tips-list     {
    list-style: none;
}

.tips-list li {
   font-size: 14px;
  color: #555;
 margin-bottom: 12px;
                    padding-left: 25px;
    position :     relative;
   line-height: 1.6;
}

.tips-list li:before {
  content: '→';
  position: absolute;
    left: 0;
  color: #f39c12;
   font-weight: bold;
  font-size    :   16px;
}

.explore-more {
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
   padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
	 margin: 30px 0;
}

.explore-more h3 {
  font-size: 20px;
    color: #1a252f;
  margin-bottom: 12px;
   font-weight    :  600;
}

.explore-more p  
  {
  font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

.explore-buttons {
    display: flex;
   gap: 15px;
 justify-content: center;
          flex-wrap: wrap;
}

.explore-btn {
  display: inline-block;
    padding    :12px 30px;
         border-radius: 6px;
       text-decoration: none;
    font-weight     :     600;
    font-size: 14px;
  transition    :       all 0.3s ease;
	text-align: center;
}

.explore-btn {
	background:     #e74c3c;
   color: white;
}

.explore-btn:hover {
   background: #c0392b;

	  transform: translateY(-2px);
}



.explore-btn.secondary {
	color: #1a252f;
       background    :     white;
	 border: 2px solid #1a252f;
}

.explore-btn.secondary:hover {
     background: #1a252f;
  color: white;
}

.contact-reminder {
	 line-height    : 1.8;
  color: #555;
  background: #f0f7ff;
  margin-top: 35px;
   padding: 25px;
    border-left: 4px solid #3498db;
   border-radius: 10px;
  font-size: 14px; 
	
}

.contact-reminder strong 
 {
	color: #1a252f;
}@media (max-width: 768px) {
    .services-header h1 {
        font-size: 36px;
    }

    .services-header p {
        font-size: 16px;
    }

    .service-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-text h2 {
        font-size: 32px;
    }

    .service-meta {
        flex-direction: column;
        gap: 15px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .pricing-section h2,
    .process-section h2,
    .faq-section h2,
    .services-cta h2 {
        font-size: 32px;
    }

    .thankyou-container {
        padding: 40px 25px;
    }

    .thankyou-container h1 {
        font-size: 28px;
    }

    .timeline-step {
        grid-template-columns: 50px 1fr;
    }

    .explore-buttons {
        flex-direction: column;
    }

    .explore-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-header h1 {
        font-size: 26px;
    }

    .services-header p {
        font-size: 15px;
    }

    .service-text h2 {
        font-size: 24px;
    }

    .service-text p {
        font-size: 14px;
    }

    .pricing-section h2,
    .process-section h2,
    .faq-section h2,
    .services-cta h2 {
        font-size: 24px;
    }

    .thankyou-container {
        padding: 30px 20px;
    }

    .thankyou-container h1 {
        font-size: 24px;
    }

    .thankyou-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .thankyou-icon svg {
        width: 60px;
        height: 60px;
    }

    .what-happens {
        padding: 20px 15px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .timeline-step {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .tips-box,
    .explore-more {
        padding: 20px 15px;
    }
}.policySection     {
    padding: 80px 2rem; 
  background: #f8f9fa;
}

.policyContainer {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  background: white;
   padding: 60px 50px;
	 border-radius  :  12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
               font-size: 42px;

  color    :     #1a252f;

   margin-bottom: 40px;

    font-weight   :   700;

    border-bottom   :     3px solid #e74c3c;

    padding-bottom   :  20px;
     }

.policyContainer h2 {
    font-size     :  24px;
    color     :   #2c3e50;
    margin-bottom    :    20px;
  margin-top: 35px;
   font-weight: 600;
}

.policyContainer p {
   color: #555;
   margin-bottom: 18px;
   line-height: 1.8;
   font-size: 15px;
}

.policyContainer strong {
   color: #1a252f;
	 font-weight: 600;
}

.policyContainer h2:first-of-type {
  margin-top: 0;
}

.policyContainer ul,
.policyContainer ol
	{
  margin: 20px 0 20px 30px;
    color   :  #555;
}

.policyContainer li {
    margin-bottom: 12px;
  line-height: 1.7;
  font-size: 15px;
}

.policyContainer a {
   color: #e74c3c;
  text-decoration: none;
    transition: color 0.3s ease;
}

.policyContainer a:hover    {
  color: #c0392b;
  text-decoration: underline;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 40px 25px;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 32px;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .policyContainer h2 {
        font-size: 20px;
        margin-top: 28px;
        margin-bottom: 15px;
    }

    .policyContainer p {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.7;
    }

    .policyContainer ul,
    .policyContainer ol {
        margin: 15px 0 15px 20px;
    }

    .policyContainer li {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.75rem;
    }

    .policyContainer {
        padding: 25px 15px;
        border-radius: 6px;
    }

    .policyContainer h1 {
        font-size: 24px;
        margin-bottom: 25px;
        padding-bottom: 12px;
    }

    .policyContainer h2 {
        font-size: 18px;
        margin-top: 22px;
        margin-bottom: 12px;
    }

    .policyContainer p {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .policyContainer ul,
    .policyContainer ol {
        margin: 12px 0 12px 15px;
    }

    .policyContainer li {
        font-size: 13px;
        margin-bottom: 8px;
    }
}

@media (prefers-color-scheme: dark) {
    .policyContainer {
        background: #2c3e50;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .policyContainer h1 {
        color: #ffffff;
        border-bottom-color: #e74c3c;
    }

    .policyContainer h2 {
        color: #ecf0f1;
    }

    .policyContainer p,
    .policyContainer li {
        color: #bdc3c7;
    }

    .policyContainer strong {
        color: #ffffff;
    }
}