* {
    margin: 0;
        padding: 0;
        box-sizing: border-box; 
	
}

html {


  scroll-behavior: smooth;

} 

body {

	  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
   line-height: 1.6;
  color: #2c3e50;
  background-color   :     #ffffff;
	}

.navbar {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5282 100%);
  padding: 1rem 0;
  position: sticky;
	top: 0;
 z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-container {
          max-width   :    1200px;
   margin :      0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
  align-items: center;
}

.nav-logo-link {
   display: flex; 
	  align-items: center;
}  

.nav-logo {
          height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
   display: flex;
   list-style :        none;
         gap: 3rem;
  align-items: center;
}

.nav-menu a {
    color: #ffffff; 
    text-decoration: none; 
    font-weight: 500; 
  transition: all 0.3s ease; 
  position: relative;
	
}

.nav-menu a:hover {
   color: #ffd700;
}

.nav-menu a::after {
                    position: absolute;
    transition: width 0.3s ease;
  background: #ffd700;
  bottom: -5px;
  content: '';
   width: 0;
   height: 2px;
  left: 0;
} 

.nav-menu a:hover::after {
      width: 100%; 
	

}

.nav-cta {
    background: #ffd700;
	 color    :       #1a3a52 !important;
  padding: 0.6rem 1.5rem;
   border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: #ffed4e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
	
}

.nav-cta::after {
   display: none;
}

.burger-menu
{
   display: none;
   background: transparent;
               border: none;
 cursor: pointer;
   padding: 0.5rem;
}

.burger-menu img {
    width: 28px;
   height: 28px;
  filter: brightness(0) invert(1); 
	
}

.hero {
   max-width  :       1200px;
    margin: 0 auto;
   padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
	gap: 4rem;
   align-items: center;

}

.hero-content h1 {
    font-weight: 700;
    margin-bottom  : 1.5rem;
   line-height: 1.2;
    color: #1a3a52;
	font-size    :     3.5rem;

}

.hero-content p {
  font-size   :   1.25rem;
    line-height: 1.8;
        color: #555;
  margin-bottom: 2rem;
}



.hero-button     {
  padding: 1rem 2.5rem; 
	   font-size: 1.1rem; 
	  background: linear-gradient(135deg, #2c5282 0%, #1a3a52 100%); 
	    color: white; 
	    border: none; 
	  border-radius     :    8px; 
		 cursor: pointer; 
	    transition: all 0.3s ease; 
			 font-weight: 600;
	}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(42, 82, 130, 0.3);
}

.hero-image {
   width: 100%;
    height :  400px;
  object-fit: cover;
    border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.services-preview {
	 background: #f8f9fa;
   padding     :4rem 2rem;
   text-align: center;
}

.services-preview h2  
  {
    font-size: 2.8rem;
	   color: #1a3a52;
	   margin-bottom: 3rem;
	    font-weight: 700;
}

.services-grid

{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    max-width: 1200px;
	 margin: 0 auto;
}

.service-card {


   background: white;
	   padding: 2rem;
	    border-radius: 12px;
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	  transition: all 0.3s ease;


}

.service-card:hover {
  transform: translateY(-8px); 
	  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}



.service-icon  {
    width: 70px;
  height: 70px;
				 margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #2c5282 0%, #1a3a52 100%);
   border-radius: 12px;
   display: flex;
    align-items: center;
	 justify-content: center;
}

.service-icon img {
  width: 40px;
                    height: 40px;
  filter: brightness(0) invert(1);


}

.service-card h3 {

    font-size: 1.5rem;
  color: #1a3a52;
    margin-bottom: 1rem;
   font-weight: 600;}

.service-card p {
	   line-height: 1.7;
  color: #666;
    font-size: 0.95rem;


}

.showcase {
    max-width: 1200px;
    margin: 0 auto;
	padding: 4rem 2rem;
}

.showcase-item {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;
  margin-bottom : 5rem;
}

.showcase-item.reversed {
  grid-template-columns     : 1fr 1fr;

   direction: rtl;
}

.showcase-item.reversed > * {
   direction: ltr;
}

.showcase-image {
  width: 100%;
       height: 350px;
    object-fit: cover;
    border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.showcase-text h2 {
   font-size: 2.2rem;
   color: #1a3a52;
   margin-bottom: 1.5rem;
    font-weight: 700;
}

.showcase-text p {
    font-size: 1.05rem;
	color: #555;
   line-height: 1.8;
}

.cta-section     {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5282 100%);
   color: white;
                    padding: 5rem 2rem;
               text-align  :        center;
}

.cta-section h2  
  {

	 font-size: 2.8rem;
  margin-bottom: 1rem;
    font-weight: 700;

}

.cta-section p {
  font-size :1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {

	   padding: 1rem 2.5rem;
  font-size: 1.1rem;
   background: #ffd700;
    color: #1a3a52;
    border     :    none;
  border-radius:  8px;
    cursor: pointer;
  transition: all 0.3s ease;
   font-weight: 600;
	}

.cta-button:hover   {
	 background: #ffed4e;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.offerings   {
    background:    #f8f9fa; 
   padding: 4rem 2rem;
}

.offerings h2 {

	   font-size: 2.8rem;
	font-weight: 700;
  text-align: center;
  color: #1a3a52;
   margin-bottom: 3rem;

}

.offerings-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
   margin: 0 auto;
     }

.offering-item	{
                    background: white;
  padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
    border-left: 4px solid #2c5282;
}

.offering-item:hover {
  transform: translateY(-5px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.offering-item h3 {
       font-size: 1.4rem;
  color:      #1a3a52;
  margin-bottom   :    1rem;
  font-weight   :   600;
}

.offering-item p {
  color: #666;

  font-size: 0.95rem;

    line-height: 1.7;

  margin-bottom: 1.5rem;
}

.price-tag

{
	   display: inline-block;
  background: linear-gradient(135deg, #2c5282 0%, #1a3a52 100%);
   color   :  white;
  padding: 0.5rem 1rem;
    border-radius: 20px;
          font-size :  0.85rem;
  font-weight: 600;}

.about-preview {
   max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
	text-align: center;
}



.about-preview h2 
 {

	   font-size: 2.8rem;
          color: #1a3a52;
	margin-bottom: 3rem;
    font-weight: 700;


}

.about-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
}

.about-item {
    background: #f8f9fa;
   padding: 2rem;
   border-radius: 12px;
    transition: all 0.3s ease;
}

.about-item:hover {
  background: linear-gradient(135deg, #2c5282 0%, #1a3a52 100%);
}

.about-number {
  font-size     : 2.8rem;
               font-weight: 700;
   color: #2c5282;
    margin-bottom: 0.5rem;
}

.about-item:hover .about-number {


  color: #ffd700;
     }

.about-item p {
   color: #666;
    font-size: 1rem;
}

.about-item:hover p {
  color: white;
}

.contact-section {

	  background: #f8f9fa;
    padding  :        4rem 2rem;}


.contact-section h2 {


   text-align: center;
   font-size: 2.8rem;
   color: #1a3a52;
    margin-bottom: 1rem;
  font-weight: 700;

}

.contact-section > p {
  text-align: center;
  font-size: 1.1rem;
	color: #666;
  margin-bottom: 3rem;

}

.contact-form {
	 max-width: 600px;
    margin: 0 auto;
    background     :    white;
	padding: 3rem;
	 border-radius   :    12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-group


{

    margin-bottom: 1.5rem;
	}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
    padding: 0.9rem;
	border: 2px solid #e0e0e0;
   border-radius: 8px;
    font-size: 1rem;
  font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
   outline: none;
    border-color: #2c5282;
  box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
	
}

.contact-form textarea		{
   resize: vertical;
}

.submit-button   {
    width: 100%;
   padding: 1rem;
  background: linear-gradient(135deg, #2c5282 0%, #1a3a52 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
   font-weight: 600;
	cursor     :      pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {


  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 82, 130, 0.3);
	
	}

.footer {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5282 100%);
    color: white;
   padding: 3rem 2rem 1rem;
   margin-top:    4rem;
}

.footer-container 
 {
   max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap   :   2rem;
	margin-bottom: 2rem;


	}

.footer-section h3 {
   font-size: 1.3rem;

   margin-bottom: 1rem;

   font-weight :    600;
}

.footer-logo {
   height: 60px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li		{
         margin-bottom: 0.7rem;

}

.footer-section a {
  color :  #e0e0e0;
   text-decoration: none;
   transition: all 0.3s ease;
}

.footer-section a:hover {
    color  :        #ffd700;
}

.footer-section p		{

    color: #e0e0e0; 
   line-height: 1.8; 
    font-size: 0.95rem;}

.footer-bottom

{
  text-align     :    center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a3a52;
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .burger-menu {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-image {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item,
    .showcase-item.reversed {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .showcase-item.reversed > * {
        direction: ltr;
    }

    .showcase-image {
        height: 250px;
    }

    .showcase-text h2 {
        font-size: 1.8rem;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section h2,
    .services-preview h2,
    .offerings h2,
    .about-preview h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 3rem 1rem;
    }
}.services-hero	{
  background: linear-gradient(135deg, #1a3a52 0%, #2c5282 100%);
    color: white;
    padding: 5rem 2rem;
   text-align: center;
}

.services-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
   margin-bottom: 1rem;
   line-height: 1.2;
}

.services-hero p {
   font-size: 1.3rem;
  opacity: 0.95;
}

.service-detail  
  {
  padding: 4rem 2rem;
  background: white;
	
}

.service-detail.reversed {
    background: #f8f9fa;
}

.service-detail-item

{
  max-width: 1200px;
    margin: 0 auto;
	display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
} 

.service-detail-item.reversed-item {
    grid-template-columns    :    1fr 1fr;
}

.service-detail-image{
       width: 100%;
       height    :   380px;
    object-fit   :     cover;
   border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.service-detail-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.service-detail-content h2 {
    font-size: 2.3rem;
   color: #1a3a52;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.service-detail-content p	{
         font-size: 1.05rem;
         color: #555;
   line-height: 1.8;
	 margin-bottom: 2rem;
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap:        1.5rem;
}

.benefit-item {
  background: linear-gradient(135deg, rgba(44, 82, 130, 0.05) 0%, rgba(42, 82, 130, 0.02) 100%);
    padding    :  1.5rem;
   border-radius   :      8px;
       border-left: 4px solid #2c5282;
    transition: all 0.3s ease;
}

.benefit-item:hover {
	  background: linear-gradient(135deg, rgba(44, 82, 130, 0.1) 0%, rgba(42, 82, 130, 0.05) 100%);
  transform: translateX(5px);
	}

.benefit-title {
  display: block;
  margin-bottom: 0.5rem;
  color: #1a3a52;
               font-size     :     1rem;
    font-weight: 600;
}

.benefit-item p {
   font-size     :      0.9rem;
  color: #666;
    line-height: 1.6;
}

.pricing-section {
  background: #f8f9fa;
  padding: 4rem 2rem;
   text-align:     center;
}

.pricing-section h2
{
    font-size: 2.8rem;
  color: #1a3a52;
   margin-bottom: 0.5rem;
    font-weight  :       700;
}

.pricing-section > p {
   font-size:     1.1rem;
	color: #666;
  margin-bottom: 3rem;
}

.pricing-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
   max-width: 1200px;
    margin: 0 auto;
}


.pricing-card {
     background: white;
  padding: 2.5rem 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  position: relative;
     }

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
	border:    2px solid #2c5282;
  background: linear-gradient(135deg, rgba(44, 82, 130, 0.03) 0%, rgba(42, 82, 130, 0.01) 100%);
  transform: scale(1.05);
}

.featured-badge {
                    position :    absolute;
    top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2c5282 0%, #1a3a52 100%);
   color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
    font-size   : 0.85rem;
        font-weight: 600;
}  

.pricing-card h3 {
   font-size: 1.6rem;

	    color: #1a3a52;

	   margin-bottom    :2rem;

	   font-weight    :700;

	    margin-top: 1rem;
}

.pricing-feature {
     display:        flex;
               justify-content: space-between;
   align-items: center;
   padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
	}

.pricing-feature:last-of-type {
	 border-bottom:  none;
          padding-bottom  : 1.5rem;
	margin-bottom: 1.5rem;
}

.feature-name {
  font-weight: 600;
   color:    #1a3a52;
}

.feature-duration {
		color: #888;
    font-size: 0.9rem; 

}

.pricing-button {
  width: 100%;
  padding: 0.9rem;
  background: #f0f0f0;
  color:#1a3a52;
  border: 2px solid #e0e0e0;
    border-radius: 8px;
   font-size     :        1rem;
               font-weight: 600;
	cursor: pointer;
   transition :      all 0.3s ease;
}

.pricing-button:hover {
   background     :  #e0e0e0;
	border-color: #2c5282; 

}

.pricing-button.featured-button

{
  background: linear-gradient(135deg, #2c5282 0%, #1a3a52 100%);
   color: white;
  border :  none;
}

.pricing-button.featured-button:hover {
  transform: translateY(-2px);

	  box-shadow: 0 6px 18px rgba(42, 82, 130, 0.3);
}

.faq-section {
    padding: 4rem 2rem;
        background: white;
	
}

.faq-section h2	{
    text-align :     center; 
	    font-size: 2.8rem; 
	   color: #1a3a52; 
	 margin-bottom: 3rem; 
	  font-weight: 700;
}

.faq-container {
  margin: 0 auto;
   max-width: 800px;
}

.faq-item {
   margin-bottom: 1rem;
	 border: 1px solid #e0e0e0;
   border-radius: 8px;
   overflow     :    hidden;
        transition: all 0.3s ease;
}

.faq-item:hover {
           border-color: #2c5282;
  box-shadow: 0 4px 12px rgba(44, 82, 130, 0.1);
}

.faq-question {
   width: 100%;
  padding: 1.5rem;
   background: #f8f9fa;
   border :        none;
	cursor: pointer;
                    display    : flex;
  justify-content: space-between;
   align-items: center;
   font-size: 1.05rem;
    color :       #1a3a52;
          font-weight: 600;
   transition: all 0.3s ease;
   text-align: left;
}

.faq-question:hover {
    background: #f0f2f5;
}

.faq-question span	{
  flex  :      1;

}

.faq-icon {
                    width   :    20px;
  height: 20px;
   margin-left:  1rem;
  filter: brightness(0.2);
   transition    : transform 0.3s ease;
}

.faq-item.active .faq-icon {
     transform: rotate(180deg);}

.faq-answer {
  background: white;
  padding    :     0 1.5rem;
   max-height: 0;
  overflow   :      hidden;
    transition     :all 0.3s ease;
}

.faq-item.active .faq-answer
	{
  padding:     1.5rem; 
	       max-height     :   500px;
}

.faq-answer p {
 color: #555;
   line-height  :       1.8;
   font-size: 0.95rem;
}

.thankyou-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 2rem 4rem;
  min-height: 600px;
}

.thankyou-content {
    max-width: 700px;
   margin: 0 auto;
    background: white;
    padding: 3rem;
	border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center; 

}

.thankyou-icon {
      display: flex;
    justify-content: center;
  margin-bottom: 2rem;
}

.thankyou-icon img {
   width: 80px;
	height: 80px;
  filter: brightness(0.2) sepia(100%) hue-rotate(75deg);
}

.thankyou-content h1 {
   font-size: 2.8rem;
   color: #1a3a52;
   margin-bottom: 1rem;
   font-weight: 700; 

}

.thankyou-message {
    font-size: 1.15rem;
	color: #555;
  line-height: 1.8;
    margin-bottom: 2.5rem;
}

.thankyou-info {
    background: #f8f9fa;

    padding    :2rem;

     border-radius    :      8px;

   margin-bottom: 2rem;

  text-align: left;
}

.thankyou-info h2 {
    font-size: 1.5rem;
    color: #1a3a52;
       margin-bottom: 1.5rem;
}

.info-list {
       list-style: none;

      padding:      0;
}

.info-list li
{
	  padding: 0.7rem 0;
    padding-left     :2rem;
  color: #555;
   position: relative;
    font-size: 0.95rem;
     }

.info-list li:before {
  content: '✓';
   position: absolute;
  left: 0;
 color: #2c5282;
  font-weight   :        bold;
    font-size: 1.2rem;
}

.thankyou-cta {
    margin-bottom: 2rem;
}

.thankyou-cta h2 {
   font-size: 1.3rem;
  color: #1a3a52;
   margin-bottom: 1rem;
}

.cta-buttons {
      display: flex;
   gap: 1rem;
  justify-content: center;
   flex-wrap: wrap;
}

.cta-link {
  padding: 0.8rem 2rem;
    border-radius: 8px;
  text-decoration: none;
	font-weight: 600;
    transition: all 0.3s ease;
  display: inline-block;
}

.cta-link.primary {
  background: linear-gradient(135deg, #2c5282 0%, #1a3a52 100%);
  color: white;
}

.cta-link.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(42, 82, 130, 0.3);
}

.cta-link.secondary {


   background    :  #f0f0f0;
    color: #1a3a52;
    border: 2px solid #2c5282;


	}

.cta-link.secondary:hover {
   background: #e8e8e8;
}

.thankyou-contact {
  background: linear-gradient(135deg, rgba(44, 82, 130, 0.1) 0%, rgba(42, 82, 130, 0.05) 100%);
    padding: 2rem;
	border-radius: 8px;
    border-left  :4px solid #2c5282;
	text-align: center;
	}

.thankyou-contact h2 {
    font-size: 1.3rem;
    color: #1a3a52;
   margin-bottom: 1rem;
}

.thankyou-contact p     {
  color   :      #555;
  margin-bottom     :        0.5rem;
}

.contact-phone {

	    color: #2c5282;
    font-size: 1.2rem;

}  

.contact-hours


{
   color: #888;
   font-size: 0.9rem;
}

.company-info {
  background: white;
   padding     :      4rem 2rem;
}

.company-info h2 {
    text-align: center;
    font-size: 2.5rem;
  color  :#1a3a52;
          margin-bottom: 3rem;
    font-weight: 700;
}

.company-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  max-width: 1000px;
    margin: 0 auto;
}

.benefit-card     {


    background: #f8f9fa;
  padding: 2rem;
    border-radius     : 12px;
  text-align: center;
   transition   :  all 0.3s ease;}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(44, 82, 130, 0.15);
  background: white;
}

.benefit-number {

	  display    :  block;
  font-size: 2.8rem;
    color: #2c5282;
  font-weight: 700;
	 margin-bottom   :   0.5rem;
	}

.benefit-card p {
            color: #666;
    font-size: 0.95rem;
   line-height: 1.6;}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-detail-item,
    .service-detail-item.reversed-item {
        grid-template-columns: 1fr;
    }

    .service-detail-image {
        height: 280px;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .service-benefits {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-link {
        width: 100%;
        text-align: center;
    }

    .thankyou-content {
        padding: 2rem 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .company-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }

    .service-detail-content h2 {
        font-size: 1.4rem;
    }

    .pricing-section h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .company-benefits {
        grid-template-columns: 1fr;
    }

    .benefit-number {
        font-size: 2rem;
    }
}.policy-section 
 {

    padding: 5rem 2rem 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: calc(100vh - 300px);
     }

.policy-container
	{
    max-width: 850px;
   margin: 0 auto;
   text-align: left;
    background: white;
   padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
   font-size: 2.8rem;
    color:   #1a3a52;
   margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.policy-container h2 {
   font-size :       1.6rem;
     color: #1a3a52;
	 margin-top: 2rem;
    margin-bottom: 1rem;
  font-weight: 700;
	line-height: 1.3;
}

.policy-container p {
   color: #555; 
	     margin-bottom: 1.5rem; 
	  line-height: 1.8; 
	   font-size: 1.05rem;
}

.policy-container p:last-child {
   margin-bottom: 0; 

}

.policy-container h2:first-of-type    {
   margin-top: 0;
}

.policy-container h2 {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.policy-container a {
  color :        #2c5282;
  text-decoration: none;
    transition   :      all 0.3s ease;
} 

.policy-container a:hover {
   color: #1a3a52;
     text-decoration: underline;
}@media (max-width: 768px) {
    .policy-section {
        padding: 3rem 1rem 2rem;
    }

    .policy-container {
        padding: 2rem 1.5rem;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 2rem 1rem 1rem;
    }

    .policy-container {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }
}

@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policy-container {
        box-shadow: none;
        background: white;
    }

    .policy-container h2 {
        page-break-after: avoid;
    }

    .policy-container p {
        orphans: 3;
        widows: 3;
    }
}