.btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
	color: #ffffff;
    padding: 12px 32px;
    border-radius     :      12px;
	text-decoration: none;
  font-weight: 600;
          cursor: pointer;
   border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   font-size: 16px;
    display: inline-block;
   text-align: center;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
  letter-spacing: 0.5px;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary	{
    background: transparent;
   color: #ffffff;
     padding: 12px 32px;
  border: 2px solid #ffffff;
   border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
   cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   font-size: 16px;
    display: inline-block;
   text-align    :        center;
}

.btn-secondary:hover {
 background: #ffffff;
   	 color: #667eea;
     transform: translateY(-3px); 
	
}

.btn-secondary:active {
  transform: translateY(-1px);
}

.btn-outline    {
  background: transparent;
   color: #667eea;
  padding: 12px 32px;
    border: 2px solid #667eea;
	 border-radius     :       12px;
       text-decoration: none;
   font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    display  :  inline-block;
}  

.btn-outline:hover {
  background: #667eea;
   color: #ffffff;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
}

.btn-ghost {
    background: transparent;
    color  :   #667eea;
    padding: 12px 32px;
    border: none;
 border-radius: 12px;
   text-decoration: none;
    font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
    font-size: 16px;
   display: inline-block;
}  

.btn-ghost:hover {
                    color: #764ba2;
   text-decoration: underline;
}

.btn-small {
   padding: 8px 16px;
   font-size: 14px;
}

.btn-large {
  padding: 16px 40px;
    font-size   : 18px;
}

.btn-full


{
   width: 100%;
  display: block;
}

.btn-disabled,
button:disabled {
   opacity: 0.5;
    cursor  :        not-allowed;
    transform: none !important;
}

.btn-disabled:hover,
button:disabled:hover {


	 transform   : none !important;
  box-shadow: none !important;
     }

.btn-group {


   gap: 1rem;
   flex-wrap: wrap;
   display: flex;}

.btn-group button,
.btn-group a {
    flex: 1;
    min-width :    150px;
}  

.btn-with-icon		{
    align-items    :       center;
	gap: 0.5rem;
	 display: inline-flex;
	}


.btn-icon-right {
      flex-direction: row-reverse;
     }@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}.btn-pulse {
  animation   :      buttonPulse 2s infinite;
}
@keyframes buttonGlow {
    0% {
        text-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
    }
    100% {
        text-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
    }
}.btn-glow {
    animation: buttonGlow 1.5s ease-in-out infinite;

}

.btn-loading {
  position: relative;
  color: transparent;
}

.btn-loading::after {
  content: '';
  position    :    absolute;
    width: 16px;
    height: 16px;
    top: 50%;
   left: 50%;
  margin-left: -8px;
          margin-top: -8px;
   border : 2px solid #ffffff;
   border-radius: 50%;
   border-top-color: transparent;
   animation: spin 0.6s linear infinite;
}@keyframes spin {
    to { transform: rotate(360deg); }
}.btn-social {
    width: 48px; 
   height: 48px; 
   padding: 0; 
   border-radius    :50%; 
       display: inline-flex; 
    align-items: center; 
    justify-content: center; 
  background: #f0f0f0; 
    color: #333;}

.btn-social:hover  
  {
                    background: #667eea;
   color: #ffffff;
  transform: scale(1.1);
}@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-ghost {
        padding: 10px 24px;
        font-size: 15px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }

    .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-group button,
    .btn-group a {
        width: 100%;
        min-width: unset;
    }
}@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-ghost {
        padding: 8px 16px;
        font-size: 14px;
        width: 100%;
    }

    .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
}.hero-services {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f5576c 100%);
   color: #ffffff;
   padding  : 5rem 2rem;
  text-align  :  center;
   min-height: 400px;
    display :   flex;
    align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
     }

.hero-services::before {
  content: '';
               position: absolute;
   width: 350px;
   height: 350px;
  background: rgba(255, 255, 255, 0.1);
	border-radius:    50%;
  top: -100px;
  right: -50px;
}

.hero-services::after {

  content: '';

	   position: absolute;

	   width: 250px;

	  height: 250px;

	  background: rgba(255, 255, 255, 0.08);

					 border-radius: 50%;

	        bottom: -80px;

	   left     :        -30px; 

	}

.hero-services .hero-content {
   position: relative;
    z-index: 1;
    max-width:  700px;
	
}  

.hero-services h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
   font-weight: 800;
}

.hero-services p {
   font-size: 1.2rem;
  opacity:    0.95;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2.5rem;
	 margin: 3rem 0;


}

.service-card {

	   background: #ffffff;
  border-radius: 16px;
               overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position     :       relative;
    border: 1px solid transparent;

}

.service-card:hover     {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
	border-color: #667eea;
}

.service-card.featured {
    border: 2px solid #667eea;
  background: linear-gradient(135deg, #ffffff 0%, rgba(102, 126, 234, 0.03) 100%);
  transform: scale(1.02);
}

.service-card.featured:hover	{
  transform: scale(1.02) translateY(-12px);
}

.service-badge {


    position: absolute;
   top: 20px;
    right  :      20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
          color: #ffffff;
     padding: 0.5rem 1rem;
   border-radius: 25px;
    font-size: 0.85rem;
   font-weight: 600;
   z-index   :      2;
     }

.service-header {
		 padding: 2rem 2rem 1rem;
   display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-number

{
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    border-radius: 50%;
  display: flex;
	 align-items: center;
    justify-content: center;
   font-weight: 700;
   font-size: 1.3rem;
  flex-shrink: 0;
}

.service-card h3 {
     font-size  : 1.4rem;
   color    :   #1a1a2e;
   margin: 0;
 font-weight: 700;
}

.service-body {
  padding: 0 2rem 2rem;
}

.service-intro {
	  color: #666;
   margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 500;}

.service-list {
  list-style: none;
  margin-bottom: 1.5rem;
}



.service-list li {
      padding: 0.7rem 0;
        color: #555;
  font-size: 0.95rem;
   position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;


}

.service-list li::before {
  content: '▪';
   color: #667eea;
  left :        0;
    position: absolute;
   font-weight: bold;
}

.service-price {
   font-size: 1.4rem;
  font-weight: 700;
 color: #667eea;
    margin-bottom: 1.5rem;
}

.btn-service {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
   color :       #ffffff;
   padding: 1rem 1.8rem;
	border-radius: 12px;
  text-decoration: none;
     font-weight: 600;
               cursor:     pointer;
  border :  none;
   transition: all 0.3s ease;
	font-size: 1rem;
    width: 100%;
  text-align: center;
}

.btn-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.3);
}

.btn-service.featured {
	  background: linear-gradient(135deg, #764ba2, #667eea);
}

.btn-service.secondary {
   background: transparent;
	border     :    2px solid #667eea;
    color: #667eea;
}

.btn-service.secondary:hover {
  background: #667eea;
    color: #ffffff;
}

.comparison-section {
   padding: 5rem 2rem;
}

.comparison-table {
  display: flex;
  flex-direction: column;
   background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.comparison-row {
   display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap : 0;
     border-bottom: 1px solid #e5e5e5;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header-row {
  background: linear-gradient(135deg, #0f3460, #1a2847);
  color: #ffffff;
    font-weight: 700;
}

.comparison-cell {
  justify-content   :     center;
    min-height: 70px;
   display: flex;
    padding  :      1.5rem;
   font-size: 0.95rem;
   align-items     :      center;
}

.comparison-cell.feature  
  {
        justify-content: flex-start;
    font-weight: 600;
					text-align: left;
}

.comparison-row:nth-child(even) .comparison-cell {
  background: rgba(102, 126, 234, 0.02);
}

.comparison-cell.check
	{
        font-weight: 700;
  color: #2ecc71;
   font-size: 1.3rem; 
	
	}

.testimonials-section {
    padding: 5rem 2rem;
}

.testimonials-grid
{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  margin     : 3rem 0;
}

.testimonial-card {
			background: #ffffff;
   padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
       transition  :    all 0.3s ease;
   border-left     :       4px solid #667eea;
}

.testimonial-card:hover {
	  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);


}

.testimonial-text p {
   color: #333; 
   font-size: 1rem; 
    line-height: 1.8; 
  margin-bottom:       1.5rem; 
    font-style: italic;
}

.testimonial-author     {
  display  :     flex;
    flex-direction: column;
}  

.author-name {
  font-weight: 700;
		font-size: 1rem;
   color: #1a1a2e;
}

.author-title 
 {
        color: #999;
   font-size: 0.9rem;
        margin-top: 0.3rem;
}

.faq-section {


     padding: 5rem 2rem;
}

.faq-items    {
         max-width: 800px;
    margin: 3rem auto 0;
               display: flex;
  flex-direction: column;
	 gap: 1rem;


}

.faq-item {
    border :      2px solid #e5e5e5;
	border-radius: 12px;
  overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.active {
   border-color  : #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
}

.faq-question {
	 width: 100%;
   padding: 1.5rem;
  background: #ffffff;
    border: none;
       cursor: pointer;
  font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
      display: flex;
   justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question	{
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), transparent);
  color: #667eea;
}

.faq-question:hover {
  background: rgba(102, 126, 234, 0.02);
}

.faq-icon {
    font-size  : 1.5rem; 
	    transition: transform 0.3s ease; 
	   display: inline-block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
                    overflow: hidden;
  background: rgba(102, 126, 234, 0.03);
   transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
       padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.8;
  font-size     :       0.95rem;
}

.thank-you-section {
     min-height: 100vh;
  display: flex;
  align-items:        center;
    justify-content: center;
   padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;


}

.thank-you-wrapper {
      position: relative;

  width: 100%;

	max-width: 800px;}



.thank-you-background   {

	     position: absolute;
   top: 0;
   left: 0;
   right: 0;
  bottom: 0;
   z-index: 0;
}

.bg-circle	{
   position: absolute;
      border-radius: 50%;
     opacity: 0.1;
}

.bg-circle-1 {
     width: 400px;
   height  :    400px;
   background: #667eea;
  top: -100px;
   right   :-100px;


}



.bg-circle-2 {
        width: 300px;
               height: 300px;
  background   :  #764ba2;
	bottom: -50px;
	left: -50px;
}

.bg-circle-3		{
   width: 200px;
  height: 200px;
    right: 10%;
  top: 50%;
  background   :       #f5576c;
}

.thank-you-container {
    background: #ffffff;
  border-radius: 20px;
   padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
   text-align: center;
   position: relative;
    z-index: 1;
  animation: slideUp 0.6s ease;
}@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.success-icon {
  width: 120px;
   height: 120px;
    margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
   border-radius: 50%;
  display: flex;
	align-items: center;
 justify-content: center;
  color: #ffffff;
  animation: scaleIn 0.5s ease 0.2s both;
}@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}.thank-you-container h1 {
  font-size: 2.5rem;
  color: #1a1a2e;
   margin-bottom: 1rem;
  font-weight: 800;
}

.thank-you-message {
  background: rgba(102, 126, 234, 0.05);
	 padding: 1.5rem;
   border-radius:       12px;
  margin-bottom: 2rem;
    border-left   :  4px solid #667eea;
}


.thank-you-message p {

		line-height: 1.6;
    color: #555;
    margin-bottom :     0.8rem;
  font-size: 1rem;
	}

.thank-you-message p:last-child {
	margin-bottom: 0;
}

.next-steps {
    margin   :       2.5rem 0;
  text-align     :    left;
}

.next-steps h2 {
    font-size     :       1.5rem;
    color: #1a1a2e;
  margin-bottom: 1.5rem;
}

.steps-list {
   display: flex;
    flex-direction    : column;
   gap: 1rem;


}

.step {
   display: flex; 
    gap: 1rem; 
    align-items  :       flex-start;
}

.step-number {

   width: 40px;
    height: 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
    color  :        #ffffff;
  border-radius  : 50%;
   display: flex;
    align-items: center;
  justify-content   :       center;
  font-weight: 700;
      flex-shrink: 0;

}

.step-content h3 {


    font-size: 1.1rem;

  color: #1a1a2e;

	margin-bottom: 0.3rem;

  font-weight: 600;
	}

.step-content p {
		color: #666;
    font-size: 0.95rem;
   margin: 0;


}

.contact-info-box {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
	padding  :      1.5rem;
   border-radius: 12px;
	 margin: 2rem 0;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.contact-info-box h3		{
    font-size: 1.1rem;
  color: #1a1a2e;
  margin-bottom: 0.8rem;
}



.contact-info-box p {
	color: #555;
   font-size: 0.95rem;
  margin-bottom     :      0.8rem;
}

.contact-info-box p:last-child {
	         margin-bottom: 0;
     }

.contact-phone,
.contact-address {
  font-size: 1rem !important; 
	
}

.thank-you-actions {
    display: flex;

	   gap: 1rem;

	  justify-content: center;

		flex-wrap: wrap;

	                    margin: 2rem 0; 

}

.thank-you-actions a {
      text-decoration: none;
}

.timeline-info {
  display     :        grid;
  grid-template-columns: repeat(3, 1fr);
	 gap: 1rem;
  margin-top: 2rem;
    padding-top: 2rem;
       border-top: 2px solid #e5e5e5;
}

.timeline-item {
	text-align: center;
}

.timeline-time {
    font-weight     :      700;
	color: #667eea;
	 font-size    :   0.9rem;
   margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 0.9rem;
    color    :   #666;
	
}

.resources-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  margin     :     3rem 0;
}

.resource-card {
    background: #ffffff;
	   padding: 2rem;
	  border-radius: 12px;
	  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	    text-align  :       center;
			 transition    :      all 0.3s ease;
}

.resource-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.resource-icon {
   width: 60px;
    height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
  border-radius: 50%;
    display: flex;
  align-items: center;
    justify-content: center;
	font-weight: 700;
    font-size :1.5rem;
}

.resource-card h3 {
   font-size: 1.2rem;
  color: #1a1a2e;
  margin-bottom  :      0.8rem;
  font-weight: 600;
}

.resource-card p {
   color: #666;
   font-size: 0.95rem;
         line-height: 1.6;
}@media (max-width: 768px) {
    .hero-services {
        padding: 4rem 1.5rem;
        min-height: 300px;
    }

    .hero-services h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        padding: 1rem;
        min-height: 50px;
        justify-content: flex-start;
    }

    .comparison-cell.feature::before {
        content: '';
    }

    .thank-you-container {
        padding: 2rem 1.5rem;
    }

    .thank-you-container h1 {
        font-size: 1.8rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions a {
        width: 100%;
    }

    .timeline-info {
        grid-template-columns: 1fr;
    }

    .faq-items {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-services h1 {
        font-size: 1.6rem;
    }

    .service-header {
        padding: 1.5rem 1.5rem 0.5rem;
    }

    .service-body {
        padding: 0 1.5rem 1.5rem;
    }

    .thank-you-container {
        padding: 1.5rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .steps-list {
        gap: 0.8rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .btn-service {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}.policySection {
   padding: 5rem 2rem;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
  min-height: calc(100vh - 400px);
}

.policyContainer  {
	   max-width  :850px;
   margin: 0 auto;
  text-align     :    left;


}

.policyContainer h1 {

	    font-size: 2.8rem;
    color: #0f3460;
    margin-bottom: 2rem;
  font-weight :   800;
   letter-spacing: -0.5px;

}

.policyContainer h2 {
   font-size: 1.8rem;
   color: #1a1a2e;
    margin-top: 2.5rem;
   margin-bottom: 1rem;
	font-weight   : 700;
    padding-bottom  :  0.8rem;
     border-bottom: 2px solid #667eea;


}  

.policyContainer h2:first-of-type {
    margin-top: 0;
}  

.policyContainer p		{

	    color: #555;
   margin-bottom:        1.2rem;
  line-height: 1.8;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.policyContainer p strong {


    color: #1a1a2e;
    font-weight: 600;
	}

.policyContainer p:last-child {
  margin-bottom: 0;
}

.policyContainer > p:first-child


{
	font-size: 1.05rem;
    line-height: 1.9;
}

.policyList {
   list-style: none;
   padding: 0;
  margin: 1.5rem 0;
}

.policyList li {

    padding: 0.8rem 0;
    padding-left  :   1.8rem;
    position: relative;
   color  :        #555;
  line-height: 1.8;


}

.policyList li::before
{
    left  : 0;
  color: #667eea;
   font-size: 1.2rem;
      font-weight: bold;
   position: absolute;
  content: '▪';
}

.policyHighlight{
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    padding: 1.5rem;
    border-left: 4px solid #667eea;
               border-radius : 8px;
  margin: 2rem 0;
}

.policyHighlight p {
    margin-bottom: 0;
}

.policyDivider    {

	    height: 2px;
  background: linear-gradient(to right, transparent, #667eea, transparent);
  margin: 2.5rem 0;
         opacity: 0.5;
	}

.policy-breadcrumb  {
  max-width: 850px;
    margin     :  0 auto 2rem;
  padding: 0 0 1rem;
         border-bottom: 1px solid #e5e5e5;
}

.policy-breadcrumb a {
   color :     #667eea;

	text-decoration: none;

  font-weight  : 500;

    transition: all 0.3s ease;
}

.policy-breadcrumb a:hover {

	         color: #764ba2;}

.policy-breadcrumb span {
   color: #999;

  margin: 0 0.5rem;
}@media print {
    .policySection {
        padding: 0;
        background: #ffffff;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        page-break-after: avoid;
    }

    .policyContainer p {
        orphans: 3;
        widows: 3;
    }
}

@media (max-width: 1024px) {
    .policyContainer {
        max-width: 95%;
    }

    .policyContainer h1 {
        font-size: 2.3rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .policyHighlight {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }

    .policyList li {
        padding-left: 1.5rem;
    }

    .policyDivider {
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 2rem 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }

    .policyHighlight {
        padding: 1rem;
        margin: 1.2rem 0;
        border-radius: 4px;
    }

    .policyList li {
        padding: 0.6rem 0;
        padding-left: 1.3rem;
    }

    .policyDivider {
        margin: 1.5rem 0;
    }
}

@media (prefers-color-scheme: dark) {
    .policySection {
        background: linear-gradient(to bottom, #1a1a2e, #0f3460);
    }

    .policyContainer h1,
    .policyContainer h2 {
        color: #ffffff;
    }

    .policyContainer p {
        color: #d0d0d0;
    }

    .policyContainer p strong {
        color: #ffffff;
    }

    .policyHighlight {
        background: rgba(102, 126, 234, 0.15);
        border-left-color: #8ba4f9;
    }

    .policyList li {
        color: #d0d0d0;
    }

    .policy-breadcrumb {
        border-bottom-color: #333;
    }
}