* {
  margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body		{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
   line-height: 1.6;
   color: #2c3e50;
   background-color: #f8f9fa;
}

.navbar {
          position: sticky;
    top:       0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding   :   1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-container {
   max-width: 1200px;
	margin     :        0 auto;
    display: flex;
    justify-content: space-between;
  align-items: center;
      padding: 0 2rem;
}

.nav-brand {
   display   :  flex;

    align-items   :     center; 

}

.nav-logo {
    height: 45px;
				 width: auto;
}

.nav-links	{
  display: flex; 
	  list-style: none; 
	   gap: 2rem;
}

.nav-links a {
    color: white;
  text-decoration :       none;
     font-weight    :    500;
   transition: color 0.3s ease, padding-bottom 0.3s ease;
   padding-bottom: 0.5rem;
         border-bottom: 2px solid transparent;
}

.nav-links a:hover  
  {

		color: #64b5f6;
   border-bottom-color: #64b5f6; 


}

.burger-menu {
   display: none;
   background: none;
 border: none;
		cursor: pointer;
	padding: 0.5rem;
   align-items: center;
}

.burger-menu img {
  width: 28px;
	height: 28px;
  filter: brightness(0) invert(1);
}

.hero {
  background: linear-gradient(120deg, #1e3c72 0%, #2a5298 100%);
    color: white;
  padding: 6rem 2rem;
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
    max-width  :   1200px;
        margin: 0 auto;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
     line-height: 1.2;
	 font-weight: 700;
}



.hero-content p{
       font-size: 1.1rem;
  margin-bottom: 2rem;
    line-height: 1.8;
  opacity: 0.95;
}

.hero-image img {
   width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
   background: #00d4ff;
          color: #1e3c72;
        padding: 1rem 2rem;
  border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #00d4ff;
  cursor: pointer;
}

.cta-button:hover	{
  background: transparent;
					color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.expertise {
   max-width: 1200px;
  margin :   4rem auto;
  padding: 0 2rem; 

}

.expertise h2 {
   	text-align: center;
               font-size: 2.5rem;
   margin-bottom: 3rem;
	 color: #1e3c72;
  font-weight: 700;

}

.expertise-grid {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
               gap    :    2rem; 
	

}

.expertise-card {

   background    :white;
    padding: 2rem;
    border-radius     :  12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #2a5298;
} 

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.expertise-card h3 {
    color: #1e3c72;
   margin-bottom   :      1rem;
	font-size    : 1.4rem;
}

.expertise-card p {
    line-height: 1.7;
   color: #555;
         font-size    :       0.95rem;
}

.workspace-showcase {
   background: #f0f4f8;
   margin-top: 4rem;
   padding   :       4rem 2rem; 
	
}

.workspace-showcase h2 {
   text-align     :      center;
    font-size:       2.5rem;
  margin-bottom: 3rem;
    color: #1e3c72;
   font-weight: 700;
}

.showcase-grid {
                    max-width: 1200px;
  margin    :    0 auto;
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;


}

.showcase-item {
      border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
                    transition: transform 0.3s ease;


}

.showcase-item:hover {
  transform: scale(1.03);
}  

.showcase-item img {
  width: 100%;
  height: 280px;
   object-fit: cover;
	display: block;
}

.services-preview {
   max-width    :  1200px;
    margin: 4rem auto;
   padding: 0 2rem;
}

.services-preview h2 {
    text-align: center;
			font-size: 2.5rem;
    margin-bottom: 3rem;
   color: #1e3c72;
    font-weight: 700;
}

.services-container {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 2rem;

}

.service-item {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   padding: 2.5rem;
   border-radius: 12px;
   border-left    : 5px solid #2a5298;
   transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 8px 24px rgba(42, 82, 152, 0.15);
  transform: translateX(5px);
}

.service-item h3 {
   color: #1e3c72;
   margin-bottom: 1rem;
   font-size: 1.3rem;
}

.service-item p {
  color: #555;
   line-height: 1.7;
    font-size: 0.95rem;


}

.cta-section
{
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  color: white;
 padding: 5rem 2rem;
      text-align: center;
	 margin: 4rem 0; 

}

.cta-content h2 {
 font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
   font-size: 1.2rem;
  margin-bottom: 2rem;
               line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
    margin-right: auto;
          opacity: 0.95;
}

.cta-button-secondary {
      display: inline-block;
	     background: white;
	          color: #1e3c72;
	   padding: 1rem 2.5rem;
	   border-radius   :8px;
	        text-decoration    :none;
	  font-weight: 600;
	     transition: all 0.3s ease;
	   border: 2px solid white;
	  font-size     : 1.05rem;
}

.cta-button-secondary:hover {
   background: transparent;
 color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.contact {


  margin: 4rem auto;
  padding: 0 2rem;
  max-width: 800px;
     }

.contact h2 {
 text-align: center;
    font-size: 2.2rem;
  margin-bottom: 2.5rem;
    color: #1e3c72;
	 font-weight: 700;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
	
}

.form-group {
  margin-bottom: 1.5rem; 

}

.form-group label
{
   display: block;
  margin-bottom: 0.5rem;
   color: #1e3c72;
  font-weight: 600;
   font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
          border: 2px solid #e0e6ed;
    border-radius: 6px;
    font-size   :1rem;
    font-family: inherit;
   transition :      border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus

{
 outline: none;
     border-color:     #2a5298;
  box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

.submit-button {
   width: 100%;
   padding: 1rem;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
  border:   none;
   border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 82, 152, 0.3);
}

.footer {
   color: #ecf0f1;
    background: #1a2332;
  margin-top: 4rem;
   padding: 3rem 2rem 1rem;
}

.footer-content     {
   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		{
    margin-bottom:        1.2rem;
	font-size: 1.1rem;
}

.footer-logo {
      height: 50px;
       width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration:        none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
	    color  :        #00d4ff;


}

.footer-address 
 {
    font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-phone {
    font-size    :    0.95rem;
        margin-bottom: 1rem;
}

.footer-bottom {
	text-align: center;
             padding-top: 2rem;
            border-top: 1px solid #2c3e50;
      font-size: 0.9rem;
       color: #95a5a6;
}@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #1e3c72;
        padding: 1rem 0;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .expertise h2,
    .services-preview h2,
    .workspace-showcase h2 {
        font-size: 1.8rem;
    }

    .cta-section {
        padding: 3rem 2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .expertise,
    .services-preview,
    .contact {
        padding: 0 1rem;
    }

    .expertise-grid,
    .services-container,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(120deg, #2a5298 0%, #1e3c72 100%);
        color: white;
   padding: 5rem 2rem;
  display: grid;
  grid-template-columns     :   1fr 1fr;
  gap: 3rem;
   align-items: center;
   max-width  :  1200px;
  margin: 0 auto;
}

.services-hero-content h1 {
     font-size: 2.8rem;
    margin-bottom   :       1.5rem;
    line-height: 1.2;
   font-weight: 700;
}

.services-hero-content p {
	 font-size: 1.1rem;
  margin-bottom: 1rem;
    line-height  :      1.8;
  opacity: 0.95;
}

.services-hero-image img {
   width: 100%;
  height: auto;
    border-radius    :     12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.service-details {
	   max-width: 1200px;
 margin: 4rem auto;
  padding: 0 2rem;


}

.service-details h2 {
    text-align: center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
    color: #1e3c72;
  font-weight: 700;
}

.service-detail-card

{
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items     :    center;
  margin-bottom: 4rem;
    padding: 2rem;
  background: white;
         border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-detail-card.reverse {
    direction: rtl;
}


.service-detail-card.reverse > * {
   direction: ltr;

}  

.service-detail-image 
 {
  overflow    :   hidden;
   border-radius: 12px;
}

.service-detail-image img {
  width: 100%;
   height: 350px;
   object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detail-card:hover .service-detail-image img {
  transform: scale(1.05);


}

.service-detail-content h3		{

		 font-size: 1.8rem;
    color: #1e3c72;
  margin-bottom: 1rem;
    font-weight: 700;
     }

.service-detail-content p {
        color: #555;
  line-height: 1.8;
   margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-details-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-details-list li {
   color: #2c3e50;
    padding    :      0.6rem 0;
   padding-left   : 1.5rem;
    position: relative;
    font-size   :       0.95rem;
}

.service-details-list li:before  
  {
  content: "✓";
    position: absolute;
    left: 0;
   color: #2a5298;
   font-weight: bold;
}

.service-pricing    {
     background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius    :   8px;
                    display: flex;
    align-items: center;
  gap  :   0.5rem;}

.price-label {
   color: #666;
   font-size: 0.9rem;
}

.price-value {
    font-size  :    1.8rem;
  color  :   #1e3c72;
  font-weight: 700;
}

.price-unit
{

   color: #999; 
	                    font-size    :    0.85rem; 
	    margin-left:    0.5rem;
	}

.service-packages {

	    background : #f0f4f8;
  padding: 4rem 2rem;
	margin: 4rem 0;
	}

.service-packages h2 {
	    text-align: center;
   font-size: 2.5rem;
    margin-bottom :       3rem;
   color: #1e3c72;
  font-weight: 700;
}

.packages-grid
	{
  max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.package-card {
          background: white;
          border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
    flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); 
	
}

.package-card.featured {
   border: 3px solid #2a5298;
  transform: scale(1.02);
}

.package-card.featured:hover {
  transform: translateY(-5px) scale(1.02);
} 

.package-header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color:  white;
  padding: 2rem;
          text-align: center;
}

.package-header h3 {
         font-size    :       1.6rem;
    margin-bottom: 0.5rem;
}

.package-desc    {
               font-size: 0.85rem;
    opacity: 0.9;
}

.package-body {
   padding: 2rem;
   flex-grow: 1;
    display: flex;
	flex-direction: column;
}

.package-features {
  list-style: none;
    flex-grow: 1;
       margin-bottom: 2rem;}

.package-features li {
  padding: 0.8rem 0;
    padding-left: 1.5rem;
	 position: relative;
  color: #555;
    font-size  :  0.95rem;
}

.package-features li:before {
  content: "→";
    position: absolute;
  left: 0;
  color: #2a5298;
    font-weight: bold;


}

.package-price


{

	    text-align: center;
         border-top: 2px solid #e0e6ed;
  padding-top: 1.5rem;}

.amount

{
	margin-bottom  :     0.3rem; 
	  color: #1e3c72; 
	    display: block; 
	   font-size: 1.8rem; 
	    font-weight: 700;
}

.period {
  display: block;
	 font-size: 0.85rem;
  color: #999;
} 

.service-faq {
 max-width: 900px;
      margin: 4rem auto;
 padding: 0 2rem;
}

.service-faq h2 {
   text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
	color: #1e3c72;
  font-weight: 700;
}


.faq-container {
   display: grid;
    gap: 1.5rem;
     }

.faq-item {
  background: white;
   padding: 2rem;
   border-radius: 8px;
   border-left: 5px solid #2a5298;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h4     {
  color  :       #1e3c72;
    margin-bottom: 1rem;
  font-size: 1.1rem;
    font-weight: 600;
}

.faq-item p {
   line-height: 1.7;
    color: #555;
   font-size: 0.95rem;
}

.cta-section-services {

  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  color: white;
   padding: 4rem 2rem;
	text-align: center;


}

.cta-section-services h2 {
  font-size    :2.2rem;
    margin-bottom: 1rem;
}

.cta-section-services p {
   font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
  max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-primary	{
	display :      inline-block;
  background: #00d4ff;
  color  :   #1e3c72;
   padding: 1rem 2.5rem;
   border-radius: 8px;
   text-decoration:     none;
    font-weight: 600;
   transition: all 0.3s ease;
    border     : 2px solid #00d4ff;
    cursor: pointer;
  font-size: 1.05rem; 
	
}

.cta-button-primary:hover		{
   background: transparent;
    color :        white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.thankyou-container {
   max-width     :       1200px;
   margin: 3rem auto;
  padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.thankyou-content {
  padding: 2rem;
}

.thankyou-icon {
     margin-bottom: 1.5rem;
}

.thankyou-icon img {
   width: 60px;
  height: 60px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.thankyou-content h1 {
   font-size: 2.8rem;
    color: #1e3c72;
   margin-bottom   :       0.5rem;
  font-weight   :   700;
}

.thankyou-subtitle {

	  font-size: 1.3rem;
	 color: #2a5298;
    margin-bottom: 2rem;
   font-weight: 600;


}

.thankyou-message {
  background: #f0f4f8;
   padding   :  1.5rem;
  border-radius  :    8px;
  border-left: 5px solid #2a5298;
  margin-bottom: 2rem;
	
}

.thankyou-message p {
  color: #555;
   font-size: 0.95rem;
  line-height: 1.8;
} 

.thankyou-steps {
	margin: 2.5rem 0;
}  

.thankyou-steps h3 {
      color     :       #1e3c72; 
	  font-size: 1.3rem; 
		 margin-bottom: 1.5rem; 
		font-weight: 600;
}

.steps-list {
       display: flex;
					 flex-direction: column;
	   gap: 1.2rem;
}

.step {
    display     :   flex;
    gap: 1rem;
}

.step-number    {
   width: 40px;
   height: 40px;
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  color: white;
    border-radius: 50%;
	 display: flex;
    align-items: center;
   justify-content: center;
	 font-weight: 700;
   flex-shrink: 0;
}

.step-text h4 {

   font-size: 1rem;
    margin-bottom: 0.3rem;
   color: #1e3c72;}

.step-text p {
  color: #666;
    font-size: 0.9rem;
          line-height: 1.6;
}

.thankyou-info {
  background: white;
        padding: 1.5rem;
  border-radius: 8px;
	 border: 2px solid #e0e6ed;
  margin-bottom: 2rem;


}

.thankyou-info p {
      color: #555;
   font-size: 0.95rem;
         line-height: 1.6;


}

.thankyou-actions {
    display: flex;
   gap: 1rem;
}

.thankyou-button-primary,
.thankyou-button-secondary {
  border-radius: 8px;
  font-weight: 600;
   border: 2px solid transparent;
   flex: 1;
   text-decoration: none;
  text-align: center;
    padding: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.thankyou-button-primary {
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
	
}

.thankyou-button-primary:hover {
	  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(42, 82, 152, 0.3);


}

.thankyou-button-secondary {
  background: transparent;
  color: #1e3c72;
  border: 2px solid #2a5298;
}

.thankyou-button-secondary:hover {
    background: #f0f4f8;
}

.thankyou-image {
    border-radius: 12px;
    overflow   :hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); 
	
}

.thankyou-image img {
   width: 100%;
    height: auto;
   display: block;
}@media (max-width: 768px) {
    .services-hero {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .service-detail-card.reverse {
        direction: ltr;
    }

    .service-detail-image {
        order: -1;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-5px) scale(1);
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        margin: 2rem auto;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .service-faq {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 2rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.4rem;
    }

    .service-details h2,
    .service-packages h2,
    .service-faq h2 {
        font-size: 1.6rem;
    }

    .service-detail-card {
        padding: 1rem;
    }

    .service-detail-image img {
        height: 250px;
    }

    .thankyou-icon img {
        width: 50px;
        height: 50px;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .thankyou-subtitle {
        font-size: 1rem;
    }

    .steps-list {
        gap: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .cta-section-services {
        padding: 2.5rem 1rem;
    }
}.policySection {
  padding:  4rem 2rem;
  background :#f8f9fa;
  min-height: calc(100vh - 300px);
}

.policyContainer {
    max-width: 900px;
         margin   :        0 auto;
  text-align: left;
  background: white;
	padding: 3rem;
	border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.policyContainer h2 {
   font-size: 2.8rem;
  color: #1e3c72;
  margin-bottom: 2rem;
    font-weight  :   700;
 line-height: 1.2;
}

.policyContainer h3 {
  font-size: 1.4rem;
         color: #2a5298;
    margin-top: 2rem;
   margin-bottom: 1rem;
	font-weight: 600;
}

.policyContainer p {
   color: #555;
   margin-bottom  :        1.5rem;
    line-height: 1.8;
    font-size: 1rem; 

}

.policyContainer strong {
  color: #1e3c72;

  font-weight: 600;
}@media (max-width: 768px) {
    .policySection {
        padding: 2rem 1rem;
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 8px;
    }

    .policyContainer h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 1.5rem 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
}