:root {
  --neon-blue: #00f3ff;
  --neon-green: #39ff14;
  --neon-white: #ffffff;
  --dark-bg: #0a0e27;
  --darker-bg: #050810;
  --card-bg: rgba(10, 14, 39, 0.8);
  --text-primary: #e0e6ff;
  --text-secondary: #8b93b8;
  --border-glow: rgba(0, 243, 255, 0.3);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--darker-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.neon-grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

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

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

.main-header {
  position: relative;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-glow);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 243, 255, 0.1);
}

.header-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(0, 243, 255, 0.1), transparent);
  pointer-events: none;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo-zone {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  border-radius: 50%;
  border: 2px solid var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--neon-white);
  text-shadow: 0 0 10px var(--neon-blue);
}

.logo-text .accent {
  color: var(--neon-blue);
}

.main-nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-blue);
  box-shadow: 0 0 10px var(--neon-blue);
  transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--neon-blue);
  text-shadow: 0 0 10px var(--neon-blue);
}

.hero-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
}

.title-line {
  display: block;
  color: var(--neon-white);
}

.glow-text {
  color: var(--neon-blue);
  text-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue); }
  50% { text-shadow: 0 0 30px var(--neon-blue), 0 0 60px var(--neon-blue); }
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: transparent;
  border: 2px solid var(--neon-blue);
  color: var(--neon-blue);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.cta-button:hover {
  background: var(--neon-blue);
  color: var(--dark-bg);
  box-shadow: 0 0 40px rgba(0, 243, 255, 0.6);
  transform: translateY(-3px);
}

.cta-button.secondary {
  border-color: var(--neon-green);
  color: var(--neon-green);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.cta-button.secondary:hover {
  background: var(--neon-green);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.6);
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
}

.hologram-frame {
  position: relative;
  padding: 20px;
  border: 2px solid var(--neon-blue);
  border-radius: 15px;
  background: rgba(0, 243, 255, 0.05);
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.3), inset 0 0 30px rgba(0, 243, 255, 0.1);
}

.hologram-frame::before,
.hologram-frame::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--neon-green);
}

.hologram-frame::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.hologram-frame::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  filter: brightness(1.1) contrast(1.1);
}

.features-section,
.showcase-section,
.fact-section,
.cta-section,
.blog-section,
.about-intro,
.team-section,
.values-section,
.contact-section {
  position: relative;
  padding: 80px 0;
  z-index: 1;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: var(--neon-white);
  text-shadow: 0 0 20px var(--neon-blue);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: -40px;
  margin-bottom: 60px;
}

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

.feature-card {
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

.feature-icon {
  margin-bottom: 25px;
  color: var(--neon-blue);
  filter: drop-shadow(0 0 10px var(--neon-blue));
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--neon-white);
}

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

.fact-box {
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(57, 255, 20, 0.1));
  border: 2px solid var(--neon-blue);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 243, 255, 0.2);
}

.fact-icon {
  font-size: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px var(--neon-green));
}

.fact-box h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--neon-blue);
}

.fact-text {
  font-size: 20px;
  color: var(--text-primary);
  line-height: 1.8;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-title {
  font-size: 42px;
  margin-bottom: 25px;
  color: var(--neon-white);
}

.showcase-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.8;
}

.showcase-list {
  list-style: none;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--text-primary);
}

.showcase-list svg {
  color: var(--neon-green);
  flex-shrink: 0;
}

.cta-section {
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.05), rgba(57, 255, 20, 0.05));
  border-top: 1px solid var(--border-glow);
  border-bottom: 1px solid var(--border-glow);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--neon-white);
}

.cta-content p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 243, 255, 0.05), transparent);
  border-bottom: 1px solid var(--border-glow);
}

.page-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--neon-blue);
  text-shadow: 0 0 30px var(--neon-blue);
}

.page-subtitle {
  font-size: 22px;
  color: var(--text-secondary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 243, 255, 0.3);
  border-color: var(--neon-blue);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-secondary);
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-category {
  padding: 4px 12px;
  background: rgba(0, 243, 255, 0.1);
  border: 1px solid var(--neon-blue);
  border-radius: 20px;
  color: var(--neon-blue);
  font-size: 12px;
}

.blog-title a {
  font-size: 24px;
  font-weight: 700;
  color: var(--neon-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--neon-blue);
}

.blog-excerpt {
  margin: 15px 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--neon-green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  gap: 12px;
  text-shadow: 0 0 10px var(--neon-green);
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about-text h2 {
  font-size: 38px;
  margin-bottom: 25px;
  color: var(--neon-blue);
}

.about-text p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(0, 243, 255, 0.05);
  border: 1px solid var(--border-glow);
  border-radius: 10px;
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--neon-blue);
  text-shadow: 0 0 20px var(--neon-blue);
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 5px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

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

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 243, 255, 0.3);
  border-color: var(--neon-blue);
}

.team-image-wrapper {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.team-card:hover .team-image {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.team-info {
  padding: 25px;
}

.team-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--neon-white);
}

.team-role {
  color: var(--neon-blue);
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

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

.value-card {
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--neon-green);
  box-shadow: 0 10px 40px rgba(57, 255, 20, 0.2);
}

.value-icon {
  margin-bottom: 20px;
  color: var(--neon-green);
  filter: drop-shadow(0 0 10px var(--neon-green));
}

.value-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--neon-white);
}

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

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

.contact-info-panel {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid var(--border-glow);
}

.contact-info-panel h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--neon-blue);
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 15px;
}

.contact-icon {
  color: var(--neon-blue);
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--neon-white);
}

.contact-text p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.contact-form-panel {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid var(--border-glow);
}

.contact-form-panel h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--neon-blue);
}

.form-group {
  margin-bottom: 25px;
}

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

.form-input {
  width: 100%;
  padding: 12px 18px;
  background: rgba(0, 243, 255, 0.05);
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: transparent;
  border: 2px solid var(--neon-blue);
  color: var(--neon-blue);
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.submit-button:hover {
  background: var(--neon-blue);
  color: var(--dark-bg);
  box-shadow: 0 0 40px rgba(0, 243, 255, 0.6);
  transform: translateY(-3px);
}

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

.modal.active {
  display: flex;
}

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

.modal-icon {
  color: var(--neon-green);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px var(--neon-green));
}

.modal-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--neon-blue);
}

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

.modal-button {
  padding: 12px 35px;
  background: var(--neon-blue);
  border: none;
  color: var(--dark-bg);
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.modal-button:hover {
  box-shadow: 0 0 40px rgba(0, 243, 255, 0.8);
  transform: scale(1.05);
}

.post-article {
  padding: 60px 0 80px;
}

.post-header {
  text-align: center;
  margin-bottom: 50px;
}

.post-meta-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.post-date,
.post-category {
  padding: 6px 16px;
  background: rgba(0, 243, 255, 0.1);
  border: 1px solid var(--neon-blue);
  border-radius: 20px;
}

.post-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 25px;
  color: var(--neon-white);
  line-height: 1.2;
}

.post-intro {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.post-featured-image {
  margin-bottom: 60px;
}

.post-content {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-primary);
}

.post-content h2 {
  font-size: 36px;
  margin: 50px 0 25px;
  color: var(--neon-blue);
  text-shadow: 0 0 15px var(--neon-blue);
}

.post-content h3 {
  font-size: 28px;
  margin: 40px 0 20px;
  color: var(--neon-white);
}

.post-content p {
  margin-bottom: 25px;
}

.post-content ul,
.post-content ol {
  margin: 25px 0;
  padding-left: 30px;
}

.post-content li {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.post-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-glow);
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--neon-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-to-blog:hover {
  gap: 15px;
  text-shadow: 0 0 10px var(--neon-blue);
}

.main-footer {
  background: var(--dark-bg);
  border-top: 1px solid var(--border-glow);
  padding: 60px 0 30px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

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

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--neon-blue);
}

.footer-col p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

.footer-reg {
  margin-top: 15px;
  font-size: 13px;
  color: var(--text-secondary);
}

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

.footer-links li {
  margin-bottom: 12px;
}

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

.footer-links a:hover {
  color: var(--neon-blue);
  padding-left: 5px;
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-contact svg {
  color: var(--neon-blue);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact span {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-glow);
  color: var(--text-secondary);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--neon-blue);
  padding: 25px;
  z-index: 10000;
  box-shadow: 0 -5px 40px rgba(0, 243, 255, 0.3);
  display: none;
}

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

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

.cookie-text h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--neon-blue);
}

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

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

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 25px;
  border: 2px solid var(--neon-blue);
  background: transparent;
  color: var(--neon-blue);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn.accept {
  background: var(--neon-blue);
  color: var(--dark-bg);
}

.cookie-btn:hover {
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
  transform: translateY(-2px);
}

.cookie-btn.decline {
  border-color: var(--text-secondary);
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .hero-visual {
    position: relative;
    width: 100%;
    margin-top: 60px;
    transform: none;
  }
  
  .showcase-grid,
  .about-content-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    gap: 20px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .features-grid,
  .blog-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .post-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 22px;
  }
  
  .main-nav {
    gap: 15px;
  }
  
  .nav-link {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
  }
}