body {
    font-family: "Work Sans", sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f3f4ec;
}

a {
    text-decoration: none;
    font-size: 1.5rem;
}

h1 {
    font-size: 1.8rem;
    color: #484848
}
h3 {
    font-size: 1.2rem;
    color: #484848
}

.navbar {
    margin-top: 10px;

}
.container {
    margin-top:20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px; /* Adds spacing between the cards */
}

.content {
    padding: 20px;
}
.centered {
    text-align: center;
}
.product {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-bottom: 20px;
    width: calc(100% / 3 - 20px); /* Adjusts width accounting for gap */
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column; /* Makes sure content is organized vertically */
}
.product img {
    width: 100%;
    height: auto;
}
.product-info {
    padding: 10px;
    text-align: center;
    flex: 1; /* Ensures the info area fills available vertical space */
}
.product-info h2 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px; /* Ensures spacing between title and button */
}
.product-info button {
    background-color: #484848;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 40px;
    display: block; /* Ensures button is not inline */
    width: 100%; /* Button takes full width of its container */
    cursor: pointer;
}

.product-info a {
    color: white;
}
@media (max-width: 1200px) { /* Adjusted for better responsiveness on tablets */
    .product {
        width: calc(100% / 2 - 20px); /* Shows two items per row on medium screens */
    }

    .form-input {
        font-size: 2rem;
    }
}
@media (max-width: 600px) {
    .product {
        width: 100%; /* Full width on small screens */
    }
    .form-input {
        font-size: 1.7rem;
    }
}

.form-input, .form-checkbox {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius:40px;
    display: block;
}

.form-button {
    font-size: 1.5rem;
}

.form-container {
    background-color: #fff; /* Ensures the form background is white */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow around the form */
    padding: 20px;
    border-radius: 20px;
}
.form-container  p {
    color: #484848;
    font-size: 1.1rem;
}
.form-container a {
    color: red;
    font-size: 1.1rem;
}