* {


   margin: 0;
	    padding: 0;
	    box-sizing: border-box;}

html {

	  scroll-behavior: smooth;
     }

body		{

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
    background-color: #f8f9fa;
   line-height: 1.6;
  letter-spacing: 0.3px;
	}

.section-container {
   max-width: 1200px;
  margin: 0 auto;
  padding  :0 20px;
}

.navbar {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding   :1rem 0;
    position: sticky;
    top: 0;
  z-index    :    1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);}

.navbar-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
 display: flex;
   justify-content: space-between;
    align-items: center;
}

.navbar-logo-section {
			 display: flex;
   align-items: center;


}

.navbar-logo {
	height :        45px;
  filter: brightness(0) invert(1);
}

.hamburger-menu

{
  display: none;
    flex-direction: column;
  background: none;
	border: none;
  cursor: pointer;
    padding: 5px;
}


.hamburger-menu span {
    width: 25px;
                    height: 3px;
  background-color: #ecf0f1;
	margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -7px);
	}

.nav-menu {
	          display: flex;

    list-style: none;

   gap: 2rem;}

.nav-item {
   position   :  relative;
}

.nav-link  
  {
    display: block;
      font-weight: 500;
  transition: color 0.3s ease;
    text-decoration: none;
    color: #ecf0f1;
  padding: 0.5rem 0;
}

.nav-link:hover {
   color: #3498db;
}@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(44, 62, 80, 0.98);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-item {
        padding: 0;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid rgba(236, 240, 241, 0.1);
    }
}.hero-section {

  display   :        grid;
    grid-template-columns :    1fr 1fr;
  gap: 3rem;
	align-items   :    center;
  padding :4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);


}


.hero-content {
   padding: 0 20px;
}

.hero-content h1  
  {
   font-size: 2.8rem;
          font-weight: 700;
  margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
} 

.hero-subtitle {
    font-size: 1.2rem;
    color: #5d6d7b;
	margin-bottom: 2rem;
	 line-height: 1.8;
}

.cta-button {
    display: inline-block; 
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); 
    color: white; 
    padding: 1rem 2.5rem; 
  border-radius: 50px; 
  text-decoration: none; 
   font-weight: 600; 
  transition: all 0.3s ease; 
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3); 
	border: none; 
        cursor: pointer; 
	font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);
  background: linear-gradient(135deg, #2980b9 0%, #2471a3 100%);
}

.hero-image {
       padding:   0 20px;
}

.hero-img {
     width: 100%;
	 height: auto;
   border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);


}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}.benefits-section {
   padding: 5rem 0;
    background: white;}

.benefits-section h2 {
      font-size: 2.2rem;
                    text-align: center;
    margin-bottom: 3rem;
   color: #2c3e50;
   font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
}

.benefit-card  
  {
  -moz-border-radius: 12px;
   background: #f8f9fa;
   -webkit-border-radius: 12px;
  padding: 2.5rem;
  border-radius: 12px;
  -moz-transition   :all 0.3s ease;
	-webkit-transition: all 0.3s ease;
    text-align: center;
          transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

.benefit-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);

  border-color: #3498db;
}

.benefit-icon {
    width    :       70px;
    height: 70px;
    margin    : 0 auto 1.5rem;
    display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
      border-radius    : 50%;
                    color :      white;
}

.benefit-icon svg {
   color: white;
}

.benefit-card h3 {
   font-size: 1.4rem;

   margin-bottom: 1rem;

    color: #2c3e50;
}

.benefit-card p {
  color: #5d6d7b;
  line-height: 1.8;
}@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}.offerings-section


{
  padding: 5rem 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
}  

.offerings-section h2 {
  font-size: 2.2rem;
  text-align  :      center;
   margin-bottom: 3rem;
    color: #2c3e50;
  font-weight: 700;
}

.offerings-grid {
    display    : grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.offering-card {


    background:        white;
    border-radius     :      12px;
	overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
     display: flex;
	flex-direction: column; 
	
     }

.offering-card:hover 
 {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
}

.offering-image {
	width: 100%;
    height: 250px;
   object-fit: cover;
    transition: transform 0.3s ease;
}

.offering-card:hover .offering-image  
  {
     transform: scale(1.05);
} 

.offering-content {
   padding: 1.5rem;
	 flex-grow: 1;
    display :flex;
	flex-direction: column;
}

.offering-card h3 {
  font-size: 1.5rem;
	          margin-bottom: 1rem;
	   color: #2c3e50;
}

.offering-card p {
	  color: #5d6d7b;
  margin-bottom: 1.5rem;
    flex-grow: 1;
	line-height: 1.8;

}

.price-tag {
         display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
                    color: white;
   padding: 0.5rem 1.2rem;
    border-radius: 25px;
  font-weight: 600;
    font-size: 0.95rem;
          align-self    :  flex-start;}@media (max-width: 768px) {
    .offerings-grid {
        grid-template-columns: 1fr;
    }
}.cta-section 
 {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  text-align: center;
	color  :white;
}


.cta-container {
	max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.4rem;
    margin-bottom: 1rem;
    font-weight: 700;}

.cta-section p {


  font-size: 1.2rem;
  margin-bottom: 2rem;
   opacity     :        0.95;
   line-height: 1.8;
}

.cta-button-large {
   display    :      inline-block;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color:        white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
  text-decoration  :none;
  font-weight    :     700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    font-size: 1.1rem;
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(231, 76, 60, 0.6); 

}

.contact-section {
			padding: 5rem 0;
  background: white;
}

.contact-section h2 {
               font-size: 2.2rem;
    text-align: center;
  margin-bottom: 3rem;
    color: #2c3e50;
   font-weight :       700;
}

.contact-wrapper	{
      display: grid;
    grid-template-columns     :      1.5fr 1fr;
  gap   :      3rem;
  max-width: 1200px;
	margin: 0 auto;
  padding: 0 20px;
}

.contact-form {


               background   :   #f8f9fa;
   padding: 2.5rem;
	 border-radius: 12px;
  border:  1px solid #ecf0f1;
	}  

.form-group {
  margin-bottom: 1.5rem;
}

.contact-form label    {
   display: block;
  margin-bottom    : 0.5rem;
	 font-weight: 600;
    color: #2c3e50;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
   width: 100%;
  padding: 0.8rem;
   border: 1px solid #bdc3c7;
	border-radius: 6px;
    font-family: inherit;
  font-size: 1rem;
    transition: border-color 0.3s ease;
                    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; 
    border-color: #3498db; 
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
     }

.form-submit {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color   :   white;
	padding   : 1rem 2rem;
  border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
   cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}


.contact-info {
    flex-direction: column;
   display: flex;
   gap: 2rem; 
	
}

.info-block{
    background :      #f8f9fa;
                    padding :    2rem;
         border-radius: 12px;
	 border: 1px solid #ecf0f1;
}

.info-block h3 {
   font-size     :     1.3rem;
  margin-bottom: 1.5rem;
    color: #2c3e50;
  font-weight    :  700;
}

.info-item {
    color: #5d6d7b;
    margin-bottom: 1.5rem;
	line-height: 1.8;
}

.info-item strong {
   font-weight: 700;
   color: #2c3e50;
}

.info-item:last-child {
    margin-bottom: 0;
}@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}.footer {

	  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  color:#ecf0f1;
      padding: 3rem 0 1rem;}

.footer-container  {
  max-width: 1200px;
   margin: 0 auto;
  padding  :      0 20px;
   display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section {
   display: flex;
    flex-direction: column;
}

.footer-logo {
  height: 50px;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-section h4 {
	 font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
               color: white;

}

.footer-links    {
	   list-style: none;
	 display: flex;
	flex-direction: column;
  gap: 0.8rem;

}

.footer-links a {
	   -o-transition     :       color 0.3s ease;
  color: #bdc3c7;
  -moz-transition: color 0.3s ease;
   text-decoration:     none;
  transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;


}

.footer-links a:hover {

    color: #3498db; 
	
	}

.footer-text {
   color: #bdc3c7;
	line-height: 1.8;
    font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(236, 240, 241, 0.1);
   padding-top: 2rem;
   text-align  :center;
  color   :        #95a5a6;
   max-width: 1200px;
   margin: 0 auto;
       padding: 2rem 20px 0;
}@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}.text-center {

   text-align: center;


}

.mt-3 {
                    margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 5rem 2rem;
  text-align   :  center;
}

.services-hero-content h1 {
	font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-hero-content p {

  margin :0 auto;

		max-width: 600px;

	    font-size: 1.2rem;

	  opacity: 0.95;



}

.services-overview {
	padding  :5rem 0;
  background: white;
}

.services-overview h2 {
   font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
	 color :      #2c3e50;
    font-weight: 700;
}

.overview-grid	{


    display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
	}

.overview-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   padding     :2rem;
  border-radius: 12px;
   text-align: center;
    border: 1px solid #ecf0f1;
  transition: all 0.3s ease;
    position: relative;
}

.overview-card:hover {
	  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);
  border-color: #3498db;
}

.overview-number {
    font-size: 3rem;
  font-weight: 700;
  color: #3498db;
    margin-bottom: 1rem;
  opacity: 0.3;
}

.overview-card h3


{
	  font-size: 1.3rem;
   margin-bottom: 0.8rem;
	 color:      #2c3e50;
	font-weight: 700;}  

.overview-card p {
   color: #5d6d7b;
     font-size     :       0.95rem;
}@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }
}.service-detail {
  padding: 5rem 0;
  background: white;
}

.service-detail-alt {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
}

.service-content-wrapper    {

	  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items:    center;


}

.service-content-reverse {
    direction: rtl;
	
}

.service-content-reverse > * {
    direction: ltr;
}

.service-text h2 {
    font-size: 2.2rem;
   margin-bottom:1.5rem;
   color: #2c3e50;
  font-weight: 700;
}

.service-text p {
         color: #5d6d7b;
  margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-text h3 {
    font-size: 1.3rem;
  margin: 2rem 0 1rem;
  color: #2c3e50;
   font-weight: 700;
}

.service-list {
  list-style     :       none;
       margin-bottom: 2rem;
}

.service-list li {
   padding-left: 2rem;
	position: relative;
   color: #5d6d7b;
        margin-bottom: 0.8rem;
  line-height: 1.6;
}

.service-list li:before {
  content: "✓";
    position: absolute;
   left: 0;
  color: #27ae60;
	font-weight: 700;
   font-size: 1.2rem;
     }

.service-image {
    overflow: hidden;
  -moz-border-radius: 15px;
    border-radius: 15px;
}

.service-img {
  width: 100%;
  height: auto;
          border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.service-detail:hover .service-img
{
  transform: scale(1.05);
}

.service-pricing {
        display: flex;
	gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #ecf0f1;
}

.price {
    font-size: 1.8rem;
          font-weight: 700;
   color     :   #3498db;
}

.duration {
    color: #5d6d7b;
   align-self  : center;
   font-size   :     0.95rem;
}  @media (max-width: 768px) {
    .service-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-content-reverse {
        direction: ltr;
    }

    .service-text h2 {
        font-size: 1.8rem;
    }

    .service-pricing {
        flex-direction: column;
    }
}.services-comparison {
   padding: 5rem 0;
	background    :        white;
}

.services-comparison h2 {

	  font-weight: 700;
  color: #2c3e50;
    font-size: 2.2rem;
   margin-bottom: 3rem;
  text-align: center;


}

.comparison-table	{
    overflow-x: auto;
}

table {
		width: 100%;
  border-collapse  :       collapse;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
	 overflow: hidden;
}

table thead {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
}

table th {
  padding  :     1.5rem;
  text-align     :        left;
    font-weight: 700;
  border-bottom     :      2px solid #ecf0f1;
}

table td {
    padding: 1.5rem;
   border-bottom: 1px solid #ecf0f1;
  color: #5d6d7b;
}

table tbody tr:hover  
  {

	   background: #f8f9fa;
}

table tbody tr:last-child td


{
	 border-bottom :     none;
}@media (max-width: 768px) {
    table {
        font-size: 0.9rem;
    }

    table th,
    table td {
        padding: 1rem;
    }
}.faq-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
}

.faq-section h2 {

   font-size: 2.2rem;
    text-align: center;
	margin-bottom :     3rem;
  color: #2c3e50;
  font-weight: 700;


}

.faq-grid {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
    max-width  :1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.faq-item {
  background: white;
               padding: 2rem;
   border-radius: 12px;
    border-left     :  4px solid #3498db;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
  transform: translateY(-4px);
}

.faq-question{
	font-size     :  1.2rem;
  margin-bottom: 1rem;
  color  :  #2c3e50;
  font-weight: 700;
  cursor  :   pointer;
}

.faq-item p {
    color   :    #5d6d7b;

	    line-height: 1.8;

	    margin: 0;
}@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}.final-cta {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    text-align: center;
   color: white;


}

.final-cta-content {
   max-width: 800px;
    margin: 0 auto;
}


.final-cta-content h2 {
   font-weight  :       700;
	  font-size: 2.4rem;
		 margin-bottom     :       1rem;
}

.final-cta-content p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
    opacity: 0.95;
   line-height: 1.8;

}

.thankyou-section {

	   padding: 5rem 2rem;
  background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
	 min-height: 80vh;
  display   :        flex;
   align-items: center;
     }

.thankyou-container {
    max-width: 700px;
	margin: 0 auto;
  text-align: center;
  background: white;
       padding: 3rem;
   border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-icon 
 {
    display: flex;
    justify-content: center;
    margin-bottom:       2rem;
}

.success-icon svg {
   color  :      #27ae60;
  animation    : scaleIn 0.6s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {
  font-size     :  2.8rem;
	color  :  #27ae60;
  margin-bottom: 1rem;
   font-weight :        700;
}

.thankyou-main     {
   font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.thankyou-text

{
   font-size: 1.05rem;
   color: #5d6d7b;
                    margin-bottom: 2.5rem;
   line-height     :   1.8;
}

.next-steps
	{
  background: #f8f9fa;
	padding: 2rem;
  border-radius: 12px;
    margin: 2.5rem 0;
         text-align: left;


}

.next-steps h2 {
	font-size: 1.5rem;
   color: #2c3e50;
   margin-bottom: 1.5rem;
   text-align: center;
   font-weight: 700;
}

.steps-list {


    display   :     flex;
    flex-direction: column;
   gap: 1.5rem;
}

.step {
   display: flex;
     gap: 1.5rem;
       align-items: flex-start;
}

.step-number {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
       width    :       40px;
   height     :      40px;
    border-radius   : 50%;
    display: flex;
  align-items: center;
	justify-content: center;
   font-weight: 700;
   flex-shrink    : 0;
}



.step p {
  color: #5d6d7b;
               margin: 0;
     line-height: 1.6;
}

.thankyou-actions {
	   display: flex;
    gap:  1.5rem;
	margin: 2.5rem 0;
    flex-direction: column;
} 

.action-button {
    padding: 1rem 2rem;
      border-radius  :50px;
     text-decoration: none;
       font-weight   :     600;
     transition: all 0.3s ease;
       display: inline-block;
   	 font-size: 1rem;
     }

.action-button.primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color   :        white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);

}

.action-button.primary:hover {


  transform: translateY(-3px); 
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);
	}

.action-button.secondary {
  background: white;
    color: #3498db;
    border: 2px solid #3498db;

}

.action-button.secondary:hover {
	background: #f8f9fa;
}

.contact-reminder     {
   background  :  #e8f5e9;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
                    border-left     : 4px solid #27ae60;
}

.contact-reminder p {
  color: #2c3e50;
    margin: 0.5rem 0;
  font-size: 1rem;
}

.contact-reminder p:first-child {
  font-weight   :  700;
}

.contact-reminder p strong {
      color: #27ae60;
   font-weight: 700;}

.social-proof {
      padding: 4rem 0;
   background: white;
	}

.social-proof h2 {
    font-size: 2.2rem;
    text-align: center;
   margin-bottom: 3rem;
    color: #2c3e50;
  font-weight: 700;
}

.proof-grid {
      display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
    max-width: 1200px;
 margin :   0 auto;
   padding:  0 20px;
} 

.proof-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);

  padding   :     2.5rem;

  border-radius: 12px;

   text-align: center;

  border: 1px solid #ecf0f1;

    transition: all 0.3s ease;

}

.proof-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);
       border-color: #3498db;
}

.proof-number {
   margin-bottom: 0.8rem;
   font-weight: 700;
  color: #3498db;
   font-size: 2.8rem;
}

.proof-card p {
   color: #5d6d7b;
    font-size: 1.05rem;
  margin    :        0;
	
}@media (max-width: 1024px) {
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}@media (max-width: 768px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }
}.policySection {
  padding: 80px 2rem;
    background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.policyContainer {
   max-width: 900px;
       margin: 0 auto;
     text-align: left;
      background: white;
     padding: 3rem;
     border-radius: 12px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
   font-size: 2.8rem;
       color    :        #2c3e50;
   font-weight: 700;
    padding-bottom: 1rem;
	border-bottom: 3px solid #3498db;
    margin-bottom     : 2rem;
}

.policyContainer h2 {
   color: #34495e;
  margin-bottom: 1.2rem;
   margin-top: 2.5rem;
   font-size: 1.8rem;
  color: #2c3e50;
    font-weight: 700;
}

.policyContainer h2:first-of-type {
   margin-top   :      0;


}

.policyContainer p {
    color: #5d6d7b;
	 margin-bottom: 1.5rem;
    line-height    :    1.9;
       font-size   :       1.05rem;
  text-align: justify;
}

.policyContainer strong {
                    color: #2c3e50;
	 font-weight: 700;
}

.policyContainer a {
    transition: color 0.3s ease;
    font-weight: 500;
      text-decoration: none;
	color: #3498db;
}

.policyContainer a:hover {
		 color  :        #2980b9;

	   text-decoration: underline;
}@media (max-width: 1024px) {
    .policySection {
        padding: 70px 1rem;
    }

    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.4rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
        min-height: calc(100vh - 150px);
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 0.8rem;
    }

    .policyContainer {
        padding: 1.5rem;
        margin: 0 auto;
    }

    .policyContainer h1 {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.6rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
        margin-bottom: 1rem;
    }
}.policyContainer {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-left: 5px solid #3498db;


}

.policyContainer h1 {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   background-clip: text;
  color  :      #2c3e50;
}@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .policyContainer h1,
    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        orphans: 3;
        widows: 3;
    }
}