* {
     margin: 0;
  padding: 0;
    box-sizing: border-box;
}

html {

	  scroll-behavior: smooth;}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
      color: #2c3e50;
  background-color: #ffffff;
}

.section-container {
  max-width: 1200px;
    margin: 0 auto;
  padding    :  0 20px;
}

.navigation {
        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;
  padding : 1rem 20px;
	display: flex;
   justify-content: space-between;
         align-items: center;
}

.nav-brand {
   display: flex;
   align-items: center; 
	
}

.brand-logo {
  max-height: 45px;
  width     :       auto;
} 

.nav-menu {
    display: flex;
  list-style: none;
  gap: 2rem;
	}

.nav-menu a {
   text-decoration: none;
   color: #2c3e50;
	 font-weight: 500;
    transition: color 0.3s ease;
   font-size: 0.95rem;
}  

.nav-menu a:hover {
    color: #3498db;
}

.burger-menu {
 display: none;
		flex-direction: column;
	    background: none;
	               border: none;
		cursor: pointer;
		gap: 5px; 

}

.burger-line  
  {
  width: 25px;
    height: 3px;
   background-color: #2c3e50;
    transition: all 0.3s ease;
   border-radius:       2px;
}

.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(7px, -7px);
}

.hero-section   {
	display: grid;
  grid-template-columns: 1fr 1fr;
 gap: 3rem;
  align-items     : center;
    padding: 4rem 0;
   max-width  :        1200px;
    margin: 0 auto;
   padding-left: 20px;
	 padding-right: 20px;
}  

.hero-content h1 
 {
  font-size    :     2.8rem;
  line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
	 font-weight  : 700;
}

.hero-content p {

		font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
      line-height: 1.8;
	}

.hero-image img  
  {
   width: 100%;
  height: auto;
   border-radius    : 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cta-button {
   display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color  :  white;
  padding   :0.85rem 2rem;
   border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
      font-size: 0.95rem;
}

.cta-button:hover		{
  transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}


.services-intro {
   padding: 5rem 0; 
    background-color: #f8f9fa;
}

.services-intro h2
{
  font-weight: 700;
       font-size: 2.2rem;
               margin-bottom: 3rem;
    text-align: center;
	color  :  #1a252f;
}

.services-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 2rem;
}

.service-card    {

	  background: white;
    border-radius: 10px;
	overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
	  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);}

.service-card img {
       width: 100%;
   height: 200px;
  object-fit     :        cover;


}

.service-card h3 {
    color: #2c3e50;
   font-weight: 600;
    padding  :        1.5rem 1.5rem 0.5rem;
  font-size: 1.3rem;
}

.service-card p		{


    padding: 0 1.5rem 1.5rem;
	 color: #666;
	 font-size: 0.95rem;
   line-height: 1.7;


}

.offerings {


  padding: 5rem 0;
   background-color: #ffffff;
}

.offerings h2     {

  font-size: 2.2rem;
   margin-bottom: 3rem;
	text-align: center;
  color: #1a252f;
    font-weight :        700;
     }

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 2rem;
}

.offering-item {
  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
  padding: 2rem;
	 border-radius: 10px;
    border-left: 4px solid #3498db;
   transition  :  all 0.3s ease;
}

.offering-item:hover     {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.offering-title {
   font-size:     1.2rem;
   font-weight: 600;
   color:   #2c3e50;
    margin-bottom: 0.8rem;
} 

.offering-item p {
   color: #555;
	font-size: 0.95rem;
   line-height:    1.7;
}

.cta-section
	{
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	    padding     :       4rem 0;
		text-align: center;
	   color: white;
}

.cta-section h2 {
	 font-size: 2rem;
    margin-bottom: 1rem;
   font-weight: 700;


}

.cta-section p {
    font-size: 1.1rem;
  margin-bottom: 2rem;
        opacity   :0.95;
}

.cta-button-large {
    display: inline-block;
      background: white;
  color: #3498db;
	 padding: 1rem 2.5rem;
   border-radius: 6px;
    text-decoration :     none;
    font-weight  :       600;
   transition: all 0.3s ease;
   font-size: 0.95rem;
}

.cta-button-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-section


{
	padding: 5rem 0; 
   background-color: #f8f9fa;
     }

.contact-section h2 {
     font-size: 2.2rem;
       margin-bottom: 3rem;
       text-align: center;
       color: #1a252f;
         font-weight: 700;
}

.contact-wrapper {
   max-width     :  600px;
   margin: 0 auto;
}

.contact-form {
      background     :        white;
    padding     :     2.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {

	   margin-bottom: 1.8rem;
     }

.form-group label {
  display  :   block;
	  margin-bottom :  0.6rem;
	    font-weight: 600;
		color: #2c3e50;
	   font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding  :   0.85rem;
   border: 2px solid #ecf0f1;
    border-radius: 6px;
   font-size: 0.95rem;
   font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline   :   none; 
  border-color: #3498db; 
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}  

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
         color: white;
                    padding  :        0.9rem;
  border: none;
	 border-radius:      6px;
  font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
   transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.footer    {
   background-color: #1a252f;
  color: white;
   padding: 3rem 0 1rem;
   margin-top  :   4rem;
}

.footer-content {
  max-width  :       1200px; 
	  margin: 0 auto; 
		 padding: 0 20px; 
		display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
	  gap: 2rem; 
	  margin-bottom: 2rem;
}

.footer-section h3 {
   margin-bottom: 1rem;
  font-weight    :     600;
         font-size     :       1rem;
}

.footer-logo {
   max-height: 40px;
    width    :     auto;
  margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.9rem;
  line-height: 1.8;
  opacity     :     0.9;
}

.footer-links

{
   list-style: none;
}

.footer-links li{
 margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ecf0f1; 
	   text-decoration    :    none; 
	    transition: color 0.3s ease; 
	    font-size:0.9rem;
}

.footer-links a:hover {
       color: #3498db;}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
   opacity :  0.8;
  max-width: 1200px;
  margin: 0 auto;
    padding-left: 20px;
	padding-right: 20px;
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        flex-direction: column;
        background-color: white;
        gap: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #ecf0f1;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid #ecf0f1;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 20px;
    }

    .burger-menu {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .services-intro h2,
    .offerings h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .cta-button,
    .cta-button-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .services-intro h2,
    .offerings h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }
}

.services-hero {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="white" opacity="0.05"/><circle cx="80" cy="80" r="20" fill="white" opacity="0.03"/><circle cx="90" cy="20" r="10" fill="white" opacity="0.04"/></svg>');
    opacity: 0.1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    animation: fadeInDown 0.8s ease;
}

.services-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.breadcrumb-section {
    padding: 2rem 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ecf0f1;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #2980b9;
}

.breadcrumb-separator {
    margin: 0 0.8rem;
    color: #bdc3c7;
}

.services-detailed {
    padding: 5rem 0;
    background-color: #ffffff;
}

.services-detailed h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a252f;
    font-weight: 700;
}

.service-detailed-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-detailed-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-detailed-item.alt {
    background-color: #ffffff;
    border: 1px solid #ecf0f1;
}

.service-detail-image {
    overflow: hidden;
    border-radius: 10px;
}

.service-detail-image.order-2 {
    order: 2;
}

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detailed-item:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-detail-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-detail-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    color: #666;
    position: relative;
    font-size: 0.95rem;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3498db;
    padding-top: 1rem;
    border-top: 2px solid #ecf0f1;
}

.process-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.process-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a252f;
    font-weight: 700;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.process-step h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: #666;
    line-height: 1.7;
    font-size: 0.9rem;
}

.pricing-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.pricing-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.pricing-intro {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #3498db;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(41, 128, 185, 0.05) 100%);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-details {
    text-align: left;
}

.pricing-details p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.pricing-details ul {
    list-style: none;
    text-align: left;
}

.pricing-details li {
    padding: 0.6rem 0;
    color: #555;
    font-size: 0.9rem;
    border-bottom: 1px solid #ecf0f1;
}

.pricing-details li:last-child {
    border-bottom: none;
}

.faq-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
    font-weight: 700;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-question {
    font-size: 1.1rem;
    color: #2c3e50;
    padding: 1.5rem;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question:after {
    content: "+";
    font-size: 1.5rem;
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.final-cta {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thankyou-section {
    padding: 5rem 0;
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
}

.thankyou-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    animation: slideUp 0.6s ease;
}

.thankyou-icon {
    color: #2ecc71;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thankyou-icon svg {
    animation: popIn 0.6s ease;
}

.thankyou-wrapper h1 {
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thankyou-main {
    font-size: 1.2rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 2rem;
}

.thankyou-message {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: left;
}

.thankyou-message p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.thankyou-message p:last-child {
    margin-bottom: 0;
}

.thankyou-next-steps {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.05) 100%);
    border-left: 4px solid #3498db;
    border-radius: 8px;
}

.thankyou-next-steps h2 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.thankyou-next-steps ul {
    list-style: none;
    padding: 0;
}

.thankyou-next-steps li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    color: #555;
    position: relative;
    font-size: 0.95rem;
}

.thankyou-next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.thankyou-contact {
    margin-bottom: 2rem;
}

.thankyou-contact p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-phone {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #3498db !important;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 250px;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detailed-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-detail-image.order-2 {
        order: unset;
    }

    .service-detail-image img {
        height: 250px;
    }

    .service-detail-content h3 {
        font-size: 1.5rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-wrapper {
        padding: 2rem;
        margin: 1rem;
    }

    .thankyou-wrapper h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detail-content h3 {
        font-size: 1.2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-wrapper {
        padding: 1.5rem;
    }

    .thankyou-wrapper h1 {
        font-size: 1.5rem;
    }

    .thankyou-main {
        font-size: 1rem;
    }

    .final-cta h2 {
        font-size: 1.5rem;
    }
}.policy-section {
    padding     :     4rem 0;
   background-color: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.policy-container {
	max-width: 900px;
  margin: 0 auto;
  background-color: white;
               padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {


         font-size: 2.5rem;
    color     :  #1a252f;
                    margin-bottom   :   2rem;
   font-weight: 700;
  border-bottom: 3px solid #3498db;
  padding-bottom:        1rem;


}

.policy-container h2 {

   font-size :        1.6rem;
     color: #2c3e50;
   margin-top: 2.5rem;
    margin-bottom: 1.2rem;
  font-weight: 600;

}

.policy-container h3 {
	   font-size: 1.2rem;
            color: #34495e;
            margin-top: 1.5rem;
      margin-bottom: 0.8rem;
   	font-weight: 600;


}

.policy-container p {
  color: #555;
    margin-bottom: 1.2rem;
  line-height: 1.8;
      font-size    :    0.95rem;
   text-align: justify;
} 

.policy-container ul {
     margin-bottom: 1.2rem;
    margin-left: 2rem;
	
}

.policy-container li {

   color: #555;
   margin-bottom:       0.8rem;
  line-height     :1.7;
  font-size: 0.95rem;

}



.policy-container strong {
    color: #2c3e50;
  font-weight  :        600;
}

.policy-container h2 {
  transition: all 0.3s ease;
}

.policy-container h2:hover {

	         color: #3498db;


}@media (max-width: 768px) {
    .policy-section {
        padding: 2rem 0;
    }

    .policy-container {
        padding: 2rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policy-container h3 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .policy-container li {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 1rem 0;
    }

    .policy-container {
        padding: 1.5rem;
        border-radius: 6px;
    }

    .policy-container h1 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container h3 {
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 0.6rem;
    }

    .policy-container p {
        font-size: 0.85rem;
        margin-bottom: 0.9rem;
    }

    .policy-container li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .policy-container ul {
        margin-left: 1.5rem;
    }
}

@media print {
    .navigation,
    .footer {
        display: none;
    }

    .policy-container {
        box-shadow: none;
        padding: 0;
    }

    .policy-container h1,
    .policy-container h2 {
        page-break-after: avoid;
    }

    .policy-container p {
        orphans: 3;
        widows: 3;
    }
}