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

:root {
  --neon-blue: #00d9ff;
  --neon-purple: #b026ff;
  --dark-bg: #0a0a0f;
  --darker-bg: #05050a;
  --card-bg: rgba(20, 20, 35, 0.8);
  --text-primary: #e0e0e0;
  --text-secondary: #a0a0b0;
  --glow-blue: 0 0 20px rgba(0, 217, 255, 0.5);
  --glow-purple: 0 0 20px rgba(176, 38, 255, 0.5);
}

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

body {
  font-family: 'Rajdhani', sans-serif;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

.main-navigation {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--neon-blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

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

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 1rem;
}

.site-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--neon-blue);
  box-shadow: var(--glow-blue);
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

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

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu a:hover,
.nav-menu a.nav-active {
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(176, 38, 255, 0.1));
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230a0a0f" width="1200" height="600"/><g fill="none" stroke="%2300d9ff" stroke-width="1" opacity="0.2"><circle cx="100" cy="100" r="80"/><circle cx="900" cy="400" r="120"/><circle cx="600" cy="300" r="100"/></g></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 3rem;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0, 217, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(176, 38, 255, 0.6);
}

.container-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-title,
.section-title-center {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
}

.section-title-center {
  text-align: center;
}

.editor-word {
  background: rgba(20, 20, 35, 0.5);
  padding: 4rem 0;
  position: relative;
}

.editor-card {
  background: var(--card-bg);
  border: 2px solid var(--neon-purple);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(176, 38, 255, 0.3);
  position: relative;
}

.editor-icon {
  font-size: 3rem;
  color: var(--neon-purple);
  margin-bottom: 1.5rem;
  text-align: center;
}

.editor-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

.editor-signature {
  font-style: italic;
  margin-top: 2rem;
  color: var(--neon-blue);
}

.features-section {
  padding: 5rem 0;
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 15px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-blue);
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--neon-blue);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.latest-posts,
.blog-section {
  padding: 5rem 0;
  background: rgba(5, 5, 10, 0.5);
}

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

.post-card {
  background: var(--card-bg);
  border: 1px solid rgba(176, 38, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(176, 38, 255, 0.5);
  border-color: var(--neon-purple);
}

.post-image-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.post-card:hover .post-image {
  transform: scale(1.1);
}

.post-content {
  padding: 2rem;
}

.post-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--neon-blue);
}

.post-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.read-more,
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neon-purple);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover,
.blog-read-more:hover {
  color: var(--neon-blue);
  gap: 1rem;
}

.review-section {
  padding: 5rem 0;
}

.review-cta-card {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(176, 38, 255, 0.1));
  border: 2px solid var(--neon-blue);
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

.review-cta-card h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--neon-blue);
}

.review-cta-card p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.review-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(176, 38, 255, 0.4);
}

.review-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 217, 255, 0.6);
}

.site-footer {
  background: var(--darker-bg);
  border-top: 2px solid var(--neon-purple);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-section h4 {
  font-family: 'Orbitron', sans-serif;
  color: var(--neon-blue);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.reg-number {
  font-size: 0.9rem;
  margin-top: 1rem;
  opacity: 0.7;
}

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

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

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

.footer-links a:hover {
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  color: var(--text-secondary);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.98);
  border-top: 2px solid var(--neon-blue);
  padding: 2rem;
  z-index: 10000;
  box-shadow: 0 -5px 30px rgba(0, 217, 255, 0.3);
  display: none;
}

.cookie-banner.show {
  display: block;
}

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

.cookie-text h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--neon-blue);
  margin-bottom: 0.8rem;
}

.cookie-text p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--neon-purple);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
}

.accept-btn {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: white;
  box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4);
}

.accept-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(176, 38, 255, 0.6);
}

.necessary-btn {
  background: rgba(0, 217, 255, 0.2);
  color: var(--neon-blue);
  border: 1px solid var(--neon-blue);
}

.necessary-btn:hover {
  background: rgba(0, 217, 255, 0.3);
}

.reject-btn {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--text-secondary);
}

.reject-btn:hover {
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.page-header {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(176, 38, 255, 0.15));
  padding: 5rem 0;
  text-align: center;
  border-bottom: 2px solid var(--neon-blue);
}

.page-header-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
  margin-bottom: 1rem;
}

.page-header-content p {
  font-size: 1.3rem;
  color: var(--text-secondary);
}

.blog-posts-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.blog-post-item {
  background: var(--card-bg);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2rem;
  transition: all 0.3s ease;
}

.blog-post-item:hover {
  transform: translateX(10px);
  border-color: var(--neon-purple);
  box-shadow: 0 10px 40px rgba(176, 38, 255, 0.4);
}

.blog-post-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post-item:hover .blog-post-image img {
  transform: scale(1.1);
}

.blog-post-text {
  padding: 2rem 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-meta,
.post-meta-single {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.post-meta span,
.post-meta-single span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-post-text h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: var(--neon-blue);
  margin-bottom: 1rem;
}

.blog-post-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-intro {
  padding: 4rem 0;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: var(--neon-purple);
  margin-bottom: 2rem;
  text-shadow: var(--glow-purple);
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.team-section {
  padding: 5rem 0;
  background: rgba(5, 5, 10, 0.5);
}

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

.team-card {
  background: var(--card-bg);
  border: 1px solid rgba(176, 38, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-purple);
  box-shadow: 0 15px 40px rgba(176, 38, 255, 0.5);
}

.team-image-wrapper {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image-wrapper img {
  transform: scale(1.05);
}

.team-info {
  padding: 2rem;
}

.team-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
}

.team-position {
  color: var(--neon-purple);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.team-bio {
  color: var(--text-secondary);
  line-height: 1.7;
}

.values-section {
  padding: 5rem 0;
}

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

.value-item {
  background: var(--card-bg);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 10px 35px rgba(0, 217, 255, 0.4);
}

.value-icon {
  font-size: 3rem;
  color: var(--neon-purple);
  margin-bottom: 1.5rem;
}

.value-item h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.value-item p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-section {
  padding: 5rem 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info {
  background: var(--card-bg);
  border: 1px solid rgba(176, 38, 255, 0.3);
  border-radius: 15px;
  padding: 3rem;
  height: fit-content;
}

.contact-info h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: var(--neon-purple);
  margin-bottom: 1.5rem;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  font-size: 2rem;
  color: var(--neon-blue);
  width: 50px;
  flex-shrink: 0;
}

.contact-details h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-details a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--neon-blue);
}

.contact-form-wrapper {
  background: var(--card-bg);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 15px;
  padding: 3rem;
}

.contact-form-wrapper h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: var(--neon-blue);
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.submit-btn {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0, 217, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(176, 38, 255, 0.6);
}

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

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background: var(--card-bg);
  border: 2px solid var(--neon-blue);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 10px 50px rgba(0, 217, 255, 0.5);
}

.modal-icon {
  font-size: 4rem;
  color: var(--neon-blue);
  margin-bottom: 1.5rem;
}

.modal-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: var(--neon-blue);
  margin-bottom: 1rem;
}

.modal-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.modal-close-btn {
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(176, 38, 255, 0.5);
}

.post-single {
  background: var(--dark-bg);
}

.post-header-single {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(176, 38, 255, 0.1));
  padding: 4rem 0 2rem;
  border-bottom: 2px solid var(--neon-blue);
}

.post-meta-single {
  margin-bottom: 2rem;
}

.post-header-single h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  color: var(--neon-blue);
  margin-bottom: 2rem;
  line-height: 1.3;
  text-shadow: var(--glow-blue);
}

.post-featured-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 15px;
  border: 2px solid var(--neon-purple);
  box-shadow: 0 10px 40px rgba(176, 38, 255, 0.3);
}

.post-content-single {
  padding: 4rem 0;
}

.post-content-single h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: var(--neon-purple);
  margin: 2.5rem 0 1.5rem;
  text-shadow: var(--glow-purple);
}

.post-content-single h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  color: var(--neon-blue);
  margin: 2rem 0 1rem;
}

.post-content-single p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.related-posts {
  padding: 5rem 0;
  background: rgba(5, 5, 10, 0.5);
}

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

.related-card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-purple);
  box-shadow: 0 15px 40px rgba(176, 38, 255, 0.4);
}

.related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-card h3 {
  padding: 1.5rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: var(--neon-blue);
}

.related-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem 1.5rem;
  color: var(--neon-purple);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.related-card a:hover {
  color: var(--neon-blue);
  gap: 1rem;
}

@media (max-width: 1024px) {
  .blog-post-item {
    grid-template-columns: 1fr;
  }

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

  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .cookie-content {
    flex-direction: column;
  }

  .posts-grid,
  .features-grid,
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}