/* Base Styles */
:root {
  --primary-color: #0056b3;
  --primary-dark: #004494;
  --primary-light: #0077cc;
  --secondary-color: #6c757d;
  --accent-color: #28a745;
  --text-color: #333;
  --text-light: #6c757d;
  --text-dark: #212529;
  --background-color: #ffffff;
  --background-light: #f8f9fa;
  --background-dark: #343a40;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --border-radius: 4px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 2rem;
}

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

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 2rem;
}

blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background-color: var(--background-light);
  font-style: italic;
}

blockquote p {
  margin-bottom: 1rem;
}

blockquote cite {
  display: block;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text-light);
}

.center {
  text-align: center;
}

/* Buttons */
.btn-primary,
.btn-secondary,
button[type="submit"] {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1.6rem;
}

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

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

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

.btn-secondary:hover {
  background-color: #5a6268;
  color: white;
}

/* Header and Navigation */
header {
  background-color: white;
  padding: 2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 5rem;
}

nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav ul li {
  margin-left: 2.5rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
  background-color: rgba(0, 86, 179, 0.1);
}

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  color: white;
  padding: 8rem 0;
  text-align: center;
  background-image: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  margin-bottom: 4rem;
}

.hero h1 {
  font-size: 4.2rem;
  margin-bottom: 2rem;
  color: white;
}

.hero p {
  font-size: 2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features {
  padding: 6rem 0;
}

.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 3rem;
}

.feature-box {
  padding: 3rem;
  border-radius: var(--border-radius);
  background-color: var(--background-light);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
  margin: 0 auto 2rem;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 86, 179, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.feature-box .icon svg {
  width: 3rem;
  height: 3rem;
}

.feature-box h3 {
  margin-bottom: 1.5rem;
}

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

/* Latest Posts Section */
.latest-posts {
  padding: 6rem 0;
  background-color: var(--background-light);
}

.latest-posts h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.post-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.post-content {
  padding: 2rem;
}

.post-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.post-content h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.post-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.read-more {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:after {
  content: "→";
  margin-left: 0.5rem;
  transition: var(--transition);
}

.read-more:hover:after {
  margin-left: 0.8rem;
}

/* Highlights Section */
.highlights {
  padding: 6rem 0;
}

.highlights .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 4rem;
}

.history-highlight, .countdown-highlight {
  background-color: var(--background-light);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.history-content {
  margin-top: 2rem;
}

.countdown {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.time-block {
  text-align: center;
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  min-width: 8rem;
}

.time-block span {
  display: block;
}

.time-block span:first-child {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.time-block .label {
  font-size: 1.4rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}

/* Newsletter Section */
.newsletter {
  padding: 6rem 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.newsletter h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1.6rem;
}

.newsletter button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  background-color: var(--accent-color);
}

.newsletter button:hover {
  background-color: #218838;
}

/* Footer */
footer {
  background-color: var(--background-dark);
  color: white;
  padding: 6rem 0 2rem;
}

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

.footer-logo img {
  max-height: 5rem;
  margin-bottom: 1.5rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h3 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

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

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-contact i {
  margin-right: 1rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.social-icons svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: white;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-dark);
  color: white;
  padding: 2rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

.btn-cookie-accept {
  background-color: var(--success-color);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  background-color: #218838;
}

.btn-cookie-customize {
  background-color: var(--info-color);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-customize:hover {
  background-color: #138496;
}

.btn-cookie-decline {
  background-color: var(--secondary-color);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-decline:hover {
  background-color: #5a6268;
}

.cookie-more-info {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-more-info a {
  color: white;
  text-decoration: underline;
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 6rem 0;
  text-align: center;
  margin-bottom: 4rem;
}

.page-header h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

/* Blog Page */
.blog-content {
  padding: 4rem 0 6rem;
}

.blog-content .container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
}

.blog-filters h3 {
  margin-bottom: 2rem;
}

.blog-filters ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-filters ul li {
  margin-bottom: 1.5rem;
}

.blog-filters ul li a {
  color: var(--text-color);
  transition: var(--transition);
}

.blog-filters ul li a:hover,
.blog-filters ul li a.active {
  color: var(--primary-color);
  font-weight: 600;
}

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

.blog-post {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

.blog-post .post-content {
  padding: 3rem;
}

.post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--text-light);
}

.blog-post h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

/* About Page */
.about-intro {
  padding: 4rem 0 6rem;
}

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

.about-text h2 {
  margin-top: 3rem;
}

.about-text h2:first-child {
  margin-top: 0;
}

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

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 100%;
}

.team {
  padding: 6rem 0;
  background-color: var(--background-light);
}

.team h2 {
  text-align: center;
  margin-bottom: 4rem;
}

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

.team-member {
  text-align: center;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 2rem;
}

.team-member h3 {
  margin-bottom: 0.5rem;
}

.team-member p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  background-color: var(--background-light);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
}

.social-links svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: var(--text-dark);
  transition: var(--transition);
}

.social-links a:hover svg {
  fill: white;
}

.values {
  padding: 6rem 0;
}

.values h2 {
  text-align: center;
  margin-bottom: 4rem;
}

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

.value-box {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.value-box .icon {
  margin: 0 auto 2rem;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 86, 179, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.value-box .icon svg {
  width: 3rem;
  height: 3rem;
}

.value-box h3 {
  margin-bottom: 1.5rem;
}

.cta {
  padding: 6rem 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

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

.cta p {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Page */
.contact-content {
  padding: 4rem 0 6rem;
}

.contact-content .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.contact-info {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.contact-info h2 {
  margin-bottom: 3rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.info-item .icon {
  margin-right: 1.5rem;
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 86, 179, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.info-item .icon svg {
  width: 2rem;
  height: 2rem;
}

.info-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

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

.info-content a {
  color: var(--text-light);
  transition: var(--transition);
}

.info-content a:hover {
  color: var(--primary-color);
}

.social-block {
  margin-top: 3rem;
}

.social-block h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.contact-form h2 {
  margin-bottom: 3rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  transition: var(--transition);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
}

.form-checkbox input {
  width: auto;
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.form-checkbox label {
  margin-bottom: 0;
  font-weight: 400;
}

.map-section {
  padding: 6rem 0;
  background-color: var(--background-light);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 4rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}

.modal-icon {
  width: 8rem;
  height: 8rem;
  background-color: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
}

.modal-icon svg {
  width: 4rem;
  height: 4rem;
  stroke: white;
}

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

.modal p {
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.close-btn {
  width: 100%;
}

/* Blog Post Page */
.post-article {
  padding: 4rem 0 6rem;
}

.post-header {
  margin-bottom: 4rem;
}

.post-header h1 {
  font-size: 3.6rem;
  margin-bottom: 2rem;
}

.post-featured-image {
  margin-top: 3rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-featured-image img {
  width: 100%;
}

.post-content {
  font-size: 1.8rem;
  line-height: 1.7;
}

.post-content h2 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.post-content h3 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
  margin-left: 2rem;
  margin-bottom: 2.5rem;
}

.post-content li {
  margin-bottom: 1rem;
}

.info-box {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin: 3rem 0;
}

.info-box h4 {
  margin-bottom: 1.5rem;
}

.info-box ul {
  margin-bottom: 0;
}

.table-container {
  overflow-x: auto;
  margin: 3rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border-color);
}

th, td {
  padding: 1.2rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  background-color: var(--background-light);
  font-weight: 600;
}

tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}

.post-footer {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.post-tags span {
  font-weight: 600;
}

.post-tags a {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: var(--background-light);
  border-radius: 2rem;
  font-size: 1.4rem;
  transition: var(--transition);
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

.share-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.share-buttons span {
  font-weight: 600;
}

.share-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  transition: var(--transition);
}

.share-buttons a.facebook {
  background-color: #3b5998;
}

.share-buttons a.twitter {
  background-color: #1da1f2;
}

.share-buttons a.linkedin {
  background-color: #0077b5;
}

.share-buttons svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: white;
}

.related-posts {
  margin-top: 6rem;
}

.related-posts h3 {
  margin-bottom: 3rem;
}

.post-navigation {
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.nav-links {
  display: flex;
  justify-content: space-between;
}

.nav-previous,
.nav-next {
  max-width: 48%;
}

.nav-previous a,
.nav-next a {
  display: flex;
  flex-direction: column;
}

.nav-subtitle {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.nav-title {
  font-weight: 600;
}

.nav-next {
  text-align: right;
}

.nav-next a {
  align-items: flex-end;
}

/* Icons */
i.icon-location:before {
  content: "📍";
}

i.icon-phone:before {
  content: "📞";
}

i.icon-mail:before {
  content: "✉️";
}

i.icon-id:before {
  content: "🆔";
}

/* Responsive Styles */
@media (max-width: 1024px) {
  html {
    font-size: 58%;
  }
  
  .blog-content .container {
    grid-template-columns: 1fr;
  }
  
  .blog-filters {
    margin-bottom: 2rem;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .blog-post .post-image {
    height: 250px;
  }
  
  .contact-content .container {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
  
  .countdown {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .time-block {
    min-width: 10rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 56%;
  }
  
  .features .container,
  .highlights .container,
  .team-grid,
  .values-grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
  
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 2rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 1rem 1rem;
  }
  
  .hero {
    padding: 6rem 0;
  }
  
  .hero h1 {
    font-size: 3.6rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto 1.5rem;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .share-buttons {
    margin-top: 1.5rem;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .nav-previous,
  .nav-next {
    max-width: 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 54%;
  }
  
  .post-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter form {
    flex-direction: column;
  }
  
  .newsletter input {
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
  }
  
  .newsletter button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .hero h1 {
    font-size: 3.2rem;
  }
  
  .post-header h1 {
    font-size: 3rem;
  }
}
