body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.home-button {
    color: white;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
    background-color: #333; /* Same as navbar background */
}

.home-button:hover {
    background-color: #575757;
}

/* Basic styles for the navbar */
.navbar {
    background-color: #333;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.navbar a {
    color: white;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    flex: 1;
    transition: background-color 0.3s ease;
}

.navbar a:hover {
    background-color: #575757;
}

/* Basic styles for the boxes */
.information-box {
    display: inline-block;
    width: 22%;
    height: 150px;
    margin: 10px;
    background-color: #f4f4f4;
    border: 2px solid #ccc;
    text-align: center;
    line-height: 150px;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for the boxes */
.information-box:hover {
    background-color: #ddd;
}

/* Ensuring that the boxes align properly */
.container {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

a {
    text-decoration: none;
}

.main-content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

/* Left column with the content */
.left-column {
    width: 70%;
}

/* Right column with tiles */
.right-column {
    width: 28%;
    padding-left: 20px;
    background-color: #f4f4f4;
    border: 2px solid #ccc;
    padding-top: 10px;
}

/* Styling for each tile in the right column */
.tile {
    background-color: #ddd;
    padding: 20px;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.tile a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}

.tile:hover {
    background-color: #bbb;
}

.tile a:hover {
    color: #0056b3;
}

.general-info {
    padding: 20px;
}

/* Styling for product tiles */
.product-made {
    display: block; /* Stack tiles vertically */
    margin-top: 20px;
}

.product-tile {
    background-color: #ddd;
    padding: 20px;
    margin-bottom: 15px;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 750px; /* Set the width to 750px (3 times the previous width) */
    margin-left: 0; /* Align to the left */
}

.product-tile a {
    text-decoration: none;
    color: black;
}

.product-tile h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.product-tile p {
    font-size: 16px;
    color: #555;
    text-align: left;
}

.product-tile:hover {
    background-color: #bbb;
}

.product-tile a:hover h2 {
    color: #0056b3;
}

.product-tile a:hover p {
    color: #333;
}

/* Reflection section */
.reflection {
    color: #333;
    padding: 20px;
}

.explain{
    max-width: 900px;
}

.information-text{
    max-width: 750px;
}