.pol-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-left: auto;
  margin-right: auto;
}

.pol-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pol-header {
  text-align: center;
  margin-bottom: 30px;
}

.pol-logo {
  font-size: 2.5em;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.pol-subtitle {
  color: #666;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.pol-form-group {
  margin-bottom: 25px;
  position: relative;
}

.pol-form-label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  font-size: 1.1em;
}

.pol-select-wrapper {
  position: relative;
}

select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  font-size: 1.1em;
  font-family: inherit;
  background: white;
  color: #333;
  transition: all 0.3s ease;
  appearance: none;
  cursor: pointer;
}

select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.pol-select-wrapper::after {
  content: "▼";
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #667eea;
  pointer-events: none;
  font-size: 0.8em;
}

input[type="text"],
input[type="tel"] {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  font-size: 1.1em;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

input[type="text"]:focus,
input[type="tel"]:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.pol-price-display {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin: 20px 0;
  font-size: 1.3em;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.pol-price-display:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.pol-data-info {
  background: #f8f9ff;
  color: #667eea;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid #e1e8ed;
}

.pol-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 18px 30px;
  border-radius: 12px;
  font-size: 1.2em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pol-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.pol-submit-btn:active {
  transform: translateY(0);
}

.pol-animation-fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0) translateY(-5px);
  }
  25% {
    transform: translateX(-5px) translateY(-5px);
  }
  75% {
    transform: translateX(5px) translateY(-5px);
  }
}

.pol-form-group:nth-child(1) {
  animation-delay: 0.1s;
}

.pol-form-group:nth-child(2) {
  animation-delay: 0.2s;
}

.pol-form-group:nth-child(3) {
  animation-delay: 0.3s;
}

.pol-form-group:nth-child(4) {
  animation-delay: 0.4s;
}

.pol-form-group:nth-child(5) {
  animation-delay: 0.5s;
}

@media (max-width: 600px) {
  .pol-container {
    margin: 10px;
    padding: 30px 20px;
  }

  .pol-logo {
    font-size: 2em;
  }
}

.pol-success-message {
  background: #4caf50;
  color: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin-top: 20px;
  display: none;
}
