* {
    margin: 0;
     padding: 0;
   box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
   color: #2c3e50;
	 background-color: #ffffff; 

}

.section-container {
    max-width: 1200px;

	    margin: 0 auto;

	   padding: 0 20px;
}

.navbar-main {
  background: linear-gradient(135deg, #0f2c47 0%, #1a4d6d 100%);
	position: sticky;
   top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-container {

	    max-width: 1200px;
      margin: 0 auto;
   padding   :        15px 20px;
    display: flex;
   justify-content: space-between;
 align-items: center;
	}

.navbar-logo-section {
         flex: 0 0 auto;


}

.navbar-logo {
   height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
}

.navbar-menu {
  display: flex;
        gap: 40px;
     align-items: center;
}

.nav-link {
    color: #ffffff;
   text-decoration: none;
   font-weight:    500;
   font-size: 15px;
    transition: opacity 0.3s ease;
       position: relative;
}

.nav-link:hover {
   opacity: 0.8;
}

.nav-link::after {
  -moz-transition :  width 0.3s ease;
  content: '';
  -o-transition: width 0.3s ease;
  position: absolute;
    bottom: -5px;
   left: 0;
  -webkit-transition: width 0.3s ease;
   width     :  0;
  height: 2px;
         background-color: #4db8ff;
   transition    :    width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.burger-menu {


  display  :        none;
   flex-direction: column;
                    background    :     none;
    border: none;
   cursor: pointer;
  gap: 5px;
     }

.burger-menu span {
    width: 25px;
	height: 2.5px;
   background-color: #ffffff;
  border-radius    :      2px;
   transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2) {
        opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
  display   :      grid;
    grid-template-columns: 1fr 1fr;
         gap: 60px;
   align-items: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef6 100%);
  min-height: 600px; 

}

.hero-content h1 {
       font-size: 48px;
    font-weight: 700;
       color: #0f2c47;
  line-height: 1.2;
    margin-bottom: 25px;
	}

.hero-subtitle {
   font-size: 18px;
    color: #555555;
   margin-bottom: 35px;
               line-height: 1.7;
}

.hero-image img		{
   width: 100%;
	height: auto;
  border-radius   : 12px;
  box-shadow: 0 15px 40px rgba(15, 44, 71, 0.15);
}

.btn-primary {
   display: inline-block;
  background: linear-gradient(135deg, #0f88d4 0%, #0a6fb3 100%);
	color: #ffffff;
   padding: 14px 40px;
	 border-radius: 6px;
	 text-decoration: none;
    font-weight: 600;
   font-size: 15px;
   transition: all 0.3s ease;
   border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(15, 136, 212, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 136, 212, 0.4); 

}

.btn-large {
      padding: 16px 50px;
  font-size: 16px;
     }

.services-overview {
  padding: 80px 20px;
    background-color: #ffffff;
}

.services-overview h2 {
	font-size: 42px;
	font-weight: 700;
  color: #0f2c47;
   text-align: center;
   margin-bottom  :        20px;
}

.section-lead  {
          font-size: 17px;
	 color: #666666;
  text-align: center;
	 max-width: 600px;
  margin    :    0 auto 50px;
}

.services-grid {
  display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
		 gap: 35px;
}

.service-card {

    background: #f5f7fa;
    padding: 40px 30px;
        border-radius: 10px;
			text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e8eef6;
	}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 44, 71, 0.1);
        background-color  :   #ffffff;
}

.service-icon-box
	{
          margin-bottom: 25px;
   display    :    flex;
   justify-content: center;
    align-items: center;
		height: 70px;
}

.service-icon-box img {
       width: 60px;
   height: 60px;
    stroke: #0f88d4;
  filter: drop-shadow(0 2px 4px rgba(15, 136, 212, 0.2));
   transition: all 0.3s ease;
}

.service-card:hover .service-icon-box img {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(15, 136, 212, 0.3));
}

.service-card h3 {
    font-size     : 22px;
    font-weight: 700;
  margin-bottom: 15px;
  color: #0f2c47;
}

.service-card p {
   color: #666666;
   font-size: 15px;
    line-height :      1.8;
}

.highlight-section {
    padding: 80px 20px;
  background: linear-gradient(135deg, #0f2c47 0%, #1a4d6d 100%);
    color: #ffffff;
}

.highlight-grid {

	    display     :   grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.highlight-content h2 {
         font-size: 42px;
	font-weight: 700;
   color: #ffffff;
   margin-bottom: 30px;
}

.feature-list  
  {
   list-style: none;
}

.feature-list li {
  font-size: 16px;
    margin-bottom: 18px;
	padding-left: 25px;
    position: relative;
  line-height    :       1.7;
  color: #e8eef6;
}

.feature-list li:before {
  content: '';
  position: absolute;
   left: 0;
  top: 6px;
  width: 12px;
    height: 12px;
  background-color: #4db8ff;
   border-radius: 50%;
}

.highlight-image img {
    width     :  100%;
     height: auto;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.workshop-section {
   padding: 80px 20px;
  background-color: #f8f9fa;
}

.workshop-section h2  {
    font-size: 42px;
    font-weight: 700;
    color: #0f2c47;
   text-align: center;
  margin-bottom: 20px;
}

.workshop-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap   :       35px;
    margin-top: 50px;
     }

.workshop-card {
    background: #ffffff;
   border-radius     :   10px;
 overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition:   all 0.3s ease;
}

.workshop-card:hover {

  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(15, 44, 71, 0.15);


}

.workshop-card img {
   width : 100%;
        height: 220px;
   object-fit  :    cover;
    display:       block;
}

.workshop-info {
  padding: 30px;
}

.workshop-card h3 {
   font-size: 22px;
   font-weight: 700;
  color   :        #0f2c47;
  margin-bottom: 15px;
}



.workshop-card p {
       color: #666666; 
	        font-size: 15px; 
	               line-height: 1.7; 
	   margin-bottom: 15px;


}

.workshop-duration {
   display: inline-block;
   background: #0f88d4;
    color: #ffffff;
   padding: 6px 14px;
   border-radius : 20px;
    font-size: 13px;
  font-weight: 600;
     }

.cta-section {
  padding     :      80px 20px;
  background: linear-gradient(135deg, #0a6fb3 0%, #0f88d4 100%);
    text-align: center;
   color: #ffffff;
	}

.cta-section h2 {
    font-size: 42px;
         font-weight: 700;
  margin-bottom: 20px;
}

.cta-section p {
   font-size: 18px;
   margin-bottom: 40px;
   max-width: 600px;
  margin-left: auto;
    margin-right: auto;
}

.contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-section h2
{
	   font-size: 42px;
	font-weight: 700;
    color: #0f2c47;
   text-align: center;
  margin-bottom  :      20px;
}

.contact-wrapper {
  display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 60px;
   margin-top: 50px;
}

.contact-form
{
    background: #f8f9fa;
    padding: 40px;
  border-radius     :   10px;
   border: 1px solid #e8eef6;
}

.form-group {
  margin-bottom: 25px;
    display  :     flex;
        flex-direction: column;

}

.form-group label {
   font-weight     :  600;
    color: #0f2c47;
   margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px 15px;
  border: 1px solid #d0d8e0;
    border-radius: 6px;
    font-family: inherit;
   font-size: 15px;
    color: #2c3e50;
   transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline   :      none;
    border-color: #0f88d4;
  box-shadow: 0 0 0 3px rgba(15, 136, 212, 0.1);
   background-color: #ffffff;
}

.form-group textarea {
  font-family: inherit;
        resize: vertical;
}

.contact-form button {
      width: 100%; 
	   margin-top: 15px;
} 

.contact-info{
   background: #f5f7fa;
    padding: 40px;
   border-radius:      10px;
}


.contact-info h3 {
  font-size: 20px;
   font-weight: 700;
  color  :      #0f2c47;
  margin-bottom: 20px;
}

address {
   line-height: 1.8;
   color: #666666;
   margin-bottom: 25px;
   font-style   : normal;
}

.contact-phone {
        color: #0f88d4;
  font-weight: 600;
	font-size    :       16px;
}

.footer-main {
   color    :#ffffff;
   background: #0f2c47;
    padding: 50px 20px 20px;

}

.footer-container {
  max-width: 1200px;
   margin: 0 auto 40px;
   display: grid;
    grid-template-columns: 1fr 1fr;
               gap: 60px;
    padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img


{
  height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
    margin-bottom: 20px; 
	
}

.footer-address {
		font-size: 14px;
	line-height: 1.8;
    color: #b8c5d6;


}

.footer-links {
  display: flex;
	 flex-wrap   :    wrap;
    gap: 30px;
     align-items     :   flex-start;
}

.footer-links a {


   color    : #b8c5d6;

    text-decoration: none;

  font-size  :        14px;

  transition: color 0.3s ease;


}

.footer-links a:hover{
          color    :  #4db8ff;
}

.footer-bottom {
  text-align: center;
  color: #8899bb;
   font-size   :        13px;
    padding-top:20px;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #0d1f2f;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .navbar-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 10px 0;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 40px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .highlight-content h2 {
        font-size: 32px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .workshop-grid {
        grid-template-columns: 1fr;
    }

    .btn-primary {
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .services-overview h2,
    .workshop-section h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 28px;
    }

    .navbar-container {
        padding: 12px 15px;
    }

    .navbar-logo {
        height: 40px;
    }

    .feature-list li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-info {
        padding: 25px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}.services-hero {
  background: linear-gradient(135deg, #0f2c47 0%, #1a4d6d 100%);
   color: #ffffff;
 padding: 80px 20px;
          text-align     :   center;
   min-height    : 300px;
   display: flex;
    align-items     : center;
	justify-content: center;


}  

.services-hero-content h1 {
    margin-bottom: 20px;

               line-height: 1.2;

  font-weight: 700;

   font-size    :  52px;

}

.services-hero-content p {


               font-size: 20px;
          color: #c8d5e3;
	max-width: 700px;
	margin: 0 auto;


}

.services-detailed {
   padding: 80px 20px;

	 background-color   : #ffffff;
}

.service-item {
    display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 60px;
        align-items: center;
  margin-bottom: 100px;
}

.service-item:nth-child(even) 
 {
    grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.service-item:nth-child(even) > * {
   direction: ltr;
	
}

.service-item-image img {
    width: 100%;
    height: auto;
  border-radius:12px;
  box-shadow: 0 15px 40px rgba(15, 44, 71, 0.15);
}

.service-item-content h2 {
    font-size: 38px;
   font-weight: 700;
   color:#0f2c47;
  margin-bottom: 20px;
   line-height: 1.3;
}

.service-item-content > p {
   font-size: 16px; 
	   color: #555555; 
	   line-height: 1.8; 
	   margin-bottom: 30px;
}

.service-item-content h3

{
   font-size: 18px;
 font-weight: 700;
   color: #0f2c47;
   margin-bottom: 15px;
     margin-top: 25px; 
	
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
      padding: 12px 0 12px 30px;
      position: relative;
	color: #666666;
  font-size :     15px;
	 line-height:       1.6;
}

.service-features li:before {
  content: '';
       position: absolute;
   left: 0;
   top: 16px;
                    width: 10px;
   height: 10px;
               background-color: #0f88d4;
   border-radius: 50%;
}

.pricing-section {
    padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef6 100%);
}

.pricing-section h2 {


    font-size: 42px;
   font-weight: 700;
    color: #0f2c47;
  text-align :     center;
    margin-bottom: 20px;}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 35px;
   margin-top: 50px;
}

.pricing-card {
	 background: #ffffff;
        padding     :    40px 30px;
   border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e8eef6;
   position: relative;
          transition     :   all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(15, 44, 71, 0.15);
    border-color: #0f88d4;
}

.pricing-card h3 {

    font-size: 24px;
    font-weight: 700;
   color: #0f2c47;
  margin-bottom: 10px;}

.pricing-desc {
    color: #999999;
    font-size: 14px;
  margin-bottom: 25px;
}

.pricing-features {
	   list-style :      none;
   padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 12px 0 12px 25px;
  position: relative;
   color  : #666666;
  font-size: 14px;
               line-height   :        1.7;
}

.pricing-features li:before

{
  content: '';
       position: absolute;
  left: 0;
    top: 6px;
         width: 12px;
				 height: 12px;
  background-color: #2ecc71;
   border-radius: 50%;
}

.pricing-card .btn-primary  {


    width: 100%;
               display: block;
    text-align: center;
       margin-top: 30px;
	}

.pricing-featured {
  transform: scale(1.05); 
	               border-color: #0f88d4; 
	  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%); 

}

.pricing-featured:hover     {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
   position: absolute;
	 top: 20px;
  right: 20px;
     background: #0f88d4;
    color: #ffffff;
     padding   :  6px 15px;
          border-radius : 20px;
				 font-size: 12px;
  font-weight: 700;
}

.process-section {
       padding: 80px 20px;
    background-color: #ffffff;
}

.process-section h2{
	  font-size: 42px;
  font-weight: 700;
    color: #0f2c47;
  text-align: center;
    margin-bottom: 50px;}



.process-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 40px;
}

.process-step {
  text-align     :      center;
    padding: 30px 20px;
   background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  background: #e8eef6;
  box-shadow: 0 10px 25px rgba(15, 44, 71, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0f88d4 0%, #0a6fb3 100%);
    color: #ffffff;
  border-radius: 50%;
   display: flex;
   align-items :   center;
	 justify-content: center;
   font-size: 28px;
    font-weight: 700;
  margin: 0 auto 20px;}

.process-step h3 {


 font-size: 20px;
   font-weight: 700;
  color: #0f2c47;
      margin-bottom: 15px;
     }

.process-step p {
    color: #666666;
	font-size: 14px;
  line-height: 1.7;
}

.thankyou-section {
    padding  :       80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef6 100%);
     min-height: 100vh;
    display: flex;
                    align-items: center;
   justify-content: center; 

}

.thankyou-wrapper {
   background: #ffffff;
  padding: 60px 40px;
					border-radius: 15px;
  box-shadow: 0 15px 40px rgba(15, 44, 71, 0.1);
  max-width: 700px;
  text-align: center;
}

.success-icon {
    margin-bottom: 30px;
  display   :     flex;
   justify-content: center;
}

.success-icon img {
        width: 80px;
  height     :80px;
  filter: drop-shadow(0 4px 8px rgba(15, 136, 212, 0.3));
   animation: pulse-scale 1s ease-in-out;

}@keyframes pulse-scale {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1 {
    font-size: 44px;
   font-weight: 700;
    color: #0f2c47;
    margin-bottom: 15px;
}

.thank-you-subtitle {
  font-size: 20px;
  color: #0f88d4;
  margin-bottom: 35px;
   font-weight: 600;
}

.thankyou-message {
     background: #f5f7fa;
  padding: 30px;
    border-radius: 10px;
  margin-bottom  :        35px;
   border-left: 4px solid #0f88d4;
	 text-align: left;
}

.thankyou-message h2 
 {

    font-size: 20px;
   font-weight: 700;
   color: #0f2c47;
     margin-bottom:15px;

}

.thankyou-message p {
        color: #666666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.thankyou-message h3


{
  font-size: 16px;
  font-weight: 700;
	 color: #0f2c47;
  margin-bottom: 12px;
}

.info-list {
    list-style     :     none;
    padding: 0;
}

.info-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: #666666;
  font-size     :        14px;
}

.info-list li:before {
  content: '';
	 position: absolute;
   left: 0;
  top:8px;
   width     :  8px;
    height: 8px;
    background-color: #0f88d4;
   border-radius: 50%;
}

.contact-preview {
		background: #f0f8ff;
    padding: 25px;
   border-radius: 10px;
   margin-bottom: 35px;
    text-align: left;
}

.contact-preview h3 {
   font-size: 16px;
  font-weight: 700;
    color:  #0f2c47;
    margin-bottom: 15px;
}

.info-box {
         background: #ffffff;
  padding: 20px;
   border-radius: 8px;
	border:1px solid #d0d8e0;
}

.info-box p {
  margin: 8px 0;
    color: #555555;
    font-size: 14px;
}

.info-box strong {
  color: #0f2c47;
    font-weight: 700;
}



.cta-links {
    margin: 35px 0;
}

.cta-links p {
	    color: #666666;
    margin-bottom:      20px;
   font-size: 15px;

}

.link-buttons {
  display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.link-buttons a {
    flex: 1;
   min-width: 200px;
}

.btn-secondary  
  {
    display: inline-block;
    background: #e8eef6;
   color: #0f2c47;
	 padding: 14px 40px;
    border-radius: 6px;
   text-decoration: none;
          font-weight: 600;
  font-size: 15px;
	 transition: all 0.3s ease;
 border: none;
  cursor   :      pointer;
}

.btn-secondary:hover {
   background: #d0d8e0;
  transform: translateY(-2px);
}

.faq-section {
	    text-align    :      left;
	margin-top: 40px;
   padding-top: 40px;
   border-top: 1px solid #e8eef6;
	}

.faq-section h3 {
  font-size: 18px;
    font-weight: 700;
  color: #0f2c47;
    margin-bottom: 25px;
  text-align:   center;
}

.faq-item {

       margin-bottom: 15px;
  background: #f5f7fa;
    border-radius: 8px;
    overflow: hidden;
     }

.faq-item summary {
  padding: 18px;
   cursor: pointer;
      font-weight: 600;
          color: #0f2c47;
   transition :     all 0.3s ease;
    user-select: none;
}

.faq-item summary:hover {
    background: #e8eef6;
   color: #0f88d4;
}

.faq-item[open] summary    {


   background: #e8eef6;
    border-bottom: 1px solid #d0d8e0;
	}

.faq-item p {
  padding  :     15px 18px;
     color: #666666;
       font-size: 14px;
     line-height: 1.7;
            background: #ffffff; 
	
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 36px;
    }

    .services-hero-content p {
        font-size: 16px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .pricing-featured {
        transform: scale(1);
    }

    .pricing-featured:hover {
        transform: translateY(-10px);
    }

    .thankyou-wrapper {
        padding: 40px 25px;
    }

    .thankyou-section h1 {
        font-size: 32px;
    }

    .link-buttons {
        flex-direction: column;
    }

    .link-buttons a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 50px 20px;
        min-height: 200px;
    }

    .services-hero-content h1 {
        font-size: 24px;
    }

    .services-hero-content p {
        font-size: 14px;
    }

    .service-item-content h2 {
        font-size: 26px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .thankyou-wrapper {
        padding: 30px 20px;
    }

    .thankyou-section h1 {
        font-size: 26px;
    }

    .success-icon img {
        width: 60px;
        height: 60px;
    }

    .faq-item summary {
        padding: 14px;
        font-size: 14px;
    }

    .faq-item p {
        padding: 12px 14px;
        font-size: 13px;
    }
}.policySection


{
   padding: 80px 2rem; 
	    background     :    #f8f9fa;
}

.policyContainer {


    max-width: 800px;
  text-align: left;
         margin   : 0 auto;
}

.policyContainer h2 {
  font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
        font-weight: 700;
}

.policyContainer p {
     color: #7f8c8d;
   margin-bottom: 1.5rem;
   line-height: 1.7;
         font-size : 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }
    .policyContainer p {
        font-size: 1rem;
    }
    .policySection {
        padding: 60px 1rem;
    }
}