/* CSS Custom Properties */
:root {
  --primary-color: #ff7a5a;
  --secondary-color: #ff6b5a;
  --accent-color: #ff9080;
  --dark-bg: #2a2a2a;
  --darker-bg: #1f1f1f;
  --card-bg: #3a3a3a;
  --text-primary: #ffffff;
  --text-secondary: #d0d0d0;
  --text-muted: #a0a0a0;
  --border-color: #4a4a4a;
  --success-color: #4caf50;
  --shadow-light: rgba(255, 122, 90, 0.15);
  --shadow-medium: rgba(255, 122, 90, 0.25);
  --shadow-heavy: rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
}

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

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 4px 15px var(--shadow-light);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(42, 42, 42, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  height: 80px;
  width: auto;
  transition: transform 0.3s ease;
}

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

.logo-text h2 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.8rem;
}

.logo-text span {
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: block;
  margin-top: -5px;
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 50px;
  background: url('hero.jpg') center center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
  position: relative;
}

.hero-text {
  background: rgba(42, 42, 42, 0.85);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  background: rgba(58, 58, 58, 0.95);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow-heavy);
  border: 1px solid var(--border-color);
  text-align: center;
  animation: float 3s ease-in-out infinite;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.floating-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--darker-bg);
}

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

.service-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-heavy);
  border-color: var(--primary-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.8rem;
  color: white;
}

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

.service-card p {
  color: var(--text-secondary);
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--dark-bg);
}

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

.about-text h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.feature i {
  color: var(--success-color);
  font-size: 1.2rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

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

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

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--darker-bg);
}

.contact-content {
  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;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.2rem;
}

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

.contact-item p {
  color: var(--text-secondary);
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--dark-bg);
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--shadow-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
}

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

/* Map Container */
.map-container {
  margin-top: 3rem;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

/* Footer */
.footer {
  background: var(--darker-bg);
  padding: 50px 0 20px;
  border-top: 1px solid var(--border-color);
}

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

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

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-section p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.footer-section i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .logo-image {
    height: 70px;
  }
  
  .logo-text h2 {
    font-size: 1.5rem;
  }
  
  .logo-text span {
    font-size: 0.8rem;
  }
  
  /* Hero Mobile Optimization */
  .hero {
    min-height: 100vh;
    padding: 80px 0 40px;
    background-position: center center;
    background-attachment: scroll;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 0 15px;
  }
  
  .hero-text {
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .floating-card {
    padding: 1.5rem;
    border-radius: 15px;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .floating-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .floating-card p {
    font-size: 0.9rem;
    margin: 0;
  }
  
  .floating-card i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }
  
  /* Other Mobile Optimizations */
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--dark-bg);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
    padding: 2rem 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 1rem 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .logo-image {
    height: 60px;
  }
  
  .logo-text h2 {
    font-size: 1.3rem;
  }
  
  .logo-text span {
    font-size: 0.75rem;
  }
  
  /* Enhanced Hero Mobile Optimization */
  .hero {
    min-height: 100vh;
    padding: 70px 0 30px;
    background-size: cover;
    background-position: center center;
  }
  
  .hero-content {
    gap: 1.5rem;
    padding: 0 10px;
  }
  
  .hero-text {
    padding: 1.5rem;
    margin: 0 5px 1rem 5px;
    border-radius: 12px;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
  }
  
  .hero-buttons {
    gap: 0.5rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .floating-card {
    padding: 1.25rem;
    border-radius: 12px;
    max-width: 250px;
  }
  
  .floating-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }
  
  .floating-card p {
    font-size: 0.85rem;
  }
  
  .floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  /* Typography Adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  /* Mobile Services Optimization */
  .service-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  /* Mobile Review Cards */
  .review-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .review-card::before {
    font-size: 3rem;
    top: -5px;
    left: 15px;
  }
  
  /* Mobile Contact */
  .contact-item {
    padding: 1.25rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  /* Mobile Footer */
  .footer {
    padding: 40px 0 15px;
  }
  
  .footer-section {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  /* Mobile About Stats */
  .about-stats {
    gap: 1rem;
  }
  
  .stat {
    padding: 1.25rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  /* Reviews and other sections */
  .reviews {
    padding: 60px 0;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .services,
  .about,
  .contact {
    padding: 60px 0;
  }
}

/* Extra Small Devices (320px and below) */
@media (max-width: 320px) {
  .hero-content h1 {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  
  .hero-content p {
    font-size: 0.85rem;
  }
  
  .hero-text {
    padding: 1.25rem;
    margin: 0 2px;
  }
  
  .floating-card {
    padding: 1rem;
    max-width: 220px;
  }
  
  .hero-buttons .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    max-width: 220px;
  }
}

/* Animation utilities */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Impressum Page Styles */
.impressum-section {
  padding: 120px 0 80px;
  background: var(--dark-bg);
  min-height: 100vh;
}

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

.impressum-content h1 {
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.impressum-box {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.impressum-box h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.impressum-box h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.impressum-box p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.impressum-box ul {
  color: var(--text-secondary);
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.impressum-box li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-details {
  background: rgba(255, 122, 90, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  margin: 1rem 0;
}

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

.contact-details strong {
  color: var(--primary-color);
}

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

.impressum-box a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.attribution {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

.back-button-container {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.back-button-container .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  padding: 15px 30px;
}

.back-button-container .btn i {
  font-size: 1rem;
}

/* Responsive Styles for Impressum */
@media (max-width: 768px) {
  .impressum-content h1 {
    font-size: 2rem;
  }
  
  .impressum-box {
    padding: 1.5rem;
  }
  
  .impressum-box h2 {
    font-size: 1.5rem;
  }
  
  .impressum-box h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .impressum-section {
    padding: 100px 0 60px;
  }
  
  .impressum-content h1 {
    font-size: 1.8rem;
  }
  
  .impressum-box {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-details {
    padding: 1rem;
  }
  
  .back-button-container .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
} 

/* Reviews Section */
.reviews {
  padding: 100px 0;
  background: var(--darker-bg);
}

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

.review-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-heavy);
  border-color: var(--primary-color);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  font-family: serif;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

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

.review-card p {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.reviewer strong {
  color: var(--primary-color);
  font-size: 1rem;
}

.reviewer span {
  color: var(--text-muted);
  font-size: 0.9rem;
} 

@media (max-width: 768px) {
  .impressum-content h1 {
    font-size: 2rem;
  }
  
  .impressum-box {
    padding: 1.5rem;
  }
  
  .impressum-box h2 {
    font-size: 1.5rem;
  }
  
  .impressum-box h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .impressum-section {
    padding: 100px 0 60px;
  }
  
  .impressum-content h1 {
    font-size: 1.8rem;
  }
  
  .impressum-box {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-details {
    padding: 1rem;
  }
  
  .back-button-container .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
} 

/* Reviews Section */
.reviews {
  padding: 100px 0;
  background: var(--darker-bg);
}

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

.review-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-heavy);
  border-color: var(--primary-color);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  font-family: serif;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

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

.review-card p {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.reviewer strong {
  color: var(--primary-color);
  font-size: 1rem;
}

.reviewer span {
  color: var(--text-muted);
  font-size: 0.9rem;
} 