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

body {
  font-family: 'Courier New', monospace;
  background-color: #000;
  color: #00FF00;
  line-height: 1.6;
  overflow-x: hidden;
}

.open-sans {
  font-family: 'Open Sans', 'Courier New', monospace;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Courier New', monospace;
  font-weight: bold;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: #FFBF00;
}

h2 {
  font-size: 2rem;
  border-bottom: 1px solid #008800;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
  color: #FFBF00;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #00FFFF;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #FFBF00;
  text-decoration: underline;
}

a:focus {
  outline: 2px solid #00FFFF;
  outline-offset: 2px;
}


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


header {
  background-color: #000;
  border-bottom: 1px solid #008800;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

header.headroom--unpinned {
  transform: translateY(-100%);
}

header.headroom--pinned {
  transform: translateY(0);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
}

.header-contact {
  margin-left: 1rem;
  font-size: 0.9rem;
}

.header-contact a {
  color: #00FF00;
  display: flex;
  align-items: center;
}

.header-contact a i {
  margin-right: 0.5rem;
}


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

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

nav ul li a {
  color: #00FF00;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
}

nav ul li a::before {
  content: "> ";
  opacity: 0;
  transition: opacity 0.3s;
}

nav ul li a:hover::before {
  opacity: 1;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #00FF00;
  font-size: 1.5rem;
  cursor: pointer;
}


.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.close-nav {
  background: none;
  border: none;
  color: #FF5555;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav ul li {
  margin-bottom: 1.5rem;
}

.mobile-nav ul li a {
  color: #00FF00;
  font-size: 1.2rem;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid #008800;
}

.mobile-nav ul li a::before {
  content: "$ ";
  color: #FFBF00;
}


main {
  padding-top: 80px;
  min-height: calc(100vh - 80px - 200px); 
}


.hero {
  background-color: #000;
  padding: 4rem 0;
  text-align: center;
  border-bottom: 1px solid #008800;
}

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

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  text-shadow: 0 0 5px #00FF00;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-ascii {
  font-family: monospace;
  white-space: pre;
  line-height: 1.2;
  margin: 2rem auto;
  font-size: 0.7rem;
  color: #FFBF00;
}

.hero-image {
  margin: 2rem auto;
  max-width: 100%;
  height: auto;
  border: 1px solid #008800;
}


.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #008800;
  color: #000;
  border: none;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background-color: #00AA00;
  text-decoration: none;
}

.btn:focus {
  outline: 2px solid #00FFFF;
  outline-offset: 2px;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background-color: #FFBF00;
  transition: left 0.5s;
}

.btn:hover::after {
  left: 0;
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid #FFBF00;
  color: #FFBF00;
}

.btn-secondary:hover {
  background-color: rgba(255, 191, 0, 0.1);
  color: #FFBF00;
}


.section {
  padding: 4rem 0;
  border-bottom: 1px solid #008800;
}

.section:last-of-type {
  border-bottom: none;
}

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

.section-header h2 {
  display: inline-block;
  border-bottom: 2px solid #FFBF00;
}

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


.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: rgba(0, 136, 0, 0.1);
  border: 1px solid #008800;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 255, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

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

.card:hover::before {
  opacity: 1;
}

.card-header {
  margin-bottom: 1rem;
  border-bottom: 1px solid #00FF00;
  padding-bottom: 0.5rem;
}

.card-header h3 {
  color: #FFBF00;
}

.card-content {
  font-size: 0.9rem;
}

.card-footer {
  margin-top: 1.5rem;
  text-align: right;
}


.terminal {
  background-color: #000;
  border: 1px solid #008800;
  padding: 1rem;
  font-family: 'Courier New', monospace;
  position: relative;
  overflow: hidden;
}

.terminal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #00FF00, transparent);
  animation: terminal-scan 2s linear infinite;
}

@keyframes terminal-scan {
  0% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(100%);
  }
}

.terminal-header {
  border-bottom: 1px solid #008800;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}

.terminal-title {
  color: #FFBF00;
  font-weight: bold;
}

.terminal-controls span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 5px;
}

.terminal-controls span:nth-child(1) {
  background-color: #FF5555;
}

.terminal-controls span:nth-child(2) {
  background-color: #FFBF00;
}

.terminal-controls span:nth-child(3) {
  background-color: #00FF00;
}

.terminal-content {
  line-height: 1.5;
}

.terminal-line {
  display: block;
  margin-bottom: 0.5rem;
}

.terminal-line::before {
  content: "$ ";
  color: #FFBF00;
}

.terminal-output {
  display: block;
  margin-left: 1rem;
  margin-bottom: 0.5rem;
  color: #AAAAAA;
}

.terminal-cursor {
  display: inline-block;
  width: 0.6em;
  height: 1em;
  background-color: #00FF00;
  animation: cursor-blink 1s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}

@keyframes cursor-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}


.form-container {
  margin-top: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #008800;
  padding: 2rem;
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #FFBF00;
}

input, textarea, select {
  width: 100%;
  padding: 0.8rem;
  background-color: #000;
  border: 1px solid #008800;
  color: #00FF00;
  font-family: 'Courier New', monospace;
  resize: vertical;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #00FFFF;
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.form-footer {
  text-align: center;
}


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

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

.text-amber {
  color: #FFBF00;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }


table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-family: 'Courier New', monospace;
}

th, td {
  padding: 0.8rem;
  text-align: left;
  border-bottom: 1px solid #008800;
}

th {
  color: #FFBF00;
  background-color: rgba(0, 0, 0, 0.3);
}

tr:hover {
  background-color: rgba(0, 136, 0, 0.1);
}


.chart-container {
  margin: 2rem 0;
  border: 1px solid #008800;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
}

.chart-title {
  text-align: center;
  margin-bottom: 1rem;
  color: #FFBF00;
}

.ascii-chart {
  font-family: monospace;
  white-space: pre;
  line-height: 1.2;
  font-size: 0.7rem;
  color: #00FF00;
  text-align: center;
}


.simulator-container {
  margin: 2rem 0;
  border: 1px solid #008800;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.3);
}

.simulator-header {
  margin-bottom: 2rem;
  text-align: center;
}

.simulator-controls {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.control-group {
  margin-bottom: 1rem;
}

.simulator-output {
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid #00FF00;
  background-color: rgba(0, 0, 0, 0.5);
}

.simulator-tabs {
  display: flex;
  margin-bottom: 1rem;
  border-bottom: 1px solid #008800;
}

.simulator-tab {
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: #00FF00;
  background-color: transparent;
  border: none;
  font-family: 'Courier New', monospace;
}

.simulator-tab.active {
  color: #FFBF00;
  border-bottom: 2px solid #FFBF00;
}

.simulator-panel {
  display: none;
}

.simulator-panel.active {
  display: block;
}


.slider-container {
  margin: 1.5rem 0;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.slider-value {
  color: #FFBF00;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background-color: #000;
  border: 1px solid #008800;
  border-radius: 5px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background-color: #00FF00;
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background-color: #00FF00;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}


.tabs-container {
  margin: 2rem 0;
}

.tabs-header {
  display: flex;
  border-bottom: 1px solid #008800;
}

.tab {
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  background-color: transparent;
  color: #00FF00;
  border: none;
  font-family: 'Courier New', monospace;
  position: relative;
}

.tab.active {
  color: #FFBF00;
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFBF00;
}

.tab-content {
  padding: 1.5rem 0;
  display: none;
}

.tab-content.active {
  display: block;
}


footer {
  background-color: #000;
  border-top: 1px solid #008800;
  padding: 3rem 0;
  margin-top: 4rem;
}

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

.footer-section h3 {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #FFBF00;
}

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

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

.footer-links li a {
  color: #00FF00;
  transition: color 0.3s;
  display: inline-block;
}

.footer-links li a::before {
  content: "> ";
  opacity: 0.7;
  margin-right: 5px;
}

.footer-links li a:hover {
  color: #FFBF00;
  text-decoration: none;
}

.footer-contact p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 0.8rem;
  color: #FFBF00;
  min-width: 20px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 136, 0, 0.3);
  font-size: 0.9rem;
  color: #888;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  border-top: 1px solid #008800;
  padding: 1rem;
  z-index: 9999;
  display: none;
}

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  overflow-y: auto;
}

.cookie-modal-content {
  background-color: #000;
  border: 1px solid #008800;
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #008800;
  padding-bottom: 1rem;
}

.cookie-modal-close {
  background: none;
  border: none;
  color: #FF5555;
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-category {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 136, 0, 0.3);
  padding-bottom: 1rem;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #333;
  transition: .4s;
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #008800;
}

input:focus + .cookie-slider {
  box-shadow: 0 0 1px #008800;
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

.cookie-category-description {
  font-size: 0.9rem;
  color: #AAA;
}

.cookie-modal-footer {
  margin-top: 2rem;
  text-align: right;
}


.breadcrumbs {
  margin: 1rem 0 2rem;
  font-size: 0.9rem;
}

.breadcrumbs ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: ">";
  margin: 0 0.5rem;
  color: #888;
}

.breadcrumbs a {
  color: #00FF00;
}

.breadcrumbs li:last-child a {
  color: #FFBF00;
  pointer-events: none;
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background-color: #000;
  border: 1px solid #008800;
  max-width: 500px;
  margin: 10% auto;
  padding: 2rem;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #008800;
  padding-bottom: 0.5rem;
}

.modal-close {
  background: none;
  border: none;
  color: #FF5555;
  font-size: 1.5rem;
  cursor: pointer;
}

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

.modal-footer {
  text-align: right;
  border-top: 1px solid #008800;
  padding-top: 1rem;
}


.error-message {
  color: #FF5555;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}

input.error, textarea.error {
  border-color: #FF5555;
}

.error-terminal {
  background-color: rgba(255, 0, 0, 0.1);
  border: 1px solid #FF5555;
  padding: 1rem;
  margin: 1rem 0;
  color: #FF5555;
  font-family: 'Courier New', monospace;
}

.error-terminal::before {
  content: "ERROR: ";
  font-weight: bold;
}


.thank-you-container {
  text-align: center;
  padding: 4rem 0;
}

.thank-you-icon {
  font-size: 4rem;
  color: #00FF00;
  margin-bottom: 2rem;
}

.thank-you-message {
  margin-bottom: 2rem;
}

.thank-you-ascii {
  font-family: monospace;
  white-space: pre;
  line-height: 1.2;
  margin: 2rem auto;
  font-size: 0.7rem;
  color: #00FF00;
}


.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.policy-date {
  font-style: italic;
  color: #888;
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 2rem;
}

.policy-section h3 {
  margin-bottom: 1rem;
  color: #FFBF00;
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info {
  padding: 2rem;
  border: 1px solid #008800;
  background-color: rgba(0, 0, 0, 0.3);
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.contact-info h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #FFBF00;
}

.contact-details {
  margin-top: 1.5rem;
}

.contact-details p {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.contact-details i {
  margin-right: 1rem;
  color: #FFBF00;
  min-width: 20px;
  text-align: center;
}

.map-container {
  border: 1px solid #008800;
  height: 100%;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.hack-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed #008800;
}

.hack-item:last-child {
  border-bottom: none;
}

.hack-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.hack-icon {
  font-size: 2rem;
  color: #FFBF00;
  margin-right: 1rem;
}

.hack-title {
  margin-bottom: 0;
}

.hack-content {
  margin-left: 3rem;
}

.hack-calculator {
  margin-top: 2rem;
  padding: 2rem;
  border: 1px solid #008800;
  background-color: rgba(0, 0, 0, 0.3);
}


.savings-calculator {
  margin: 2rem 0;
  padding: 2rem;
  border: 1px solid #008800;
  background-color: rgba(0, 0, 0, 0.3);
}

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

.calculator-result {
  padding: 1.5rem;
  border: 1px solid #00FF00;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.calculator-result.active {
  display: block;
}


.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.goal-card {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid #008800;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.goal-card-header {
  margin-bottom: 1.5rem;
}

.goal-card-content {
  flex-grow: 1;
}

.goal-card-footer {
  margin-top: 1.5rem;
  text-align: right;
}


@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fade-in 0.5s ease-out forwards;
}


.sticky-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sticky-content {
  position: sticky;
  top: 80px; 
  background-color: #000;
  padding: 2rem 0;
  z-index: 1;
}

.reveal-trigger {
  position: absolute;
  bottom: 20vh;
  width: 100%;
  height: 1px;
}


.iti {
  width: 100%;
}


@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-ascii {
    font-size: 0.6rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .header-content {
    padding: 0 1rem;
  }
  
  .header-contact {
    display: none;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .cards-container {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .simulator-controls {
    grid-template-columns: 1fr;
  }
  
  .tabs-header {
    flex-direction: column;
  }
  
  .tab {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero-ascii {
    font-size: 0.4rem;
    display: none;
  }
  
  .form-container {
    padding: 1.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}