* {
  margin: 0;
    padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
	color: #333;
  background: #fafafa;
}

.konteyner {
    max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
}

header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   position: fixed;
    top: 0;
	width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-container {
    display: flex;
    align-items     :      center;
   padding: 1rem 20px;
    justify-content: space-between;
}

.logo-area img {


  height: 45px;
  width: auto;
}

.main-navigation {

	display: flex;
  list-style:    none;
   gap: 2rem;
     }

.main-navigation a {
    color: white;
  padding: 0.5rem 0;
    font-weight: 500;
      text-decoration: none;
   transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #3498db;
}

.burger-toggle {
       display: none;
	flex-direction: column;
  cursor: pointer;
    gap    :     4px;

}

.burger-line {
   width: 25px; 
    height: 3px; 
          background:        white; 
          transition     :    0.3s;}

.hero-section {
  background: linear-gradient(rgba(52, 73, 93, 0.8), rgba(44, 62, 80, 0.8)), url('maps/uncertainty_resilience_coaching_5.webp');
	   background-size: cover;
	  background-position: center;
	   height: 100vh;
		display: flex;
	    align-items: center;
	   text-align: center;
	   color  : white;
	  margin-top: 80px;
}

.hero-content h1 {
	font-size :  3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
	
}

.hero-content p {
    font-size: 1.4rem;
   margin-bottom: 2rem;
	max-width: 600px;
    margin-left: auto;
  margin-right    :      auto;
}

.cta-button {
   display: inline-block;
  background: #e74c3c;
    color: white;
    padding: 15px 35px;
     text-decoration: none;
   border-radius: 50px;
   font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
} 

.cta-button:hover {
   background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.services-section {
  padding: 80px 0;
   background: white;
}

.section-title {


          text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
  color : #2c3e50;


}

.services-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
	margin-top: 2rem;}

.service-card {
    background: #f8f9fa;
  padding: 2rem;
   border-radius: 15px;
                    text-align :     center;
  transition: transform 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100%;

	height: 200px;

   object-fit: cover;

   border-radius: 10px;

   -moz-border-radius: 10px;

               -webkit-border-radius: 10px;

  margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
   margin-bottom   :     1rem;
                    color: #2c3e50;


}

.about-preview {
    padding: 80px 0;
  background: #ecf0f1;
}

.about-content {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
}

.about-text h2 {
   font-size: 2.2rem;
         margin-bottom: 1.5rem;
   color: #2c3e50;
}

.about-text p {
   font-size: 1.1rem;
    margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-image img {
  width: 100%;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	text-align: center;
   color   :     white;
}

.cta-section h2  
  {
   font-size: 2.5rem;
	margin-bottom: 1rem; 
	
}

.cta-section p {
       font-size     :      1.2rem;
   margin-bottom: 2rem;
   max-width: 600px;
  margin-left: auto;
    margin-right: auto;


}

.contact-section {
	    padding: 80px 0;
  background: white;


}

.contact-form {
   background: #f8f9fa;
  padding: 3rem;
    border-radius: 20px;
  max-width  :  600px;
    margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
          margin-bottom: 1.5rem;
}

.form-group label {
   display    :block;

    margin-bottom: 0.5rem;

    font-weight: 600;

    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
       transition: border-color 0.3s ease;
   width: 100%;
	font-size : 1rem;
    padding: 12px;
   border-radius: 8px;
  border: 1px solid #ddd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
		outline    :  none;
    border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}


.form-group textarea {
    resize: vertical;
   height: 120px;
}

.submit-btn {
  -moz-border-radius: 50px;
   -o-transition: all 0.3s ease;
                    background: #27ae60;
    color: white;
    padding: 15px 40px;
               -webkit-border-radius: 50px;
    border: none;
               -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    border-radius: 50px;
   font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
  transition: all 0.3s ease;
       width: 100%;
}

.submit-btn:hover {
  background: #219a52;
  transform: translateY(-2px);
}

footer {
    background: #2c3e50;
	 color: white;
    padding: 40px 0 20px;
}


.footer-content {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
  margin-bottom: 2rem;

}

.footer-section h3 {
  margin-bottom: 1rem;
  color: #3498db;
}

.footer-section p, .footer-section a {
   color: #bdc3c7;
    text-decoration: none;
  line-height: 1.6; 
	
}

.footer-section a:hover    {
	 color: white;

}

.footer-logo img {
   height: 40px;
  filter: brightness(0) invert(1);
	margin-bottom: 1rem; 
	
}

.footer-bottom {
    text-align: center;
	padding-top: 20px;
    border-top: 1px solid #34495e;
          color: #95a5a6;
}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #2c3e50;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: right 0.3s ease;
        padding-top: 2rem;
    }

    .main-navigation.active {
        right: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        margin: 0 20px;
        padding: 2rem;
    }
}.cookies-hero  {
  background: linear-gradient(rgba(52, 73, 93, 0.85), rgba(44, 62, 80, 0.85)), url('../maps/uncertainty_resilience_coaching_5.webp');
	background-size: cover;
  background-position: center;
	height: 60vh;
  display: flex;
    align-items: center;
   text-align: center;
   color: white;
  margin-top: 80px;
}

.cookies-hero-content h1 {
  font-size: 3rem;
    margin-bottom: 1rem;
  font-weight  :     700;
}

.cookies-hero-content p{
  font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
  opacity: 0.9;
}  

.cookies-section {
  padding: 80px 0;
  background: white;
}

.cookies-content {
   max-width: 800px;
    margin: 0 auto;
}

.cookies-content h2 {
   margin-bottom: 2rem;
  color: #2c3e50;
   font-size   : 2.5rem;
    font-weight: 600;
}

.cookies-content h3 {
   font-size: 1.8rem;
	 margin    :     2rem 0 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.cookies-content p {
   font-size     :     1.1rem;
    margin-bottom  :      1.5rem;
    line-height: 1.8;
	 color: #555;
}@media (max-width: 768px) {
    .cookies-hero-content h1 {
        font-size: 2.2rem;
    }

    .cookies-hero-content p {
        font-size: 1.1rem;
    }

    .cookies-content h2 {
        font-size: 2rem;
    }

    .cookies-content h3 {
        font-size: 1.5rem;
    }
}.privacy-hero {
  background: linear-gradient(rgba(52, 73, 93, 0.85), rgba(44, 62, 80, 0.85)), url('../maps/uncertainty_resilience_coaching_5.webp');
   background-size   : cover;
         background-position: center;
	height: 60vh;
  display: flex;
		align-items: center;
   text-align: center;
    color: white;
	margin-top: 80px;
}

.privacy-hero-content h1 {
   font-size: 3rem;
   margin-bottom :   1rem;
  font-weight: 700;
}

.privacy-hero-content p {
  font-size: 1.3rem;
         max-width: 600px;
	margin: 0 auto;
   opacity: 0.9;
}

.privacy-section {
   padding: 80px 0;
  background: white;
}

.privacy-content     {
  max-width: 800px;
    margin: 0 auto;

}  

.privacy-content h2 {
   font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 600;
}

.privacy-content h3 {
    font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: #2c3e50;
  font-weight: 600;
}

.privacy-content p {
	color: #555;
   line-height: 1.8;
     margin-bottom: 1.5rem;
  font-size: 1.1rem;
}@media (max-width: 768px) {
    .privacy-hero-content h1 {
        font-size: 2.2rem;
    }

    .privacy-hero-content p {
        font-size: 1.1rem;
    }

    .privacy-content h2 {
        font-size: 2rem;
    }

    .privacy-content h3 {
        font-size: 1.5rem;
    }
}