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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

.container-fluid {
  width: 100%;
  padding: 0 20px;
}

.container-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navigation-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-logo {
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  color: #2563eb;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu li a {
  text-decoration: none;
  color: #4b5563;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #2563eb;
}

.hero-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 300;
}

.cta-button {
  display: inline-block;
  background-color: #ffffff;
  color: #667eea;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.featured-section {
  padding: 80px 20px;
  background-color: #f9fafb;
}

.featured-section h2 {
  text-align: center;
  font-size: 40px;
  color: #1f2937;
  margin-bottom: 50px;
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.selection-item {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.selection-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.selection-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.selection-item h3 {
  font-size: 22px;
  color: #1f2937;
  margin-bottom: 12px;
}

.selection-item p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}

.info-blocks {
  padding: 80px 20px;
  background-color: white;
}

.info-blocks h2 {
  text-align: center;
  font-size: 40px;
  color: #1f2937;
  margin-bottom: 50px;
}

.blocks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.info-card {
  background: #f9fafb;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 22px;
  color: #1f2937;
  margin-bottom: 15px;
}

.info-card p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 15px;
}

.latest-posts {
  padding: 80px 20px;
  background-color: #f9fafb;
}

.latest-posts h2 {
  text-align: center;
  font-size: 40px;
  color: #1f2937;
  margin-bottom: 50px;
}

.posts-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.post-card img {
  width: 100%;
  height: auto;
  display: block;
}

.post-card h3 {
  font-size: 22px;
  color: #1f2937;
  margin: 20px 20px 10px;
}

.post-card p {
  color: #6b7280;
  margin: 0 20px 15px;
  line-height: 1.6;
  font-size: 15px;
}

.read-more {
  display: inline-block;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  margin: 0 20px 20px;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #1e40af;
}

.lead-form-section {
  padding: 80px 20px;
  background-color: white;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #f9fafb;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
  font-size: 36px;
  color: #1f2937;
  text-align: center;
  margin-bottom: 15px;
}

.form-wrapper > p {
  text-align: center;
  color: #6b7280;
  margin-bottom: 35px;
  font-size: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.submit-btn {
  background-color: #2563eb;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #1e40af;
}

.site-footer {
  background-color: #1f2937;
  color: #e5e7eb;
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-column p {
  line-height: 1.7;
  font-size: 15px;
  color: #d1d5db;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.registration-info {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 15px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #374151;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 14px;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1f2937;
  color: white;
  padding: 25px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  z-index: 9999;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.cookie-content a {
  color: #60a5fa;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.cookie-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.cookie-btn.accept {
  background-color: #2563eb;
  color: white;
}

.cookie-btn.decline {
  background-color: #6b7280;
  color: white;
}

.cookie-btn:hover {
  opacity: 0.9;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 32px;
  font-weight: 700;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #1f2937;
}

.modal-content h2 {
  color: #1f2937;
  font-size: 32px;
  margin-bottom: 15px;
}

.modal-content p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
}

.page-header {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 800;
}

.page-header p {
  font-size: 20px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 15px;
    display: none;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .page-header h1 {
    font-size: 32px;
  }
  
  .form-wrapper {
    padding: 30px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content h1 {
    font-size: 44px;
  }
  
  .selection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}