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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

:root {
  --primary-red: rgb(234, 30, 38);
  --primary-black: #000;
  --accent-dark: #333;
  --gray-light: #f5f5f5;
  --gray-medium: #ddd;
  --white: #fff;
  --green: green;
}

header {
  background-color: var(--white);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--gray-medium);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container img {
  height: 40px;
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  font-weight: 500;
  color: var(--accent-dark);
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: var(--primary-red);
}

.cta-nav {
  margin-left: 2rem;
  background-color: var(--primary-red);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  transition: background-color 0.2s;
}

.cta-nav:hover {
  background-color: #c00510;
}

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

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: var(--accent-dark);
  border-radius: 2px;
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  background-color: var(--gray-light);
  gap: 2rem;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.hero-text {
  flex: 1 1 50%;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--accent-dark);
}

.hero-text .btn-primary {
  background-color: var(--primary-red);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s;
}

.hero-text .btn-primary:hover {
  background-color: #c00510;
}

.hero-image-wrapper {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

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

.steps {
  padding: 3rem 2rem;
  background-color: var(--white);
}

.steps h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--primary-black);
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-red);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--accent-dark);
}

.step-content p {
  font-size: 1rem;
  color: var(--accent-dark);
}

.summary {
  background-color: var(--gray-light);
  padding: 3rem 2rem;
  text-align: center;
}

.summary h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.summary p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--accent-dark);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.summary .btn-primary {
  background-color: var(--primary-red);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s;
}

.summary .btn-primary:hover {
  background-color: #c00510;
}

.footer {
  background-color: var(--primary-black);
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.footer a:hover {
  color: #c00510;
  text-decoration: underline;
}

.footer-icon {
  font-size: 2rem;
  color: #fff;
}

.footer-icon:hover {
  color: #c00510;
}

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  z-index: 9999;
}

#cookie-consent-banner p {
  margin: 0;
  flex: 1 1 60%;
}

#cookie-consent-banner a {
  color: #ffd700;
  text-decoration: underline;
}

#cookie-consent-banner a:hover {
  color: #c00510;
  text-decoration: underline;
}

#cookie-consent-banner button {
  background-color: var(--green);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  flex: 0 0 auto;
  margin-left: 1rem;
  transition: background-color 0.2s;
}

#cookie-consent-banner button:hover {
  background-color: #3fe50d !important;
}

.landing-cards .card {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.landing-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.landing-cards .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.landing-cards .card-img-top {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

.landing-cards .card-text {
  font-size: 0.95rem;
  color: #555;
}

.landing-cards .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.landing-cards .btn {
  margin-top: auto;
}

.card-body .text-muted {
  color: #666;
  font-size: 0.85rem;
}

@media (max-width: 991px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    top: 64px;
    right: 0;
    width: 220px;
    height: calc(100vh - 64px);
    background-color: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links li {
    margin-bottom: 1.25rem;
  }
  .hamburger {
    display: flex;
  }
  nav {
    position: relative;
  }
}
@media (max-width: 480px) {
  #cookie-consent-banner {
    flex-direction: column;
    text-align: center;
  }
  #cookie-consent-banner p {
    flex: 1 1 100%;
    margin-bottom: 0.5rem;
  }
  #cookie-consent-banner button {
    margin: 0 auto;
  }
}/*# sourceMappingURL=blog_2.css.map */