body {
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

h1 {
    color: #d90000;
    margin-bottom: 20px;
    text-align: center;
    font-size: 2rem;
}

h2 {
    color: #222;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
    font-size: 1rem;
}

a {
    color: #d90000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 10px;
}

.row.sectionBlockLayout.text-start {
    display: none !important;
}

.button-link {
  display: inline-block;
  background-color: #d90000;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button-link:hover {
  background-color: #a00000;
  text-decoration: none;
}

.button-link:active {
  background-color: #800000;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        margin: 20px 15px;
        padding: 20px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    p,
    li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 15px 10px;
        padding: 15px;
    }

    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    p,
    li {
        font-size: 0.9rem;
    }
}