@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
  --dark-primary: #121212;
  --dark-secondary: #1E1E1E;
  --vintage-orange: #E67E22;
  --retro-teal: #2A9D8F;
  --nostalgic-beige: #F5DEB3;
  --retro-burgundy: #8E354A;
  --accent-gray: #505050;
  --text-white: #F5F5F5;
  --shadow: rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-primary);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}



.pr-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.pr-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--dark-primary);
  box-shadow: 0 2px 10px var(--shadow);
  transition: all 0.3s ease;
}

.pr-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.pr-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.pr-logo img {
  height: 40px;
}

.pr-nav {
  display: flex;
}

.pr-nav-list {
  display: flex;
  list-style: none;
}

.pr-nav-item {
  margin: 0 15px;
}

.pr-nav-link {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.pr-nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--vintage-orange);
  transition: width 0.3s ease;
}

.pr-nav-link:hover {
  color: var(--nostalgic-beige);
}

.pr-nav-link:hover::after {
  width: 100%;
}

.pr-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.pr-main {
  margin-top: 80px;
  min-height: calc(100vh - 80px - 120px);
}

.pr-section {
  padding: 60px 0;
  position: relative;
}

.pr-floating-module {
  background-color: var(--dark-secondary);
  border-radius: 8px;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 0 10px 30px var(--shadow);
  transform: translateZ(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pr-floating-module:hover {
  transform: translateY(-5px) translateZ(0);
  box-shadow: 0 15px 35px var(--shadow);
}

.pr-floating-module::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--vintage-orange), var(--retro-teal));
}

.pr-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--nostalgic-beige);
  position: relative;
  display: inline-block;
}

.pr-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 3px;
  background-color: var(--vintage-orange);
}

.pr-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--retro-teal);
}

.pr-text {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-white);
}

.pr-highlight {
  color: var(--vintage-orange);
  font-weight: 600;
}

.pr-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--retro-teal);
  color: var(--text-white);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pr-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--vintage-orange);
  transition: left 0.3s ease;
  z-index: -1;
}

.pr-btn:hover::before {
  left: 0;
}

.pr-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.5);
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.pr-grid-item {
  background-color: var(--dark-secondary);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pr-grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow);
}

.pr-grid-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: var(--retro-burgundy);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.pr-icon {
  font-size: 2.5rem;
  color: var(--vintage-orange);
  margin-bottom: 20px;
}

.pr-image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
  margin: 20px 0;
}

.pr-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pr-image-container:hover .pr-image {
  transform: scale(1.05);
}

.pr-form {
  background-color: var(--dark-secondary);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 30px var(--shadow);
}

.pr-form-group {
  margin-bottom: 20px;
}

.pr-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--nostalgic-beige);
}

.pr-input, 
.pr-textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid var(--accent-gray);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.pr-input:focus, 
.pr-textarea:focus {
  outline: none;
  border-color: var(--retro-teal);
  background-color: rgba(255, 255, 255, 0.1);
}

.pr-textarea {
  min-height: 150px;
  resize: vertical;
}

.pr-checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.pr-checkbox {
  margin-right: 10px;
  cursor: pointer;
}

.pr-checkbox-label {
  font-size: 0.9rem;
  color: var(--text-white);
}

.pr-checkbox-label a {
  color: var(--retro-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.pr-checkbox-label a:hover {
  color: var(--vintage-orange);
  text-decoration: underline;
}

.pr-footer {
  background-color: var(--dark-secondary);
  padding: 60px 0 30px;
  position: relative;
}

.pr-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--retro-teal), var(--vintage-orange));
}

.pr-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.pr-footer-column {
  margin-bottom: 30px;
}

.pr-footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--nostalgic-beige);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.pr-footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--vintage-orange);
}

.pr-footer-links {
  list-style: none;
}

.pr-footer-link {
  margin-bottom: 10px;
}

.pr-footer-link a {
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.pr-footer-link a:hover {
  color: var(--vintage-orange);
  transform: translateX(5px);
}

.pr-contact-info {
  list-style: none;
}

.pr-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.pr-contact-icon {
  color: var(--retro-teal);
  font-size: 1.2rem;
  margin-right: 10px;
  margin-top: 3px;
}

.pr-contact-text {
  color: var(--text-white);
}

.pr-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-white);
}

.pr-geo-shape {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid var(--vintage-orange);
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

.pr-diamond {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: var(--retro-teal);
  opacity: 0.1;
  transform: rotate(45deg);
  z-index: -1;
}

.pr-map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin: 30px 0;
}

.pr-article-card {
  background-color: var(--dark-secondary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease;
}

.pr-article-card:hover {
  transform: translateY(-10px);
}

.pr-article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pr-article-content {
  padding: 20px;
}

.pr-article-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--nostalgic-beige);
}

.pr-article-excerpt {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--text-white);
}

.pr-article-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--accent-gray);
}

.pr-course-module {
  background-color: var(--dark-secondary);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px var(--shadow);
  border-left: 4px solid var(--vintage-orange);
}

.pr-module-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--vintage-orange);
  color: var(--dark-primary);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
  margin-right: 15px;
}

.pr-module-title {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--nostalgic-beige);
}

.pr-module-content {
  margin-top: 15px;
}

.pr-timeline {
  position: relative;
  max-width: 1200px;
  margin: 50px auto;
}

.pr-timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--retro-teal);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.pr-timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.pr-timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--vintage-orange);
  border-radius: 50%;
  top: 15px;
  z-index: 1;
}

.pr-timeline-left {
  left: 0;
}

.pr-timeline-right {
  left: 50%;
}

.pr-timeline-left::after {
  right: -10px;
}

.pr-timeline-right::after {
  left: -10px;
}

.pr-timeline-content {
  padding: 20px;
  background-color: var(--dark-secondary);
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow);
}

.pr-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-secondary);
  box-shadow: 0 -5px 15px var(--shadow);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.pr-cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.pr-cookie-text {
  flex: 1;
  margin-right: 20px;
}

.pr-cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pr-cookie-btn {
  padding: 8px 15px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pr-cookie-accept {
  background-color: var(--retro-teal);
  color: var(--text-white);
}

.pr-cookie-accept:hover {
  background-color: var(--vintage-orange);
}

.pr-cookie-settings {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid var(--accent-gray);
}

.pr-cookie-settings:hover {
  background-color: var(--accent-gray);
}

.pr-cookie-decline {
  background-color: var(--dark-primary);
  color: var(--text-white);
  border: 1px solid var(--accent-gray);
}

.pr-cookie-decline:hover {
  background-color: var(--accent-gray);
}

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

.pr-modal-content {
  background-color: var(--dark-secondary);
  margin: 50px auto;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 10px 30px var(--shadow);
  position: relative;
}

.pr-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--text-white);
  background: none;
  border: none;
  cursor: pointer;
}

.pr-settings-group {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.pr-settings-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pr-settings-name {
  font-weight: 600;
  color: var(--nostalgic-beige);
  font-size: 1.1rem;
}

.pr-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.pr-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pr-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--accent-gray);
  transition: 0.4s;
  border-radius: 24px;
}

.pr-toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: var(--text-white);
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .pr-toggle-slider {
  background-color: var(--retro-teal);
}

input:focus + .pr-toggle-slider {
  box-shadow: 0 0 1px var(--retro-teal);
}

input:checked + .pr-toggle-slider:before {
  transform: translateX(26px);
}

.pr-settings-description {
  font-size: 0.9rem;
  color: var(--text-white);
}

.pr-modal-actions {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.iti {
  width: 100%;
}

.pr-thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 40px;
}

.pr-thank-icon {
  font-size: 5rem;
  color: var(--retro-teal);
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.pr-thank-title {
  font-size: 2.5rem;
  color: var(--nostalgic-beige);
  margin-bottom: 20px;
}

.pr-thank-message {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 30px;
}

.pr-legal-content {
  margin: 40px 0;
}

.pr-legal-section {
  margin-bottom: 40px;
}

.pr-legal-subtitle {
  font-size: 1.5rem;
  color: var(--nostalgic-beige);
  margin: 30px 0 15px;
}

.pr-legal-list {
  margin-left: 20px;
  margin-bottom: 20px;
}

.pr-legal-item {
  margin-bottom: 10px;
}


@media (max-width: 992px) {
  .pr-timeline::after {
    left: 31px;
  }
  
  .pr-timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 20px;
  }
  
  .pr-timeline-left::after, 
  .pr-timeline-right::after {
    left: 21px;
  }
  
  .pr-timeline-right {
    left: 0;
  }
}

@media (max-width: 768px) {
  .pr-header-inner {
    padding: 15px;
  }
  
  .pr-mobile-toggle {
    display: block;
  }
  
  .pr-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--dark-secondary);
    overflow: hidden;
    transition: height 0.3s ease;
    box-shadow: 0 5px 10px var(--shadow);
  }
  
  .pr-nav.active {
    height: auto;
  }
  
  .pr-nav-list {
    flex-direction: column;
    padding: 20px;
  }
  
  .pr-nav-item {
    margin: 10px 0;
  }
  
  .pr-title {
    font-size: 2rem;
  }
  
  .pr-subtitle {
    font-size: 1.5rem;
  }
  
  .pr-floating-module {
    padding: 20px;
  }
  
  .pr-cookie-content {
    flex-direction: column;
  }
  
  .pr-cookie-text {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .pr-header-inner {
    padding: 10px 15px;
  }
  
  .pr-logo img {
    height: 30px;
  }
  
  .pr-title {
    font-size: 1.8rem;
  }
  
  .pr-subtitle {
    font-size: 1.3rem;
  }
  
  .pr-section {
    padding: 40px 0;
  }
  
  .pr-grid {
    grid-template-columns: 1fr;
  }
  
  .pr-btn {
    width: 100%;
    text-align: center;
  }
  
  .pr-module-title {
    font-size: 1.1rem;
  }
  
  .pr-cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .pr-cookie-btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .pr-modal-content {
    padding: 20px;
    margin: 20px auto;
  }
  
  .pr-thank-title {
    font-size: 2rem;
  }
  
  .pr-thank-message {
    font-size: 1rem;
  }
}