html, body     {
        margin: 0;
  padding   :     0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;


}

.modal-overlay {
          position: fixed;
  top: 0;
       left: 0;
    width    :        100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
   z-index: 9999;
   display: none;
   opacity: 0;
   transition: opacity 0.3s ease;
}

.modal-overlay.show  
  {
    display: flex;
   align-items: center;
  justify-content: center;
   opacity: 1;
}

.modal-container {
	background: white;
   border-radius  :12px;
   max-width: 500px;
    width: 90%;
  max-height: 80vh;
  overflow-y:     auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
	 transition: transform 0.3s ease;
}

.modal-overlay.show .modal-container {
  transform: scale(1);
}

.modal-header {
    display: flex;
    padding: 24px 24px 16px;
  border-bottom: 1px solid #edf2f7;
   align-items: center;
  justify-content  :  space-between;
}

.modal-title {
   font-size: 1.5rem; 
  font-weight: 600; 
  color: #2d3748; 
   margin: 0;
}

.modal-close {
      background:    none;
    border: none;
    font-size   :        24px;
	 color    :#718096;
  cursor  :     pointer;
   padding: 4px;
   line-height: 1;
    transition: color 0.2s ease;}

.modal-close:hover {
   color:        #2d3748;
}

.modal-body {
	 padding: 24px;
}

.modal-text {
         color: #4a5568;
   line-height: 1.6;
  margin-bottom: 20px; 
	
}

.modal-footer {
   padding: 16px 24px 24px;
    display: flex;
  justify-content: flex-end;
    gap: 12px;

}

.modal-btn {
   padding: 10px 20px;
  border: none;
  border-radius:6px;
    font-size: 14px;
  font-weight: 500;
    cursor: pointer;
	transition     :  all 0.2s ease;
}

.modal-btn-primary {
    background-color   :    #3182ce;
   color: white;
}

.modal-btn-primary:hover {
    background-color: #2c5282;
}

.modal-btn-secondary {
  background-color:       #edf2f7;
  color: #4a5568;
}

.modal-btn-secondary:hover {
  background-color: #e2e8f0; 

}

.cookie-banner {
  position: fixed;
	 bottom: 20px;
                    left: 20px;
    right: 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
	 padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
    max-width: 400px;
  margin: 0 auto;
  display    : none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease;
}@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.cookie-text {
   font-size: 14px;
    color: #4a5568;
   margin-bottom: 16px;
    line-height: 1.5;
}

.cookie-actions {
   display: flex;
  flex-wrap: wrap;
	gap    : 12px;
}

.cookie-btn {
  padding: 8px 16px;
  border :       none;
  border-radius: 4px;
    font-size: 14px;
   cursor: pointer;
   transition   :    background-color 0.2s ease;
}

.cookie-accept {
   background-color: #48bb78;
    color: white;
} 

.cookie-accept:hover {
   background-color: #38a169;
}

.cookie-settings {
  background-color :        #edf2f7;
   color: #4a5568;
}

.cookie-settings:hover {

    background-color: #e2e8f0;
     }

.notification {
	position: fixed;
  top: 20px;
    right: 20px;
   background: white;
   border-left: 4px solid #48bb78;
       border-radius: 4px;
   padding     :     16px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    min-width:   300px;
   max-width  :      400px;
  transform: translateX(100%);
 transition: transform 0.3s ease;
}

.notification.show {
  transform: translateX(0);
}

.notification.error {
   border-left-color :   #f56565;


}

.notification.warning {
                    border-left-color: #ed8936;
} 

.notification-title {
   font-weight: 600;
    color: #2d3748;
   margin-bottom: 4px;
}

.notification-message


{
  font-size: 14px;
    color    :     #4a5568;
}

.loading-spinner {
   border: 3px solid #f3f3f3;

    border-top: 3px solid #3182ce;

    border-radius: 50%;

   width: 24px;

    height: 24px;

  animation: spin 1s linear infinite;

	 display: inline-block;

  margin-right: 8px;
}@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header, .modal-body, .modal-footer {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .notification {
        right: 10px;
        top: 10px;
        min-width: auto;
        max-width: calc(100vw - 20px);
    }
}.content-section{


  opacity: 0;
  transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;}

.content-section.visible {
  transform: translateY(0);
  opacity: 1;
}

.story-grid {
    animation: fadeInUp 1s ease-out;
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.value-card {
  transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.value-card:hover{
   border-left-color: #ed8936;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.team-member {
  position: relative;
   overflow: hidden;
}

.team-member::before {
  content: '';
   position: absolute;
    top: 0;
   left: -100%;
  width   :  100%;
   height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
         transition: left 0.6s ease;
}

.team-member:hover::before {
   left: 100%;
}

.member-image {
    transition: transform 0.3s ease;
}

.team-member:hover .member-image {
  transform: scale(1.05);
}

.thank-you-content		{
  animation: bounceIn 0.8s ease-out;
}@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.95) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}.success-icon
	{
  animation: pulse 2s infinite;
}@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(72, 187, 120, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0);
    }
}.steps-list li {

    opacity: 0;
  transform: translateX(-20px);
   animation: slideInLeft 0.6s ease forwards;}

.steps-list li:nth-child(1) {
  animation-delay  :       0.2s;
}

.steps-list li:nth-child(2) {
   animation-delay: 0.4s;
}

.steps-list li:nth-child(3) {
  animation-delay: 0.6s;


}

.steps-list li:nth-child(4) {


   animation-delay: 0.8s;}@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}.step-number {

	   transition: all 0.3s ease; 


}

.action-buttons .btn {
    opacity: 0;
  transform: translateY(20px);
	animation: fadeInUp 0.6s ease forwards;
}

.action-buttons .btn:nth-child(1) {
  animation-delay: 1.2s;
}



.action-buttons .btn:nth-child(2) {
  animation-delay: 1.4s;
}

.footer-section {
  border-top: 3px solid #3182ce;


}

.page-header

{
    position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
   position: absolute;
    top: 0;
  left   :    0;
          right: 0;
 bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
	pointer-events   :     none;
}

.story-text p {
    position: relative;


}

.story-text p::first-letter {
   font-size: 1.4em;
  font-weight: 700;
    color: #3182ce;
}@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .thank-you-content {
        padding: 2rem 1.5rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .thank-you-title {
        font-size: 1.8rem;
    }
    
    .next-steps {
        padding: 1.5rem;
    }
}

@media print {
    .primary-nav,
    .footer-section,
    .action-buttons {
        display: none;
    }
    
    .thank-you-container {
        padding-top: 2rem;
    }
    
    body {
        background: white;
    }
}.pol 
 {
   margin: 5% 15%;
}