:root{
--color-primary: rgb(112, 250, 218);
--color-primary-lighter: rgb(211, 254, 244);
--color-secondary: rgb(54,141,158);
--ocker: rgb(219,199,44);
}

@font-face
{
  font-family: "Cheese Sauce";
  font-style: normal;
  font-weight: 100 900;		
  font-display: swap;
  src: url("../fonts/Cheese\ Sauce.ttf") format("truetype");
}

.footer_container{
  background-color: black;
}

.necessary_content
{
  background-color: black;
  color: #888;
  padding: 1rem 0;
  font-size: 0.8rem;
  border-top: 1px solid #333;
}

.legal-simple {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-simple-item {
    flex: 1;
    min-width: 300px;
}

.legal-simple-heading {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-simple-content {
    color: rgb(156,163,175);
    line-height: 1.5;
    font-size: 0.8rem;
}

.legal-simple-content p {
    margin-bottom: 0.7rem;
}

.legal-simple-content a {
    color: rgb(156,163,175);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-simple-content a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-simple {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legal-simple-item {
        min-width: auto;
    }
    
    .necessary_content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-simple-heading {
        font-size: 0.85rem;
    }
    
    .legal-simple-content {
        font-size: 0.75rem;
    }
}