/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 02 2025 | 10:13:12 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

footer {
  background-color: #d4d4d4;
}

/* Footer main container */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 40px 20px;
  gap: 20px;
  background-color: rgba(213,206,212,255); /* Consistent background */
}

.item {
  flex: 1 1 200px;
  max-width: 250px;
	text-align:center;
}

ul {
  list-style: none;
  margin-top: 10px;
}

li {
  font-size: 18px;
  margin-bottom: 8px;
}

h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: black;
  transition: color 0.3s;
}

a:hover {
  color: blue;
}

label {
  font-size: 16px;
  font-weight: bold;
}

input[type="text"] {
  width: 100%;
  padding: 8px;
  margin: 10px 0;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.forms p {
  font-size: 14px;
  margin: 4px 0;
}

/* Copyright section */
.op {
  background-color: rgba(213,206,212,255); /* Slightly darker for contrast */
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  user-select: none;
 
}

/* 📱 Tablet view */
@media (max-width: 768px) {
  .footer {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    text-align: center;
  }

  .item {
    flex: 1 1 40%;
    max-width: none;
  }
}

/* 📱 Mobile view */
@media (max-width: 480px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .item {
    width: 90%;
  }

  h2 {
    font-size: 20px;
  }

  li {
    font-size: 16px;
  }

  input[type="text"] {
    width: 100%;
  }

  .op {
    font-size: 13px;
   padding:10px;
  }
}