/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

/* Header */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

.logo {
  height: 40px;
  width: auto;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
}

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

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #3498db;
}

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

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Main Content */
main {
  margin-top: 80px;
}

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

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

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.hero-image img {
  width: 100%;
  height: auto;
}

/* Buttons */
.btn-primary {
  background-color: #3498db;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #2980b9;
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

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

.btn-outline {
  background-color: transparent;
  color: #3498db;
  padding: 0.75rem 1.5rem;
  border: 2px solid #3498db;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: #3498db;
  color: white;
}

/* Sections */
.services,
.about-preview,
.testimonials,
.blog-preview,
.newsletter,
.contact {
  padding: 4rem 0;
}

.services {
  background-color: #f8f9fa;
}

.testimonials {
  background-color: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: block;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #6c757d;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.service-card p {
  color: #6c757d;
}

/* About Preview */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.about-text p {
  color: #6c757d;
  margin-bottom: 1rem;
}

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

.stat {
  text-align: center;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 10px;
}

.stat h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 0.5rem;
}

.stat p {
  color: #6c757d;
}

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

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-style: italic;
  color: #6c757d;
  margin-bottom: 1rem;
}

.testimonial-author strong {
  color: #2c3e50;
}

.testimonial-author span {
  color: #6c757d;
  font-size: 0.9rem;
}

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

.blog-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
}

.blog-card.featured h2 a {
  color: white;
}

.blog-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

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

.blog-date {
  color: #6c757d;
}

.blog-category {
  color: #3498db;
  font-weight: 500;
}

.blog-card.featured .blog-date,
.blog-card.featured .blog-category {
  color: rgba(255, 255, 255, 0.8);
}

.blog-card h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.blog-card h2 a {
  text-decoration: none;
  color: #2c3e50;
}

.blog-card h2 a:hover {
  color: #3498db;
}

.blog-card p {
  color: #6c757d;
  margin-bottom: 1rem;
}

.read-more {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

.blog-card.featured .read-more {
  color: white;
}

.blog-link {
  text-align: center;
}

/* Newsletter */
.newsletter {
  background-color: #2c3e50;
  color: white;
}

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

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #3498db;
}

/* Contact */
.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

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

.contact-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #6c757d;
}

.social-media h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-links a {
  color: #8ac1e6;
  text-decoration: none;
  font-weight: 500;
}

.social-links a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  opacity: 0.8;
  margin-top: 1rem;
}

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

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

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

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: white;
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

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

.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);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1002;
}

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

.cookie-modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
}

.cookie-modal-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.cookie-option {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #e9ecef;
  border-radius: 5px;
}

.cookie-option label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  margin-top: 0.2rem;
}

.cookie-option span {
  font-size: 0.9rem;
  color: #6c757d;
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

/* Page Specific Styles */
.page-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  color: #6c757d;
}

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

.about-mission h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.about-mission p {
  color: #6c757d;
  margin-bottom: 1rem;
}

.company-history {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.company-history h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 3rem;
  text-align: center;
}

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

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.timeline-year {
  background-color: #3498db;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  flex-shrink: 0;
}

.timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #6c757d;
}

.team {
  padding: 4rem 0;
}

.team h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 3rem;
  text-align: center;
}

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

.team-member {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.team-member h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.team-role {
  color: #3498db;
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-member p {
  color: #6c757d;
}

.values {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.values h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 3rem;
  text-align: center;
}

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

.value-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.value-card p {
  color: #6c757d;
}

.cta-section {
  padding: 4rem 0;
  background-color: #2c3e50;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

/* Article Styles */
.article {
  padding: 4rem 0;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.article-date {
  color: #6c757d;
}

.article-category {
  color: #3498db;
  font-weight: 500;
}

.article-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.article-excerpt {
  font-size: 1.2rem;
  color: #6c757d;
}

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

.article-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 2rem auto;
  display: block;
}

.article-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 2rem 0 1rem;
}

.article-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 1.5rem 0 1rem;
}

.article-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 1rem 0 0.5rem;
}

.article-content p {
  color: #6c757d;
  margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.article-content li {
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.article-content blockquote {
  border-left: 4px solid #3498db;
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: #6c757d;
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 5px;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}

.article-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.legal-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.last-updated {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 2rem 0 1rem;
}

.legal-page h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 1.5rem 0 1rem;
}

.legal-page h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 1rem 0 0.5rem;
}

.legal-page p {
  color: #6c757d;
  margin-bottom: 1rem;
}

.legal-page ul,
.legal-page ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.legal-page li {
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.legal-page address {
  font-style: normal;
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 5px;
  margin: 1rem 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid #e9ecef;
  padding: 0.75rem;
  text-align: left;
}

.cookie-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #2c3e50;
}

.cookie-table td {
  color: #6c757d;
}

.cookie-settings {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.cookie-settings h3 {
  margin-bottom: 1rem;
}

.contact-info {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

/* Thanks Page */
.thanks-page {
  padding: 4rem 0;
}

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

.thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: block;
}

.thanks-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.thanks-message {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

.thanks-info {
  margin-bottom: 3rem;
}

.thanks-info h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2rem;
}

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

.thanks-step {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.thanks-step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #3498db;
  margin-bottom: 1rem;
}

.thanks-step p {
  color: #6c757d;
}

.thanks-benefits {
  margin-bottom: 3rem;
  text-align: left;
}

.thanks-benefits h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  text-align: center;
}

.thanks-benefits ul {
  list-style-type: none;
  padding: 0;
}

.thanks-benefits li {
  background-color: #f8f9fa;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 5px;
  position: relative;
  padding-left: 2rem;
}

.thanks-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0.5rem;
  color: #3498db;
  font-weight: bold;
}

.thanks-actions {
  margin-bottom: 3rem;
}

.thanks-actions h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.thanks-actions p {
  color: #6c757d;
  margin-bottom: 2rem;
}

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

.contact-method {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
}

.contact-method h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.contact-method p {
  color: #6c757d;
  margin-bottom: 0.25rem;
}

.thanks-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.thanks-resources {
  margin-bottom: 3rem;
}

.thanks-resources h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.thanks-resources p {
  color: #6c757d;
  margin-bottom: 2rem;
}

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

.resource-link {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s ease;
}

.resource-link:hover {
  background-color: #e9ecef;
}

.resource-link h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.resource-link p {
  color: #6c757d;
  margin: 0;
}

.thanks-social {
  margin-bottom: 2rem;
}

.thanks-social h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.thanks-social p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.social-link {
  display: inline-block;
  background-color: #3498db;
  color: white;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    flex-direction: row;
    justify-content: space-around;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .article-navigation {
    flex-direction: column;
    text-align: center;
  }
  
  .thanks-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .thanks-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .article-header h1 {
    font-size: 2rem;
  }
  
  .legal-page h1 {
    font-size: 2rem;
  }
  
  .thanks-content h1 {
    font-size: 2rem;
  }
}
