@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f4f4f4;
  color: #0a2e4e;
  line-height: 1.6;
  text-align: center;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.header {
  background-color: #0a2e4e;
  padding: 20px 0;
  color: #fff;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  background: linear-gradient(135deg, #153f6b, #0a2e4e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #f4c430;
  color: #0a2e4e;
  text-decoration: none;
  font-size: 1.5rem;
  border-radius: 5px;
  transition: background 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.cta-button:hover {
  background-color: #d4af37;
}

/* Benefits Section */
.benefits {
  background-color: #fff;
  padding: 40px 20px;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.benefits h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0a2e4e;
}

.benefits-list {
  list-style: none;
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.5rem;
  text-align: left;
}

.benefits-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
}

.benefits-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #f4c430;
  font-size: 1.5rem;
}

/* CTA Section */
.cta {
  background-color: #fff;
  padding: 40px 20px;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.cta h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #0a2e4e;
}

.cta p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #555;
}

/* Footer */
.footer {
  background-color: #0a2e4e;
  padding: 20px 0;
  font-size: 0.9rem;
  color: #fff;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
  display: flex;
}

.footer-nav li {
  margin: 0 10px;
}

.footer-nav a {
  color: #fff;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  .cta-button {
    font-size: 1.3rem;
    padding: 12px 20px;
  }
  .benefits h3 {
    font-size: 2rem;
  }
  .benefits-list {
    font-size: 1.3rem;
  }
  .cta h2 {
    font-size: 2.2rem;
  }
  .cta p {
    font-size: 1rem;
  }
}

/* Стилі для Countdown Timer */
#countdown {
  font-size: 1.5rem;
  color: #f4304a;
  margin-bottom: 20px;
}