* {
   margin: 0;
   padding   :        0;
    box-sizing     :      border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

html {
  scroll-behavior: smooth;
	
}

body    {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

.navbar-main {
  background: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position   :      sticky;
     top  :       0;
   z-index: 1000;
}

.nav-container {
   max-width: 1200px;
  margin: 0 auto;
   padding     :       1rem 2rem;
    display: flex;
					justify-content: space-between;
	align-items: center;
}

.logo-section {
  flex: 0 0 auto;
}

.navbar-logo {
          height: 45px;
    width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu   {
  display: flex;
   gap: 2.5rem;
    flex: 1;
   justify-content: center;
}

.nav-link {
    text-decoration: none;
  color: var(--text-dark);
    font-weight: 500;
   transition: color 0.3s ease;
	 font-size: 1rem;
}

.nav-link:hover {
  color: var(--primary-color);
}

.burger-btn {


   display: none;
  background     :  none;
   border: none;
    cursor: pointer;
  padding: 0.5rem;

}

.burger-btn img {
  width: 28px;
	 height :   28px;
  filter: brightness(0) invert(1);
}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-white);
        padding: 2rem 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .burger-btn {
        display: block;
    }

    .nav-container {
        padding: 1rem;
    }
}.hero-section {
          max-width: 1200px;
                    margin: 0 auto;
    padding: 4rem 2rem;
                    display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 4rem;
   align-items: center;
}

.hero-content h1  
  {
    font-size: 3.5rem;
  font-weight:     700;
   margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
  color: var(--text-light);
   margin-bottom: 2.5rem;
}

.cta-button {
					display: inline-block;
        padding    :    1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
 color: white;
  text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
   transition  :       transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.hero-visual img
{


  width: 100%;

   height: auto;

  border-radius: 12px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	}
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}.about-section
	{
  background: var(--bg-light);
         padding: 4rem 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.about-section h2 {
   font-size:    2.5rem;
   margin-bottom: 3rem;
  text-align  :        center;
}

.about-grid {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
  background: var(--bg-white);
 padding:   2rem;
  border-radius  :  10px;
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about-card h3 {
   font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.about-card p{
  color: var(--text-light);
  line-height: 1.7;
}

.services-preview {
    padding: 4rem 2rem;
   max-width: 1200px;
  margin: 0 auto;
}

.services-preview h2 {
	 font-size: 2.5rem;
    margin-bottom: 3rem;
  text-align: center;
}

.services-grid {
	 display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap :       2rem;
}

.service-card {
  background: var(--bg-white);
                    border-radius  :      12px;
    overflow    :      hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
               transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover 
 {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width:   100%;
         height: 200px;
    object-fit: cover;
} 

.service-card h3 {
                    font-size : 1.2rem;
    padding: 1.5rem 1.5rem 0.5rem;
  color: var(--text-dark);
}

.service-card p


{
	 padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
   font-size: 0.95rem;
     }

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
   color  :white;
    padding:        4rem 2rem;
  text-align:  center;
   margin: 2rem 0;
}

.cta-content h2 {
  font-size: 2.2rem;
   margin-bottom: 1.5rem;
}

.cta-content p {
        font-size: 1.1rem;
    margin-bottom: 2rem;
  max-width: 600px;
    margin-left:       auto;
  margin-right: auto;
    opacity    :       0.95;
}

.cta-button-primary  
  {
  display: inline-block;
   padding: 1.2rem 3rem;
	 background: white;
  color: var(--primary-color);
  text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
  transition:   transform 0.3s ease, box-shadow 0.3s ease;
   font-size: 1.05rem;
}

.cta-button-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-section {
  padding: 4rem 2rem;
        max-width: 700px;
    margin: 0 auto;
}


.contact-section h2  {
    font-size: 2.2rem;
	margin-bottom: 0.5rem;
    text-align: center;


}

.contact-subtitle {
       text-align: center;
  color: var(--text-light);
   margin-bottom: 3rem;
   font-size: 1.05rem;
} 

.contact-form {

  background: var(--bg-light);
   padding: 2.5rem;
	border-radius: 12px;
  border: 1px solid var(--border-color);


} 

.form-group {
          margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
   font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea    {
    padding     :        0.9rem;
  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(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
  font-family: inherit;
}

.form-submit {
  width  :100%;
    padding  : 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	 color     :    white;
   border: none;
        border-radius: 6px;
	font-weight: 600;
   font-size: 1rem;
  cursor     :       pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 1rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.footer-main {
  background: var(--text-dark);

    color: white;

     padding: 3rem 2rem 1rem;

  margin-top: 4rem;
}

.footer-container {
   max-width: 1200px;
                    margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
	 margin-bottom: 2rem;
}



.footer-section h4 {
    font-size: 1.1rem;
   margin-bottom: 1.2rem;
  color: var(--accent-color);
}

.footer-section a {
   display: block;
   color: #b0b0b0;
   text-decoration: none;
    margin-bottom: 0.7rem;
   transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-section p
	{
    color   :   #b0b0b0;
   line-height: 1.8;
       font-size: 0.95rem;
}

.phone-contact {
   font-weight  :     600;
  color: var(--accent-color);
    margin-top: 1rem !important;
}

.footer-logo {
   height    :        50px;
  width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-bottom {
   max-width: 1200px;
   margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   text-align     :  center;
  color: #808080;
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .about-section,
    .services-preview,
    .contact-section {
        padding: 2rem 1rem;
    }

    .about-section h2,
    .services-preview h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 2.5rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }
}

.services-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 2rem;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="30" cy="30" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="70" cy="40" r="1" fill="white" opacity="0.1"/><circle cx="20" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="70" r="1" fill="white" opacity="0.1"/></svg>') repeat;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.services-hero h1 {
    font-size: 3rem;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-item-reverse {
    grid-template-columns: 1fr 1fr;
}

.service-item-reverse .service-image-wrapper {
    order: 2;
}

.service-item-reverse .service-content {
    order: 1;
}

.service-image-wrapper {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.service-image-wrapper:hover img {
    transform: scale(1.05);
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-meta {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.service-meta span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-section {
    background: var(--bg-light);
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.price-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.price-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.price-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.price-tag {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.price-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.95rem;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
    border: 2px solid var(--border-color);
}

.price-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.price-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.price-button.primary:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.process-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.step-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 15px;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.faq-section {
    background: var(--bg-light);
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--bg-white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-arrow {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-light);
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-final {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    margin-bottom: 0;
}

.cta-final h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.cta-button-final:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.thankyou-container {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    text-align: center;
}

.thankyou-icon {
    margin-bottom: 2rem;
}

.thankyou-icon img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
    animation: popIn 0.6s ease-out;
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {
   font-size: 2.5rem;
    margin-bottom:       0.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
   background-clip   :      text;
}

.thankyou-main     {
  font-size    :1.2rem;
  color: var(--text-light);
	margin-bottom: 2rem;
}

.thankyou-content {
   text-align     :     left; 
	  margin: 2rem 0; 
	   padding: 2rem; 
	  background: var(--bg-light); 
		 border-radius: 10px;
}

.thankyou-content h2 {

	    font-size: 1.5rem;
   margin-bottom: 1rem;
  color: var(--text-dark);}

.thankyou-content p {
  color: var(--text-light);
	line-height: 1.7;
   margin-bottom   : 1.5rem;
}

.next-steps {
  display: flex;
      flex-direction: column;
    gap: 1.5rem;
   margin: 2rem 0;
}

.step {
    display     :     flex;

    gap: 1rem;

  align-items: flex-start;
}

.step-icon {
   flex-shrink: 0;
    width: 50px;
	height: 50px;
  background: var(--bg-white);
    border-radius: 8px;
   display: flex;
   align-items: center;
    justify-content: center;
}

.step-icon img {
	width  :     28px;
    height: 28px;
  filter: brightness(0) invert(1);
} 

.step-text h3 {
   font-size: 1rem;
  color: var(--text-dark);
     margin-bottom: 0.3rem;
}

.step-text p {
       font-size   :  0.9rem;
  color: var(--text-light);
   margin: 0;
     }

.quick-info  
  {
  background: var(--bg-white);
   padding: 1.5rem;
       border-radius: 8px;
    margin-top: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.quick-info h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.quick-info ul {
  list-style: none;
  padding: 0;
}

.quick-info li {
	padding: 0.5rem 0;
  color: var(--text-light);
    font-size    :  0.9rem;
}

.quick-info li::before {
  content: '✓ ';
  color: var(--primary-color);
   font-weight: 600;
    margin-right: 0.5rem;
}

.contact-info-thank {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}



.contact-info-thank h3 {
  color: white; 
  margin-bottom: 1rem;
}

.contact-info-thank p {
  color: rgba(255, 255, 255, 0.9);
     margin: 0.5rem 0;
}

.phone-thank 
 {
    font-size: 1.3rem;
    font-weight :       700;
  margin  :1rem 0 !important;
}

.address-thank {
   font-size: 0.95rem;
}

.action-buttons 
 {
   display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap   :      wrap;
}

.button-primary,
.button-secondary {
   padding: 1rem;
   font-weight: 600;
  border-radius: 8px;
   text-align: center;
    transition :   all 0.3s ease;
  text-decoration: none;
  min-width: 150px;
  flex: 1;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
} 

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.button-secondary {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 2px solid var(--border-color);}

.button-secondary:hover
{
  border-color: var(--primary-color);
  color: var(--primary-color); 
	
}

.social-proof-thank
	{
  background: var(--bg-light);
    padding: 3rem 2rem;
    text-align: center;
}

.social-proof-thank h2 {
    font-size: 2rem;
   margin-bottom: 2rem;
  color: var(--text-dark);
}

.proof-items	{
    display   :     grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
   gap :      2rem;
  max-width : 1000px;
   margin: 0 auto;
}

.proof-item {
  background: var(--bg-white);
  padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.proof-number {
   font-size: 2.5rem;
   font-weight: 700;
  color: var(--primary-color);
    margin-bottom: 0.5rem;

}

.proof-text {
  color: var(--text-light);
    font-size: 0.95rem;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }

    .service-item,
    .service-item-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-item-reverse .service-image-wrapper,
    .service-item-reverse .service-content {
        order: unset;
    }

    .service-content h2 {
        font-size: 1.6rem;
    }

    .service-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        flex: 1;
        min-width: unset;
    }

    .proof-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-hero {
        min-height: 200px;
        padding: 2rem 1rem;
    }

    .services-hero h1 {
        font-size: 1.4rem;
    }

    .pricing-section,
    .process-section,
    .faq-section {
        padding: 2rem 1rem;
    }

    .proof-items {
        grid-template-columns: 1fr;
    }
}.policy-hero     {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color    :     white;
    padding     :3rem 2rem;
       text-align: center;
   min-height: 250px;
  display: flex;
  flex-direction: column;
   justify-content: center;
    align-items: center;
}

.policy-hero h1 {
    font-size     :      2.8rem;
    margin-bottom: 1rem;
      font-weight   :      700;
}

.policy-hero p {
   	 font-size  :1.1rem;
   opacity: 0.95;
		 max-width: 600px;
	}

.policy-section {
     padding:      4rem 2rem;
  background: var(--bg-white);
}

.policy-container {
   max-width:     850px;
  margin: 0 auto;
      text-align: left;
}

.policy-container h2 {
    font-size: 1.8rem;
  color: var(--text-dark);
                    margin: 2.5rem 0 1.2rem 0;
   font-weight: 600;
  border-bottom: 2px solid var(--primary-color);
   padding-bottom: 0.8rem;
     }

.policy-container h2:first-child {
	margin-top: 0;
}

.policy-container p		{
  color: var(--text-light);
  margin-bottom: 1.5rem;
               line-height: 1.8;
   font-size: 1rem;
    text-align: justify;
}@media (max-width: 768px) {
    .policy-hero {
        min-height: 200px;
        padding: 2rem 1rem;
    }

    .policy-hero h1 {
        font-size: 2rem;
    }

    .policy-hero p {
        font-size: 1rem;
    }

    .policy-section {
        padding: 2.5rem 1rem;
    }

    .policy-container {
        max-width: 100%;
    }

    .policy-container h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }

    .policy-container p {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-hero h1 {
        font-size: 1.6rem;
    }

    .policy-hero p {
        font-size: 0.9rem;
    }

    .policy-section {
        padding: 1.5rem 1rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}