header {
  background: linear-gradient(135deg, #1e3a5f 0%, #2a5f8d 100%);
   color: white;
      padding: 1rem 0;
         position: sticky;
  top:    0;
    z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
  margin: 0 auto;
    display: flex;
  justify-content: space-between;
    align-items :      center;
   padding: 0 2rem;
}

.logo-section {
  display: flex;
	align-items: center;
    gap: 1rem;
    text-decoration: none;
   color: white;
}

.logo-section img{
   height: 45px;
   width :      auto;
}

.site-name {
    font-size: 1.8rem;
    font-weight: 700;
  letter-spacing: 0.5px;
}

nav  {
  display: flex;
   gap: 2rem;
    align-items: center;
}

nav a

{
   color: white;
  text-decoration: none;
    font-weight: 500;
                    transition: color 0.3s ease;
    font-size    :       0.95rem;
}

nav a:hover {
     color: #64b5f6;
}

.burger-menu {
  flex-direction: column;
   gap: 5px;
  display: none;
    cursor: pointer;
}

.burger-line {

	  width: 25px;
  height: 3px;
    background: white;
   transition: all 0.3s ease;

}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .burger-line:nth-child(2) {
   opacity: 0;
} 

.burger-menu.active .burger-line:nth-child(3)		{
	  transform: rotate(-45deg) translate(7px, -7px);


}@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #1e3a5f;
    gap: 0;
    padding: 2rem;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .header-container {
    padding: 0 1rem;
  }

  .site-name {
    font-size: 1.4rem;
  }
}.page-header {
  background: linear-gradient(135deg, rgba(30,58,95,0.85) 0%, rgba(42,95,141,0.85) 100%), url('resources/team_building_workshop_professional_photography.webp');
   background-size  :     cover;
   background-position: center;
	color: white;
  padding: 5rem 2rem 3rem;
                    text-align   :      center;
    position: relative;
  min-height   :        300px;
	display: flex;
	align-items: center;
    justify-content: center;
}

.header-overlay {
      position: absolute;

   top: 0;

   left: 0;

      right: 0;

       bottom: 0;

  background: rgba(0,0,0,0.3);
}

.header-content   {
	position: relative;
  z-index: 2;
}

.page-header h1 {
    font-size:  2.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.page-header p
{
   font-size: 1.2rem;
    opacity     :  0.95;
}



.services-intro {
   padding: 4rem 2rem;
  text-align  :        center;
}

.intro-text {


   max-width: 750px;
   margin: 0 auto;
			font-size     :  1.05rem;
   line-height: 1.8;
   color:   #555;
} 

.services-detailed

{
  background: #f8fafb;
	padding: 5rem 0;
}

.service-detailed-item {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap   :    3rem;
   margin-bottom    : 4rem;
   align-items: center;
}

.service-detailed-item.reverse{
   direction: rtl;
}

.service-detailed-item.reverse > * {
                    direction: ltr;
	
}  

.service-content {
	 padding: 1rem;
}

.service-content h3     {
          font-size: 1.8rem;
    color: #1e3a5f;
   margin-bottom     :        1rem;
          font-weight: 700;
}

.service-content p {
       color  :    #666;
    line-height: 1.8;
	margin-bottom: 1.5rem;
  font-size :        0.95rem;

}

.service-features{
    list-style: none;
   padding: 0; 

}

.service-features li {
    padding: 0.6rem 0;
   padding-left: 1.8rem;
	position: relative;
  color: #555;
    font-size: 0.9rem;
}

.service-features li:before {
  content: "✓";
  position: absolute;
               left: 0;
  color: #ff6b35;
	font-weight  : bold;
   font-size    :      1.2rem;
}

.service-image {
  border-radius: 8px;
    overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-image img {
  width: 100%;
    height: 350px;
	 object-fit: cover;
    display: block;
       transition: transform 0.3s ease;
}

.service-detailed-item:hover .service-image img {
  transform: scale(1.03);


}

.services-pricing		{
    padding: 5rem 2rem;
    background : white;
}

.pricing-grid {
	  display     :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 2rem;
  margin-top: 3rem;
	}

.pricing-card {
   text-align: center;
      padding: 2.5rem 2rem;
	border-radius: 8px;
  background: #f8fafb;
  border: 2px solid #e0e6ed;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);


}

.pricing-card.featured	{
  background: linear-gradient(135deg, #2a5f8d 0%, #1e3a5f 100%);
    color: white;
	border-color: #2a5f8d;
  transform: scale(1.05);
}

.pricing-card h4 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
   color: #1e3a5f;
} 

.pricing-card.featured h4		{


    color: white;}

.price {
    font-size: 2rem;
  font-weight: 700;
        color :      #ff6b35;
    margin     :    1rem 0;
}

.pricing-card.featured .price{
    color: #64b5f6;
}

.description   {
    font-size: 0.9rem;
    color: #888;
   margin-bottom: 1.5rem;
}



.pricing-card.featured .description {
   color: #b0c4de;
}

.pricing-features {
   list-style: none;
   padding: 0;
    margin-top: 1.5rem; 

}

.pricing-features li {
               padding: 0.7rem 0;
   color  :        #666;
	font-size: 0.9rem;
    border-bottom: 1px solid #e0e6ed;
}

.pricing-card.featured .pricing-features li {
   color: #e0e6ed;
  border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-features li:last-child {


	border-bottom: none;
	}

.process-section {
    padding: 5rem 2rem;

    background:   #f0f4f8;
}

.process-steps {
    display     :       grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  margin-top: 3rem;
}

.process-step {
    background: white;
  padding: 2rem;
          border-radius: 8px;
          text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
     }

.step-number {
   width  :50px;
  height: 50px;
    background: #ff6b35;
  color: white;
    border-radius    :      50%;
  display: flex;
  align-items: center;
    justify-content: center;
   font-size: 1.8rem;
   font-weight: 700;
    margin     :        0 auto 1rem;
}

.process-step h4  
  {
   color: #1e3a5f;
  font-size: 1.2rem;
	margin-bottom: 0.8rem;


}

.process-step p {
               color: #666;
  font-size :      0.9rem;
   line-height: 1.6;
}

.cta-services {
	  background: linear-gradient(135deg, #1e3a5f 0%, #2a5f8d 100%);
    color: white;
                    padding :     4rem 2rem;
 text-align: center;
   margin-top: 3rem;


}

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-services p {
  font-size: 1.1rem;
  margin-bottom:     2rem;
    opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
   margin-right: auto;
}  

.thank-you-section {
	padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8fafb 0%, #f0f4f8 100%);
	 min-height: 60vh;
   display: flex;
  align-items: center; 
	
     }

.thank-you-card {
    background:       white;
      padding: 3rem;
   	border-radius: 8px;
      max-width: 700px;
      margin: 0 auto;
     box-shadow: 0 8px 24px rgba(0,0,0,0.12);
      text-align: center;
}

.success-icon {
	 width: 80px;
   height: 80px;
   margin: 0 auto 2rem;
}

.success-icon img {
  width: 100%;
   height: 100%;
  filter: invert(0.2) sepia(1) hue-rotate(25deg) saturate(3);
}

.thank-you-card h1 {
   color: #1e3a5f;
    font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.thank-you-message {
	font-size :1.1rem;
      color: #666;
    margin-bottom    : 2rem;
}

.confirmation-details {
   background: #f8fafb;
  padding: 2rem;
   border-radius: 8px;
               margin: 2rem 0;
    text-align: left;
}

.confirmation-details p {
    color: #666;
	 line-height: 1.8;
   margin-bottom: 1rem;
 font-size: 0.95rem;
	}

.submitted-info {
   background: white;
  padding  :     1.5rem;
	border-left: 4px solid #ff6b35;
   margin: 1.5rem 0;
  border-radius: 4px;
}  

.submitted-info h3 {
   color: #1e3a5f;
  font-size: 1rem;
   margin-bottom: 1rem;
}

.submitted-info ul


{
    list-style   :none;
    padding: 0;
}

.submitted-info li    {
   padding: 0.5rem 0;
    color: #666;
  font-size: 0.9rem;
}

.thank-you-actions {
     display: flex;
   gap: 1rem;
		 margin-top: 2rem;
    justify-content: center;
    flex-wrap     :      wrap;
     }

.secondary-button {
  display: inline-block;
	  background: white;
	        color  :      #2a5f8d;
	  padding: 0.9rem 2.5rem;
		border-radius: 5px;
	   text-decoration: none;
	  font-weight: 600;
	  transition    :      all 0.3s ease;
	   border: 2px solid #2a5f8d;
	   cursor: pointer;
	  font-size: 1rem;
}

.secondary-button:hover 
 {
   color   :white;
 background     :      #2a5f8d;
  transform: translateY(-2px); 

}

.what-next {
        padding: 5rem 2rem;
    background: white;
}

.what-next h2 {

    text-align: center; 
	    font-size  : 2.2rem; 
	    color: #1e3a5f; 
	  margin-bottom: 3rem;}

.next-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  max-width  :  1200px;
   margin: 0 auto;
}

.next-step
{

    background: #f8fafb;
   padding     :   2rem;
        border-radius: 8px;
   text-align: center;
  border-top   :     3px solid #ff6b35;
  transition: all 0.3s ease;
}

.next-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.step-icon {
   width: 60px;
    height: 60px;
   margin: 0 auto 1.5rem;
}

.step-icon img {
  width: 100%;
    height: 100%;
}

.next-step h3  {
      color    :    #1e3a5f;
	font-size    :   1.3rem;
    margin-bottom: 0.8rem;
}

.next-step p {
	   color: #666;
    line-height: 1.6;
  font-size: 0.95rem;}@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .service-detailed-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .service-image {
    order: -1;
  }

  .services-intro {
    padding: 3rem 1rem;
  }

  .services-pricing {
    padding: 3rem 1rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .thank-you-card {
    padding: 2rem;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .cta-button, .secondary-button {
    width: 100%;
  }

  .next-steps {
    grid-template-columns: 1fr;
  }
}.policySection {
    padding :80px 2rem;
  background: #f8f9fa;
}

.policyContainer {


   max-width: 800px;
        margin: 0 auto;
  text-align: left;


}

.policyContainer h2

{
  margin-bottom: 1.5rem;
    font-weight: 700;
   color: #2c3e50;
   font-size: 2.5rem;
}

.policyContainer p {
     color: #7f8c8d;
	margin-bottom: 1.5rem;
    line-height: 1.7;
   font-size: 1.1rem;
}@media (max-width: 768px) {
  .policyContainer h2 {
    font-size: 2rem;
  }
  .policyContainer p {
    font-size: 1rem;
  }
  .policySection {
    padding: 60px 1rem;
  }
}