/* YodelRinfa Public Speaking Courses - Styles */

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

:root {
  --primary-color: #9f86c0;
  --primary-dark: #1e40af;
  --primary-light: #ddd6fe;
  --secondary-color: #64748b;
  --accent-color: #f59e0b;
  --success-color: #10b981;
  --background-color: #ffffff;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --border-color: #e5e7eb;
  --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --max-width: 1200px;
  --font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

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

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

a:hover {
  color: var(--primary-dark);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: #fff;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #475569;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-full {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
}

/* Cookie Management */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 1px solid var(--border-color);
  box-shadow: var(--shadow-large);
  z-index: 1000;
  padding: 20px;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 2rem;
}

.cookie-text h3 {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin-bottom: 0;
  color: var(--text-color);
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
}

.modal-body {
  padding: 20px;
}

.cookie-category {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.cookie-category label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 8px;
}

.cookie-category input[type="checkbox"] {
  margin-right: 10px;
}

.cookie-category p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.modal-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  text-align: right;
}

/* Navigation */
.navbar {
  background-color: white;
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 6rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

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

.hero-image {
  text-align: center;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-icon {
  margin-bottom: 1rem;
}

/* Section Styling */
section {
  padding: 5rem 0;
}

.about {
  background-color: #f9fafb;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature span {
  font-weight: 500;
  color: var(--text-color);
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.benefit-icon {
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  color: var(--text-color);
  margin-bottom: 1rem;
}

/* Services Preview */
.services-preview {
  background-color: #f9fafb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.02);
}

.featured-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.service-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
}

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

.service-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1rem;
}

.services-cta {
  text-align: center;
}

/* Achievements */
.achievements {
  background-color: #f9fafb;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.achievement-item {
  text-align: center;
  padding: 2rem;
}

.achievement-icon {
  margin-bottom: 1.5rem;
}

.achievement-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.achievement-label {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.testimonial-rating {
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-name {
  font-weight: 600;
  color: var(--text-color);
}

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

/* FAQ */
.faq {
  background-color: #f9fafb;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-light);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-color);
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  display: block;
}

/* Blog Preview */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.blog-date {
  color: var(--text-light);
}

.blog-category {
  color: var(--primary-color);
  font-weight: 500;
}

.blog-card h3 {
  margin-bottom: 0.75rem;
}

.blog-card h3 a {
  color: var(--text-color);
}

.blog-card h3 a:hover {
  color: var(--primary-color);
}

.read-more {
  color: var(--primary-color);
  font-weight: 500;
}

/* Subscription */
.subscription {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
}

.subscription-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.subscription .section-header h2,
.subscription .section-header p {
  color: white;
}

.subscription-form {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-large);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 2px;
}

.checkbox-label a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Newsletter */
.newsletter {
  background-color: #f9fafb;
  padding: 3rem 0;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.newsletter-text h3 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.newsletter-form {
  flex-shrink: 0;
}

.newsletter-input-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.newsletter-input-group input {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  min-width: 300px;
}

.newsletter-disclaimer {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  flex-shrink: 0;
  padding: 10px;
  background-color: var(--primary-light);
  border-radius: var(--border-radius);
}

.contact-details h4 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.contact-details p {
  margin-bottom: 0;
  color: var(--text-light);
}

.contact-details a {
  color: var(--primary-color);
  font-weight: 500;
}

.contact-map {
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background-color: #f3f4f6;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-placeholder:hover .map-overlay {
  opacity: 1;
}

.social-media {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.social-media h3 {
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: inline-block;
  padding: 10px;
  background-color: var(--primary-light);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.social-link:hover svg {
  filter: brightness(0) invert(1);
}

/* Footer */
.footer {
  background-color: var(--text-color);
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand .brand-name {
  color: white;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .hero-content,
  .about-content,
  .subscription-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text {
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .benefits-grid,
  .services-grid,
  .achievements-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card,
  .service-card,
  .testimonial-card,
  .blog-card {
    margin: 0;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .newsletter-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .newsletter-input-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .newsletter-input-group input {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  h1 {
    font-size: 2rem;
  }

  section {
    padding: 3rem 0;
  }

  .benefit-card,
  .service-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .subscription-form {
    padding: 1.5rem;
  }

  .modal-content {
    margin: 10px;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Article Page Styles */
.article-header {
  background-color: #f8fafc;
  padding: 3rem 0;
}

.article-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.article-breadcrumb a {
  color: var(--primary-color);
}

.article-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.article-category {
  background-color: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius);
  font-weight: 500;
}

.article-date,
.article-read-time {
  color: var(--text-light);
}

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

.article-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--text-color);
}

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

.author-credentials {
  font-size: 0.8rem;
  color: var(--text-light);
}

.article-hero {
  padding: 2rem 0;
  background-color: #f9fafb;
}

.article-content {
  padding: 3rem 0;
}

.article-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.article-intro .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.article-section {
  margin-bottom: 3rem;
}

.article-section h2 {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 0.5rem;
}

.article-section h3 {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.technique-icon {
  text-align: center;
  margin-bottom: 1.5rem;
}

.highlight-box,
.statistics-box,
.success-story,
.science-note,
.pro-tip,
.research-note,
.encouragement-box {
  background-color: var(--primary-light);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: var(--border-radius);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background-color: white;
  border-radius: var(--border-radius);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

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

.step-by-step,
.exposure-ladder,
.anchor-process {
  margin: 2rem 0;
}

.step,
.exposure-level,
.anchor-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #f9fafb;
  border-radius: var(--border-radius);
}

.step-number,
.level-number {
  background-color: var(--primary-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content,
.level-content {
  flex: 1;
}

.anxiety-level {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-top: 0.5rem;
}

.article-sidebar {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: var(--border-radius);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background-color: white;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.sidebar-card:last-child {
  margin-bottom: 0;
}

.sidebar-card h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.quick-techniques {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-technique h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.quick-technique ul {
  margin: 0;
  padding-left: 1rem;
}

.sidebar-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-newsletter-form input {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 0.9rem;
}

.article-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 3rem;
}

.article-cta h3 {
  color: white;
  margin-bottom: 1rem;
}

.article-cta p {
  color: white;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.cta-guarantee {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0;
}

/* Services Page Styles */
.services-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
}

.services-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.services-overview {
  padding: 5rem 0;
}

.services-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.category-icon {
  margin-bottom: 1.5rem;
}

.detailed-services {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.service-detail {
  margin-bottom: 5rem;
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-content.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-content.reverse .service-image {
  order: -1;
}

.service-badge {
  background-color: var(--accent-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.popular-badge {
  background-color: var(--primary-color);
}

.service-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.service-features,
.service-advantages {
  margin: 2rem 0;
}

.service-features ul {
  padding-left: 1rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.pricing-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  margin-top: 2rem;
}

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

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.pricing-options {
  margin-bottom: 2rem;
}

.pricing-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.pricing-option.popular {
  border-color: var(--primary-color);
  background-color: var(--primary-light);
}

.option-name {
  font-weight: 500;
}

.option-price {
  font-weight: 600;
  color: var(--primary-color);
}

.option-savings {
  font-size: 0.8rem;
  color: var(--success-color);
  margin-left: 0.5rem;
}

.services-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.services-cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.services-cta p {
  color: white;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-guarantees {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.9rem;
}

/* Thank You Page Styles */
.thank-you-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
  padding: 5rem 0;
  text-align: center;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-message {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  margin: 3rem 0;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.thank-you-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.while-you-wait,
.quick-tips,
.thank-you-contact {
  padding: 4rem 0;
}

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

.resource-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  text-align: center;
}

.resource-icon {
  margin-bottom: 1.5rem;
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.resource-link {
  color: var(--primary-color);
  font-weight: 500;
}

.tips-content {
  max-width: 800px;
  margin: 0 auto;
}

.tip-card {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

.tip-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.tip-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tip-result {
  background-color: var(--success-color);
  color: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-top: 1rem;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.contact-option {
  display: flex;
  gap: 1rem;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

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

.social-follow {
  text-align: center;
  margin-top: 3rem;
}

/* Legal Pages Styles */
.legal-content {
  padding: 4rem 0;
}

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

.legal-icon {
  margin-bottom: 1.5rem;
}

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

.last-updated {
  background-color: var(--primary-light);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  display: inline-block;
}

.legal-body {
  max-width: 800px;
  margin: 0 auto;
}

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

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.legal-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.contact-method {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.contact-method h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Cookie Policy Specific Styles */
.cookie-types,
.cookie-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.cookie-type,
.cookie-example {
  background-color: #f9fafb;
  padding: 1rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.cookie-category-detailed {
  margin: 2rem 0;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.third-party-service {
  background-color: #f9fafb;
  padding: 1.5rem;
  margin: 1rem 0;
  border-radius: var(--border-radius);
}

.browser-instructions,
.mobile-instructions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.browser-instruction,
.mobile-instruction {
  background-color: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
}

.cookie-management-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.cookie-management-cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.cookie-management-cta p {
  color: white;
  opacity: 0.9;
}

/* Additional Framework and Content Styles */
.framework-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.framework-item {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  display: flex;
  align-items: start;
  gap: 1rem;
}

.framework-letter {
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.framework-content h3 {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Responsive adjustments for new content */
@media (max-width: 768px) {
  .article-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .article-sidebar {
    position: static;
  }

  .services-hero-content,
  .service-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-content.reverse .service-image {
    order: 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .thank-you-stats,
  .cta-guarantees {
    flex-direction: column;
    gap: 1rem;
  }

  .tip-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }
}

/* Print styles */
@media print {
  .navbar,
  .cookie-banner,
  .cookie-modal,
  .subscription,
  .newsletter,
  .footer,
  .article-sidebar,
  .article-cta,
  .services-cta,
  .thank-you-contact {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .container {
    max-width: none;
    padding: 0;
  }

  .article-body {
    grid-template-columns: 1fr;
  }
}
