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

:root {
  --primary-dark: #121212;
  --secondary-dark: #1E1E1E;
  --accent-blue: #3E7BFA;
  --accent-gold: #FFD700;
  --text-white: #F5F5F5;
  --text-light: #BDBDBD;
  --success-green: #4CAF50;
  --error-red: #F44336;
  --border-color: #333333;
  --card-bg: #252525;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-white);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-gold);
  text-decoration: none;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

button, .uk-button {
  cursor: pointer;
  border-radius: 4px !important;
  transition: all 0.3s ease;
}

.uk-button-primary {
  background-color: var(--accent-blue) !important;
  color: var(--text-white) !important;
  border: none !important;
}

.uk-button-primary:hover {
  background-color: #2563EB !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(62, 123, 250, 0.3);
}

.uk-button-secondary {
  background-color: var(--secondary-dark) !important;
  color: var(--text-white) !important;
  border: 1px solid var(--border-color) !important;
}

.uk-button-secondary:hover {
  background-color: #2A2A2A !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.uk-button-gold {
  background-color: var(--accent-gold) !important;
  color: var(--primary-dark) !important;
  border: none !important;
}

.uk-button-gold:hover {
  background-color: #E6C200 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}


.sidebar {
  position: fixed;
  width: 20%;
  height: 100vh;
  background-color: var(--secondary-dark);
  padding: 2rem;
  overflow-y: auto;
  border-right: 1px solid var(--border-color);
  z-index: 1000;
}

.content-wrapper {
  margin-left: 20%;
  width: 80%;
  min-height: 100vh;
}

.sidebar-logo {
  margin-bottom: 2rem;
  text-align: center;
}

.sidebar-logo img {
  max-width: 180px;
  margin: 0 auto;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin-bottom: 0.5rem;
}

.sidebar-nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-light);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
  background-color: rgba(62, 123, 250, 0.1);
  color: var(--accent-blue);
}

.sidebar-contact {
  margin-top: 2rem;
  padding: 1rem;
  background-color: var(--card-bg);
  border-radius: 8px;
  font-size: 0.9rem;
}

.sidebar-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-gold);
}


.mobile-header {
  display: none;
}

.mobile-header-logo {
  padding: 1rem;
  text-align: center;
}

.mobile-header-logo img {
  max-width: 150px;
  height: auto;
}

.mobile-nav-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
  background-color: var(--secondary-dark);
  border: none;
  color: var(--text-white);
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
}


.page-header {
  padding: 1.5rem 2rem;
  background-color: var(--primary-dark);
  border-bottom: 1px solid var(--border-color);
}


.hero-section {
  position: relative;
  padding: 4rem 2rem;
  background-color: var(--primary-dark);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.certification-badges {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.certification-badge {
  background-color: var(--card-bg);
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 150px;
  transition: transform 0.3s ease;
}

.certification-badge:hover {
  transform: translateY(-5px);
}

.certification-badge img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
}

.certification-badge p {
  font-size: 0.8rem;
  margin: 0;
}


.section {
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
  border-radius: 10px;
}


.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-blue);
}

.service-card h3 {
  margin-bottom: 1rem;
}


.package-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.package-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.package-card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.package-card-title {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.package-card-price {
  font-size: 1.2rem;
  color: var(--text-white);
}

.package-card-body {
  flex: 1;
}

.package-card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.package-card-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.package-card-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 0.5rem;
  color: var(--accent-blue);
}

.package-card-footer {
  margin-top: auto;
}


.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 3rem 0;
  position: relative;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  margin: 1rem;
  position: relative;
  z-index: 2;
}

.process-step-number {
  background-color: var(--accent-blue);
  color: var(--text-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step-content {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--border-color);
}

.process-step-title {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
  z-index: 1;
}


.faq-item {
  background-color: var(--card-bg);
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(62, 123, 250, 0.1);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
}


.contact-form {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--secondary-dark);
  color: var(--text-white);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-blue);
  outline: none;
}

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

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
}

.iti {
  width: 100%;
}


.footer {
  background-color: var(--secondary-dark);
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
}

.cookie-settings-btn {
  background: none;
  border: none;
  color: var(--accent-blue);
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

.cookie-settings-btn:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-dark);
  padding: 1.5rem;
  z-index: 9999;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-settings-modal {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 2rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-category-title {
  font-weight: 500;
  font-size: 1.1rem;
}

.cookie-category-toggle {
  display: flex;
  align-items: center;
}

.cookie-category-toggle input {
  margin-right: 0.5rem;
}


.custom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.custom-modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  position: relative;
}

.modal-header {
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--text-white);
}

.modal-body {
  margin-bottom: 1.5rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.article-header {
  margin-bottom: 2rem;
}

.article-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.article-meta {
  color: var(--text-light);
  font-size: 0.9rem;
}

.article-content {
  line-height: 1.8;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content img {
  margin: 2rem 0;
  display: block;
}

.article-content blockquote {
  border-left: 3px solid var(--accent-blue);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-light);
}


.thanks-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--success-green);
  margin-bottom: 2rem;
}

.thanks-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.thanks-text {
  margin-bottom: 2rem;
}

.thanks-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.legal-header {
  margin-bottom: 2rem;
  text-align: center;
}

.legal-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.legal-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}


@media (max-width: 1200px) {
  .sidebar {
    width: 25%;
  }
  
  .content-wrapper {
    margin-left: 25%;
    width: 75%;
  }
}

@media (max-width: 992px) {
  .sidebar {
    width: 280px;
    left: -280px;
    transition: left 0.3s ease;
  }
  
  .sidebar.active {
    left: 0;
  }
  
  .content-wrapper {
    margin-left: 0;
    width: 100%;
    padding-top: 80px;
  }
  
  .mobile-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-dark);
    z-index: 1002;
    border-bottom: 1px solid var(--border-color);
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
  .sidebar-overlay.active {
    display: block;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
  }
  
  .process-steps::before {
    display: none;
  }
  
  .certification-badges {
    gap: 1rem;
  }
  
  .certification-badge {
    max-width: 120px;
    padding: 0.75rem;
  }
  
  .footer-col {
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  .service-cards, .package-cards {
    grid-template-columns: 1fr;
  }
  
  .hero-section {
    padding: 3rem 1rem;
  }
  
  .section {
    padding: 2rem 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .cookie-consent-actions {
    width: 100%;
    justify-content: center;
  }
}