* {
	 margin: 0;
	box-sizing: border-box;
  padding: 0;
}

:root {
    --primary-color: #1a3a52;
    --accent-color: #e74c3c;
    --light-bg: #f8f9fa;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --border-color: #ecf0f1;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
}

html {
   scroll-behavior: smooth;
}

body    {

	  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
  color: var(--text-primary);
   background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6
{

	      font-weight: 600;
  line-height    :       1.2;
 margin-bottom: 1rem;


}

h1 {
      font-size: 3.5rem;
  color: var(--primary-color);
	
}

h2 {
  font-size: 2.5rem;
	  color: var(--primary-color);
	  margin-bottom: 2rem;
	  text-align: center;
}

h3 {
   font-size: 1.5rem;
  color: var(--primary-color);
}

h4 {
   font-size: 1.2rem;
  color: var(--text-primary);
}

p {
	 margin-bottom    :        1rem;
  color: var(--text-secondary);
    font-size:   1rem;
}

a	{
  color: var(--accent-color);
	text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
  color     :       #c0392b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
	padding: 0 2rem;
}

.main-header {
   background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
	top: 0;
    z-index: 100;
  box-shadow: var(--shadow-light);
}  

.navigation-bar {

	   padding: 1rem 0; 
	}

.nav-container {
  max-width: 1200px;
  align-items     :    center;
    margin: 0 auto;
     padding: 0 2rem;
        display: flex;
   justify-content: space-between;
}

.logo-section {
    display: flex;
  align-items: center;
}

.main-logo {
    height: 50px;
    width: auto;
	object-fit: contain;
  filter: brightness(0) invert(1);
	
}  

.burger-button {
    display: none;
          flex-direction: column;
  background: none;
   border: none;
  cursor: pointer;
  gap: 6px;
  padding  :       8px;
}

.burger-line {

	 width:        25px;
   height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
    transition: all 0.3s ease; 
	

}

.nav-menu {
  list-style: none;
	  display: flex;
		gap     :   2.5rem;
	   align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-primary);
  padding :  0.5rem 0;
	border-bottom    :     2px solid transparent;
    transition : border-color 0.3s ease;
}

.nav-link:hover {
  border-bottom-color: var(--accent-color);
  color: var(--accent-color);

}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
     padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content h1


{
   margin-bottom: 1.5rem;
   font-size: 3rem;
}



.hero-subtitle
{
    font-size: 1.1rem;
  color: var(--text-secondary);
   margin-bottom: 2rem;
   line-height     :      1.8;}

.hero-image {
  position :relative;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.hero-image img {
  width: 100%;
     height: auto;
    display: block;
   border-radius:  12px;
}

.cta-button {
    display: inline-block;
    padding :       1rem 2.5rem;
   border-radius: 8px;
      font-weight: 600;
	font-size: 1rem;
    transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
    text-decoration: none;
}



.primary-cta {
  background-color: var(--accent-color);

    color: #ffffff;
}

.primary-cta:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(231, 76, 60, 0.3);
}

.secondary-cta {
  background-color: var(--primary-color);
		color: #ffffff;
}

.secondary-cta:hover {
   background-color: #0f2436;
  transform: translateY(-2px);
}

.services-preview
	{
		padding     :   5rem 0;
  background-color: var(--light-bg);

}


.services-grid {
   display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
   gap: 2rem; 
    margin-top: 3rem;
}

.service-card {
   background-color: #ffffff;
  border-radius :     12px;
   overflow: hidden;
  box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor  :  pointer;


}

.service-card:hover


{
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.service-card img  {
  width: 100%;
    height: 250px;
  object-fit: cover;
                    display: block;
}

.service-card h3 {
		 padding: 1.5rem 1.5rem 0.5rem; 
	   font-size: 1.3rem;
}

.service-card p {
   padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
}

.features-section {
   padding: 5rem 0;
}

.features-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
  padding: 2rem;
  border-left: 4px solid var(--accent-color);
  background-color: var(--light-bg);
   border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover	{

	  transform: translateX(8px);
     }

.feature-item h3     {
  color: var(--primary-color);
     margin-bottom :0.8rem;
}

.feature-item p {
  color: var(--text-secondary);
     }

.business-offerings {
  padding: 5rem 0;
  background-color: var(--light-bg);
}

.offerings-wrapper {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap  :    2rem;
   margin-top: 3rem;
}  

.offering-box

{
  background-color: #ffffff;
   padding: 2.5rem;
   border-radius: 10px;
  box-shadow: var(--shadow-light);
  border-top: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.offering-box:hover {
  box-shadow: var(--shadow-medium);
     transform: translateY(-5px);

}

.offering-box h3 {
  color: var(--primary-color);
  margin-bottom:      1rem;
}

.offering-box p {
  color: var(--text-secondary);
   margin-bottom: 1.5rem;
   line-height: 1.7;
}

.offering-link {
   font-weight: 600;
  color: var(--accent-color);
      display    :  inline-block;
  padding-bottom :        4px;
    border-bottom: 2px solid transparent;
      transition: border-color 0.3s ease;
}

.offering-link:hover {
  border-bottom-color: var(--accent-color);
}

.cta-section {


  background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8f 100%);
   padding: 5rem 2rem;
   text-align: center;
  margin: 3rem 0;
          border-radius: 12px;
	}

.cta-overlay h2

{
   color: #ffffff;
    margin-bottom: 1rem;
}

.cta-overlay p {
    font-size: 1.1rem;

   margin-bottom: 2rem;

          color: #ecf0f1;
}

.contact-section {
  padding    :    5rem 0;
  background-color: var(--light-bg);
}

.contact-subtitle {
   text-align: center;
  color: var(--text-secondary);
   font-size: 1.1rem;
  margin-bottom    :    3rem;
}

.contact-form
	{
     max-width: 600px;
  margin: 0 auto;
    background-color  :  #ffffff;
  padding: 3rem;
	border-radius: 12px;
  box-shadow: var(--shadow-light);
}

.form-group {
   margin-bottom: 2rem;

	    display: flex;

	   flex-direction: column;
}

.form-group label {
    font-weight: 600;
  color: var(--text-primary);
   margin-bottom    :    0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	 padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
   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: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.submit-button {
	width: 100%;
  padding: 1rem;
  background-color: var(--accent-color);
          color: #ffffff;
    border: none;
   border-radius: 6px;
   font-weight: 600;
    font-size: 1rem;
   cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
   background-color: #c0392b;
  transform: translateY(-2px); 
	
}

.submit-button:active {
  transform: translateY(0); 
	
}

.main-footer {
  background-color: var(--primary-color);
    color: #ecf0f1;
    padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
	margin: 0 auto;
   padding   :  0 2rem;
}

.footer-brand
	{


  margin-bottom    :        3rem;
   display :flex;
          align-items: center; 
}

.footer-logo     {
   height: 45px;
	 width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-content		{
  display  :        grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
}

.footer-section h4 {
   color: #ffffff; 
	   margin-bottom: 1rem;
}

.footer-links,
.footer-info {
   list-style: none;
}

.footer-links li,
.footer-info li {

	   margin-bottom: 0.8rem;

}

.footer-links a {
    color     :        #ecf0f1;
   transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-info li {
   color  :       #bdc3c7;
  font-size  :0.95rem;}

.footer-bottom {
    text-align: center;
    color: #95a5a6;
  font-size  :   0.9rem;
} @media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .burger-button {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 2rem;
        box-shadow: var(--shadow-medium);
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .offerings-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-overlay h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .services-preview,
    .features-section,
    .business-offerings,
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .main-footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .nav-menu {
        top: 65px;
        padding: 1rem;
    }
}.services-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8f 100%);
  color   :    #ffffff;
        padding: 5rem 2rem;
    text-align: center;
	
}

.services-header-content h1 {
   color: #ffffff;
   font-size: 3rem;
   margin-bottom: 1rem;


}

.services-header-content p {
   color: #ecf0f1;
   font-size: 1.2rem;
  max-width: 700px;
  margin   :  0 auto;
}


.detailed-services {
  padding: 5rem 0;
	
}

.service-detail-item {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items:center;
   margin-bottom: 5rem;
          padding: 0 2rem;
	
}

.service-detail-item.alternate {
	direction: rtl;
}

/* Development only */

.service-detail-item.alternate > *  
  {
	direction: ltr;
}
	/* Development only */


	/* Debug styles */


/* Browser compatibility */

.service-detail-image


{
    position: relative;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: var(--shadow-medium);
   height: 400px;
}

.service-detail-image img {
   width: 100%;
	height     :     100%;
	object-fit: cover;
         display: block;
}

.service-detail-content h2 {
    text-align: left;
               font-size: 2.2rem;
   margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.service-detail-content p   {
    font-size: 1.05rem;
   line-height:      1.8;
  color: var(--text-secondary);
	 margin-bottom: 1.5rem;
}

/* Responsive design */

.service-features {
   list-style: none;
      margin-bottom: 2rem;
}

/* Component styles */


.service-features li {
	   padding: 0.75rem 0;
	 padding-left: 2rem;
    position: relative;
  color: var(--text-secondary);
               font-size: 1rem;


}

.service-features li:before {
  content: "▸";

	position    :    absolute;

       left: 0;

  color: var(--accent-color);

    font-weight: bold;

  font-size: 1.2rem;}

.service-price-info {
        display: flex;
   flex-direction: column;
     gap: 0.5rem;
  padding: 1.5rem;
  background-color: var(--light-bg);
  border-left: 4px solid var(--accent-color);
    border-radius: 6px;
}

.price-label {

   font-weight: 700;
   font-size :       1.3rem;
  color: var(--accent-color);

}

.price-description {


    font-size:   0.95rem;
  color: var(--text-secondary);}

.comparison-section {
        padding: 5rem 0;
  background-color: var(--light-bg);
}

.comparison-table-wrapper {
 overflow-x: auto;
   margin-top     :      2rem;
	border-radius: 8px;
  box-shadow: var(--shadow-light);
}

/* Legacy code */

.comparison-table {
  width: 100%;
   border-collapse: collapse;
	 background-color: #ffffff;
}

.comparison-table thead {
  background-color: var(--primary-color);

	  color: #ffffff;
}

.comparison-table th {
      padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table td {
  padding:   1rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover    {
   background-color: #f0f4f8;
}

.feature-name {
    font-weight: 600;
  color: var(--text-primary);
}

.check-mark {
 color: #27ae60;
          font-weight: bold;
  text-align: center;
}

.cross-mark {
  color:       #95a5a6;
    font-weight     :  bold;
  text-align: center;
}

/* Layout styles */

.partial-mark


{
  color: #f39c12;
   font-weight: bold;
    text-align: center;
}

.testimonials-section {
  padding: 5rem 0;


}

.testimonials-grid		{

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
  margin-top: 3rem;

}  

.testimonial-card {
  background-color: #ffffff;
   padding: 2rem;
  border-radius  :      10px;
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium); 

}
/* Typography */


/* FIXME: IE11 compatibility */
.testimonial-text {
  font-style    :    italic;
  color: var(--text-secondary);
   margin-bottom:  1.5rem;
    line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.booking-section


{
  background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8f 100%);

  color: #ffffff;

   padding: 4rem 2rem;

	text-align: center;

  border-radius: 12px;

 margin-bottom:        3rem;
}

/* Layout styles */

.booking-section h2 {
     color: #ffffff;
    margin-bottom: 1rem;
}

.booking-section p    {
  color: #ecf0f1;
  font-size: 1.1rem;
    margin-bottom: 2rem;
} 

.thankyou-section {
    padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    min-height: 100vh;
          display: flex;
  align-items: center;
  justify-content: center; 
	
}

.thankyou-container {

   max-width: 700px;
    margin: 0 auto;
  text-align  :        center;
  background-color: #ffffff;
	padding :3rem;
                    border-radius: 12px;
  box-shadow: var(--shadow-medium);


}

.success-animation  {
  margin-bottom: 2rem;
   display: flex;
    justify-content: center;
}

.success-checkmark {
   width   :   100px;
 height: 100px;
}

.checkmark-circle {


  stroke: var(--accent-color);
  stroke-width: 2;
	 animation   :circle-fill 0.6s ease-in-out 0.3s forwards; 
	

}
/* Component styles */



/* Minified version */
.checkmark-check {
  stroke: var(--accent-color);

	  stroke-width: 3;

	  stroke-linecap: round;

	          stroke-linejoin: round;

	    animation   :checkmark-draw 0.6s ease-in-out 0.3s forwards;
}
@keyframes circle-fill {
    0% {
        stroke-dasharray: 166;
        stroke-dashoffset: 166;
        opacity: 0;
    }
    100% {
        stroke-dasharray: 166;
        stroke-dashoffset: 0;
        opacity: 1;
    }
}@keyframes checkmark-draw {
    0% {
        stroke-dasharray: 48;
        stroke-dashoffset: 48;
        opacity: 0;
    }
    100% {
        stroke-dasharray: 48;
        stroke-dashoffset: 0;
        opacity: 1;
    }
}.thankyou-section h1 {
  color: var(--primary-color);
    font-size: 2.5rem;
       margin-bottom: 0.5rem;
}

.thank-you-subtitle {
  color: var(--accent-color);
  font-size: 1.3rem;
   font-weight: 600;
	margin-bottom: 2rem;


}

.confirmation-message {
  text-align: left;
  background-color: var(--light-bg);
    padding: 2rem;
   border-radius     :     8px;
  margin-bottom :       2rem; 
	
}

.confirmation-message p {
  color: var(--text-secondary);
   margin-bottom: 1rem;
	line-height: 1.8;
	
}

.what-happens-next h3 {
  text-align  :center;
  color: var(--primary-color);
  margin-top : 2rem;
   margin-bottom :        1.5rem;
}

.next-steps {
   display     :    grid; 
  gap: 1.5rem; 
    margin-top: 1.5rem;
}

.step-item		{
   display: flex;
   gap: 1.5rem;
    align-items: flex-start; 

}  

.step-number


{
   display: flex;

	  align-items: center;

	  justify-content: center;

	  width: 40px;

	        height    :   40px;

	  background-color: var(--accent-color);

	    color: #ffffff;

	  border-radius  : 50%;

	    font-weight: 700;

	   flex-shrink: 0;
}

.step-content h4 {
  color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align : left; 

}

.step-content p {
  color: var(--text-secondary);
 font-size: 0.95rem;
  text-align: left;
}

.action-links {
  gap: 1rem;
   margin-top: 2rem;
   justify-content: center;
   display: flex;
   flex-wrap: wrap;
}

.faq-section {
    margin-top: 3rem;
   text-align: left; 
	
}

.faq-section h3 {
		 text-align: center;
  color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.faq-items {
	display: flex;
	flex-direction: column;
	 gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-color); 
	    border-radius: 6px; 
	  overflow :hidden;
}

.faq-question {
    width: 100%;
    padding: 1.2rem;
  background-color: var(--light-bg);
    border: none;
   text-align: left;
   font-weight:600;
  color: var(--primary-color);
    cursor     : pointer;
  transition:    background-color 0.3s ease;
    font-size: 1rem;
}

.faq-question:hover {
  background-color: #e8ecf1;
}


.faq-question.active  {
  background-color: var(--accent-color);
        color: #ffffff;
}

.faq-answer {
	max-height: 0;
   overflow: hidden;
  transition: max-height 0.3s ease;
}



.faq-answer.show {

    max-height: 500px;
   padding: 1.2rem;
	}

.faq-answer p {
  color: var(--text-secondary);
   margin: 0;

}
@media (max-width: 1024px) {
    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-image {
        height: 300px;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .services-header-content h1 {
        font-size: 2rem;
    }

    .services-header-content p {
        font-size: 1rem;
    }

    .service-detail-item {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .service-detail-image {
        height: 250px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .comparison-table thead {
        font-size: 0.8rem;
    }

    .thankyou-container {
        padding: 2rem 1.5rem;
    }

    .action-links {
        flex-direction: column;
    }

    .action-links .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-header {
        padding: 3rem 1rem;
    }

    .services-header-content h1 {
        font-size: 1.5rem;
    }

    .service-detail-item {
        padding: 0;
    }

    .service-detail-image {
        height: 200px;
    }

    .service-detail-content h2 {
        font-size: 1.3rem;
    }

    .comparison-table-wrapper {
        font-size: 0.75rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .booking-section {
        padding: 2rem 1rem;
    }

    .booking-section h2 {
        font-size: 1.5rem;
    }

    .thankyou-section {
        padding: 2rem 1rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-content h4,
    .step-content p {
        text-align: center;
    }

    .success-checkmark {
        width: 80px;
        height: 80px;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }
}.policySection {
  padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: calc(100vh - 200px);
}

.policyContainer {
   max-width     :   900px;
 margin :        0 auto;
    text-align: left;
}

.policyContainer h1 {
   font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
                    font-weight     :        700;
}

.policyContainer h2 {
    font-size: 2rem;
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
   font-weight: 600;
}

.policyContainer h3 {
   font-size: 1.3rem;
  color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
  font-weight: 600; 
	
}

.policyContainer p

{
  color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.8;
  font-size: 1.05rem;
}

.policyContainer > p:first-of-type {
    font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}@media (max-width: 1024px) {
    .policyContainer h1 {
        font-size: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.8rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
        min-height: auto;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer h3 {
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
}