*,
*::before,
*::after {
    padding: 0;
   box-sizing: border-box;
   margin: 0;
} 

html,
body	{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height  :  1.6;
  color: #2c3e50;
                    background-color   : #fafafa;

}

.navigacija-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 1rem 0;
  position: sticky;
    top   : 0;
	z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
   margin    :   0 auto;
	 padding: 0 2rem;
    display: flex;
       justify-content: space-between;
   align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
   display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: white;
   text-decoration: none;
    font-weight: 500;
   transition: opacity 0.3s ease;
    font-size: 1rem; 

}

.nav-links a:hover {
                    opacity: 0.8;
}

.burger-toggle {
   display: none;
  background: none;
       border: none;
       cursor: pointer;
   padding: 0.5rem;

}

.burger-icon  
  {
  width: 28px;
 height: 28px;
   stroke: white;
  fill: none;
  stroke-width: 2;
}@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .burger-toggle {
        display: block;
    }
}.hero-section {
	   display: grid;
    grid-template-columns: 1fr 1fr;
   gap   :     3rem;
	 align-items: center;
   max-width: 1200px;
      margin   :      4rem auto;
   padding :   0 2rem;
     }

.hero-content h1
{
	 font-size: 3.5rem;
  line-height: 1.2;
	margin-bottom: 1.5rem;
   color: #1a1a1a;
	 font-weight:      700;
}

.hero-subtitle {
	   font-size: 1.2rem;
    color: #555;
   margin-bottom     :     2rem;
  line-height: 1.8;}

.hero-image img {
  width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);


}

.cta-button {
    display     : inline-block;
   padding: 1rem 2.5rem;
   border-radius: 8px;
   text-decoration    :none;
  font-weight: 600;
  transition: all 0.3s ease;
    border: none;
  cursor: pointer;
  font-size: 1rem;


}

.primary-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.primary-btn:hover {

	  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.secondary-btn {
   background: #f39c12;
  color    :        white;
   border: 2px solid #f39c12;
}

.secondary-btn:hover {
  background: #e67e22;
	border-color: #e67e22;
  transform: scale(1.05);
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        margin: 2rem auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}.services-preview
{
       max-width: 1200px;
 margin: 5rem auto;
          padding: 0 2rem;


}

.services-preview h2,
.benefits-section h2,
.approach-section h2,
.upcoming-events h2,
.cta-section h2,
.contact-section h2 {
  font-size     :   2.5rem;
   margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
	font-weight: 700;


}  

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.service-card {
  background: white;
    padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
   border-left: 4px solid #667eea;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.service-icon {
   width: 60px;
    height: 60px;
   margin-bottom: 1.5rem;
        display: flex;
   align-items: center;
    justify-content  :center;
     }

.service-icon img {
	width: 100%;
  height: 100%;
  stroke: #667eea;
    stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.2));
}

.service-card h3  {
   font-size: 1.3rem;
    margin-bottom: 1rem;
  color: #2c3e50;
}

.service-card p

{
  color    :     #666;
    line-height  :  1.7;
      font-size: 0.95rem;


}

.benefits-section	{
  max-width: 1200px;
    margin: 5rem auto;
  padding:  0 2rem;
}

.benefits-content {
  display: grid;
   grid-template-columns  :       1fr 1fr;
 gap: 3rem;
    align-items: center;
}

.benefits-text p {
               font-size: 1.05rem;
    color: #555;
   margin-bottom: 1.5rem;
    line-height: 1.8;
}

.benefits-list   {
   list-style: none;
     }

.benefits-list li {
    padding :        0.8rem 0 0.8rem 2rem;
  position    :       relative;
    color: #2c3e50;
   font-size     :       1rem;
}

.benefits-list li::before {
  content: '';
  position:absolute;
   left: 0;
   top: 1rem;
    width: 8px;
					height:     8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
}

.benefits-content img {
    width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .benefits-content {
        grid-template-columns: 1fr;
    }
}

.approach-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    background: #f5f7fa;
    border-radius: 12px;
    padding: 3rem 2rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.approach-card:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
    transform: translateY(-3px);
}

.approach-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.approach-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.card-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(102, 126, 234, 0.1);
}

.upcoming-events {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #f39c12;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.2);
}

.event-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.event-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-meta {
    font-size: 0.85rem;
    color: #f39c12;
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin: 5rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.footer-section {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-block h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #f39c12;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.address {
    color: #bbb;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.phone {
    color: #f39c12;
    font-weight: 600;
}

.footer-block p {
    color: #bbb;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    color: #667eea;
}

a:visited {
    color: #764ba2;
}

.contact-link {
    color: white;
}

.contact-link:visited {
    color: white;
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .services-preview h2,
    .benefits-section h2,
    .approach-section h2,
    .upcoming-events h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .events-container,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}.services-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 4rem 2rem;
   text-align: center;
	margin-top: 70px;
}

.services-header h1 {
	font-size: 3rem;
   margin-bottom: 1rem;
  font-weight: 700;


}

.services-header p {
    font-size: 1.3rem;
   opacity: 0.95;
     max-width: 600px;
               margin: 0 auto;
}

.services-detailed {
   max-width: 1200px;
    margin: 4rem auto;
  padding     : 0 2rem;
}

.service-detail-item {
   display: grid;
   gap: 3rem;
    align-items: center;
       padding: 2rem 0;
  margin-bottom: 5rem;
  grid-template-columns  :  1fr 1fr;
}

.service-detail-item.reverse {
  grid-template-columns:        1fr 1fr;
    direction   :   rtl;
}

.service-detail-item.reverse > * {


                    direction: ltr;
     }

.detail-image img {
  width: 100%;
     height  :       auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
} 

.detail-content h2 {
   font-size: 2.2rem;
  margin-bottom: 1.5rem;
	color: #1a1a1a;
      font-weight: 700;
}

.detail-content p {
	   font-size: 1rem;
   line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
     }  

.detail-list {
        list-style: none; 
          margin-bottom :     2rem;
}

.detail-list li {
					padding: 0.7rem 0 0.7rem 2rem;
   position: relative;
    color :       #2c3e50;
   font-size: 0.95rem;
    line-height: 1.6;
}

.detail-list li::before {
  content: '';
  position: absolute;
  left    : 0;
	top: 1rem;
   width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
}

.detail-pricing {
   display   :     flex;
   align-items: baseline;
   gap: 1rem;
   padding-top:1.5rem;
   border-top: 2px solid #e0e0e0;


}

.price-label {
   font-size:       0.9rem; 
	          color: #999; 
	  font-weight: 500;
}

.price-amount {
   font-size    :2rem; 
	  font-weight   :       700; 
	   color: #667eea;
}
@media (max-width: 768px) {
    .service-detail-item,
    .service-detail-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .service-detail-item.reverse > * {
        direction: ltr;
    }

    .services-header h1 {
        font-size: 2rem;
    }

    .detail-content h2 {
        font-size: 1.6rem;
    }
}.packages-section {
    max-width: 1200px;
       margin: 5rem auto;
   	 padding  :    0 2rem;
}

.packages-grid 
 {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap :        2rem;
   margin-top: 3rem;
}

.package-card {
   background: white;
    border-radius    :   12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
       border: 2px solid transparent;
    transition: all 0.3s ease;
   display: flex;
   flex-direction: column;}

.package-card h3 {
  font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;

}

.package-description {
          color: #999;
   font-size: 0.9rem;
	 margin-bottom    :     1.5rem;
}

.package-price {

	    margin-bottom: 2rem;
    align-items: baseline;
    display: flex;
    gap: 0.5rem;
     }

.currency {
  font-size: 0.9rem;
    color: #999;
}

.amount {
   font-size:    2.5rem;
  font-weight: 700;
  color     :     #667eea;
}

.period {
    font-size: 0.95rem;
  color: #999;
}

.package-features  {
       list-style: none;
   margin-bottom: 2rem;
   flex-grow: 1;
}

.package-features li {
  padding :       0.7rem 0 0.7rem 1.5rem;
  position: relative;
  color: #555;
   font-size: 0.95rem;
}

.package-features li::before {
  content: '✓';
    position     :  absolute;
  left: 0;
  color: #2ecc71;
          font-weight: bold;
}

.package-btn {
  display    :     inline-block;
   padding: 1rem 2rem;
   background: #f5f7fa;
   color  :   #667eea;
   border: 2px solid #667eea;
   border-radius   :6px;
  text-decoration: none;
   text-align: center;
   font-weight: 600;
  transition: all 0.3s ease;
   cursor: pointer;
}

.package-btn:hover    {
    background: #667eea;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
	 color    :    white;
  transform: translateY(-2px);
  -ms-transform: translateY(-2px);
}

.package-card.professional {
         border-color: #f39c12;
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.15);
  transform: scale(1.02);
}

.package-card.professional .package-btn {

   border-color: #f39c12;
    color: #f39c12;
	}

.package-card.professional .package-btn.featured:hover

{
   background: #f39c12;
   color: white;
}@media (max-width: 768px) {
    .package-card.professional {
        transform: scale(1);
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
}.testimonials-section {
   margin :5rem auto;
    padding :0 2rem;
   max-width: 1200px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
		margin-top: 3rem;
}

.testimonial-card {

   background: white;
    padding: 2rem;
	 border-radius:       12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #f39c12;
	 transition     :all 0.3s ease;

}

.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.15);
  transform: translateY(-3px);
}



.testimonial-stars {
    margin-bottom: 1rem;
}

.star {
	 color: #f39c12;
	font-size: 1.2rem;
   margin-right: 0.2rem;
}

.testimonial-text {
  line-height: 1.7;
	color: #555;
  margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.95rem;
}

.testimonial-author {
	color: #999;
       font-size: 0.9rem;
   	 font-weight: 600;
}
	/* Performance critical */

.faq-section {


    max-width: 800px;
  margin:5rem auto;
   padding: 0 2rem; 

}

.faq-container {
   margin-top: 2rem;
}

.faq-item {
	 margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
	border-radius  :       8px;
    overflow: hidden;
   background: white;
}



.faq-question {
   width: 100%;
	padding    :    1.5rem;
   background: #f5f7fa;
  border: none;
  cursor: pointer;
  display: flex;
   justify-content     :   space-between;
   align-items: center;
   font-size: 1rem;
                    font-weight: 600;
    color: #2c3e50;
    transition:   all 0.3s ease;


}


.faq-question:hover {
  background :      #eff2f7;
}
	/* Temporary fix */

.faq-icon {
    width: 24px;
     height: 24px;
      stroke   : #667eea;
      fill: none;
       stroke-width: 2;
     transition: transform 0.3s ease;
      flex-shrink: 0;


}

/* State modifiers */

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
   padding: 0 1.5rem;
  max-height  :       0;
               overflow: hidden;
  transition: all 0.3s ease;
                    background   :white;
}

.faq-item.active .faq-answer {
   padding: 1.5rem;
	 max-height:       500px;
}
/* Responsive design */

	/* Framework override */

.faq-answer p {
       color: #555;
  line-height: 1.7;
  margin: 0;
}



.thankyou-section


{
    display: flex;
	 justify-content :        center;
   align-items: center;
	 min-height   :500px;
    padding    :4rem 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
         margin-top: 70px;
}

.thankyou-container {
   text-align  :center;
   background: white;
     padding: 4rem;
	 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   max-width: 600px;
}

.thankyou-icon {
  margin-bottom: 2rem;


}

.thankyou-icon img {
    width: 80px;
   height: 80px;
   stroke: #2ecc71;
    fill: none;
    stroke-width: 2;
  filter: drop-shadow(0 4px 8px rgba(46, 204, 113, 0.2));
}

.thankyou-container h1 {
	font-size: 2.5rem;
  margin-bottom: 0.5rem;
    color: #1a1a1a;
     }

.thankyou-subtitle {
    font-size: 1.2rem;
  color: #667eea;
   margin-bottom   :       2rem;
    font-weight: 600;
}

.thankyou-message {
    background: #f5f7fa; 
	    padding: 2rem; 
	  border-radius: 8px; 
	  margin-bottom: 2rem; 
	   text-align: left;
}

.thankyou-message p {
     color: #555;
    margin-bottom: 1rem;
  line-height     :1.6;
}

.contact-info
	{
   color: #667eea;
               font-size: 1.1rem;
}

.thankyou-actions {
   display: flex;
	gap: 1.5rem;
    justify-content   :     center;
}

.btn-primary,
.btn-secondary {
	display: inline-block;
   padding: 1rem 2rem;
   border-radius: 6px;
   text-decoration: none;
          font-weight: 600;
      transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color   :      white;
}
/* State modifiers */
	/* Hack for old browsers */


.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
   background  :       white;
  color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
   background: #f5f7fa;
}
/* Temporary fix */



/* Browser compatibility */
.next-steps {
	 padding: 0 2rem;
    max-width: 1200px;
               margin   :       4rem auto;
}
/* Hack for old browsers */

	/* FIXME: IE11 compatibility */
.next-steps h2   {


  font-size: 2rem;
    text-align: center;
  margin-bottom: 3rem;
               color: #1a1a1a;



}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}  

.step-card {
    text-align: center;
	padding: 2rem;
   background: white;
      border-radius    :        12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}
/* Browser compatibility */



/* Browser compatibility */
.step-number {
	 display: inline-flex;
       justify-content   :        center;
   	 align-items: center;
   	width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color :   white;
      border-radius: 50%;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;}

.step-card h3 {
   font-size: 1.2rem;
   margin-bottom: 0.8rem;
   color: #1a1a1a;
} 

.step-card p {
   color: #666;
               font-size: 0.95rem;
   line-height: 1.6;
}

.cta-follow-up {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
    padding: 3rem 2rem;
  text-align: center;
	margin: 4rem 0;
    border-radius: 12px;
   max-width: 1200px;
    margin-left: auto;
  margin-right: auto;
}

.cta-follow-up h2
{


      color: white;
	margin-bottom: 1rem;

}
	/* Cross-browser fix */

/* Custom modifications */
/* Colors and backgrounds */

.cta-follow-up p {
			font-size: 1.1rem;
        margin-bottom: 2rem;
   opacity: 0.95; 

}
@media (max-width: 768px) {
    .thankyou-section {
        min-height: auto;
        padding: 2rem;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .services-header h1 {
        font-size: 2rem;
    }

    .detail-content h2 {
        font-size: 1.5rem;
    }

    .service-detail-item {
        gap: 1.5rem;
    }
}.policySection {
  padding: 80px 2rem;
    background: #f8f9fa;
}

.policyContainer {
               max-width: 800px;
    margin     :      0 auto;
   text-align    :    left;
}

.policyContainer h2 {
    font-size: 2.5rem;
   color   :    #2c3e50;
	 margin-bottom: 1.5rem;
   font-weight: 700;
}

/* Layout styles */
	/* NOTE: keep for legacy support */
.policyContainer p	{

		font-size  :1.1rem;
  line-height :    1.7;
    color     :     #7f8c8d;
   margin-bottom: 1.5rem;
	}
@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}