/* GENERAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

/* BACKGROUND IMAGE WITH FALLBACK AND ANIMATION */
body {
  background: url('partner.png') no-repeat center center fixed, linear-gradient(to bottom, #ffffff, #f0f0f0);
  background-size: cover;
  position: relative;
  animation: sunrise 20s infinite linear;
}

@keyframes sunrise {
  0% { background-color: rgba(255, 255, 255, 0.6); }
  50% { background-color: rgba(240, 240, 240, 0.6); }
  100% { background-color: rgba(255, 255, 255, 0.6); }
}

/* HEADER MENU */
.site-header {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.menu {
  position: relative;
  display: inline-block;
}

.menu-button {
  background-color: rgba(255, 255, 255, 0.7);
  color: #000000;
  border: none;
  padding: 12px 18px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.menu-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.menu-content {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  flex-direction: column;
  border-radius: 5px;
  min-width: 200px;
  z-index: 1001;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.menu-content a {
  padding: 12px 18px;
  color: #000000;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.menu-content a:hover {
  background-color: #ffd7 золотой;
  color: #000000;
}

/* PARTNER SECTION */
.partner {
  position: relative;
  width: 100%;
  text-align: center;
  color: #000000;
  padding: 100px 20px;
  z-index: 1;
}

.content-container {
  display: inline-block;
  padding: 30px 50px;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.main-title {
  font-size: 4.7em;
  font-weight: 900;
  font-family: 'Cinzel', 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #FFD700, #FFFFFF, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.sub-title {
  font-size: 2em;
  font-weight: 900;
  color: #000000;
  margin: 20px 0;
}

.partner-text {
  font-size: 1.5em;
  font-weight: 900;
  color: #000000;
  margin: 20px 0;
  line-height: 1.6;
}

.benefits-list {
  font-size: 1.3em;
  font-weight: 900;
  color: #000000;
  text-align: left;
  margin: 20px auto;
  max-width: 600px;
  list-style-type: disc;
  padding-left: 40px;
}

.benefits-list li {
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #ffd700;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

.partner-form {
  margin-top: 20px;
  text-align: left;
}

.partner-form label {
  display: block;
  font-size: 1.2em;
  font-weight: 900;
  color: #000000;
  margin: 10px 0 5px;
}

.partner-form input,
.partner-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 2px solid #000000;
  border-radius: 5px;
  margin-bottom: 15px;
  background-color: transparent;
  color: #000000;
}

.partner-form textarea {
  height: 120px;
  resize: vertical;
}

/* LOGO */
.peace-logo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: auto;
  z-index: 2;
}

/* FOOTER */
.site-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #000000;
  font-size: 0.9em;
  padding: 10px 0;
  z-index: 1;
}

.site-footer p {
  font-weight: 900;
}

/* RESPONSIVE DESIGN */
@media (max-width: 600px) {
  .main-title {
    font-size: 3.2em;
  }
  .sub-title {
    font-size: 1.5em;
  }
  .partner-text {
    font-size: 1.3em;
  }
  .benefits-list {
    font-size: 1.1em;
    padding-left: 20px;
  }
  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .content-container {
    padding: 20px;
  }
  .partner-form input,
  .partner-form textarea {
    font-size: 0.9em;
  }
}