body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.content {
    max-width: 800px;
	min-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.logo-container {
    text-align: center;
    margin-bottom: 10px;
}

.logo {
    max-width: 100%;
    height: auto;
}

/* Button Container Styles */
.button-container {
    text-align: center;
    margin-bottom: 20px;
}

.button-row {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.color-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

.color-button:hover {
    transform: scale(1.1);
}

/* Specific Button Colors */
.grey-button { background-color: #7f8c8d; }
.purple-button { background-color: #8E44AD; }
.green-button { background-color: #27ae60; }
.blue-button { background-color: #2980b9; }
.red-button { background-color: #e74c3c; }
.yellow-button { background-color: #f1c40f; }
.orange-button { background-color: #e67e22; }
.turquoise-button { background-color: #1abc9c; }

/* Navigation Container Styles */
.navigation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.nav-item {
    display: inline-block;
    width: 45%;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    position: relative;
}

/* Border for the first and second navigation boxes (Grey) */
#greySection .nav-item {
    border: 8px solid grey;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3), 0 10px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

/* Border for the 3rd, 4th, 5th, 6th, and new sections with purple color */
#purpleSection .nav-item,
#greenSection .nav-item,
#purpleSectionMore .nav-item {
    border: 8px solid #8E44AD; /* Purple color from the logo */
    box-shadow: 0 0 20px rgba(142, 68, 173, 0.5), 0 10px 10px rgba(142, 68, 173, 0.2);
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

/* Border for the new green sections */
#greenSectionMore1 .nav-item,
#greenSectionMore2 .nav-item,
#greenSectionMore3 .nav-item {
    border: 8px solid #27ae60; /* Green color */
    box-shadow: 0 0 20px rgba(39, 174, 96, 0.5), 0 10px 10px rgba(39, 174, 96, 0.2);
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

/* Border for the new blue section navigation boxes */
#blueSection .nav-item {
    border: 8px solid #2980b9; /* Blue-button color */
    box-shadow: 0 0 20px rgba(41, 128, 185, 0.5), 0 10px 10px rgba(41, 128, 185, 0.2);
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

/* Red sections (new) */
#redSection .nav-item, 
#redSection1 .nav-item {
    border: 8px solid #e74c3c; /* Red color */
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.5), 0 10px 10px rgba(231, 76, 60, 0.2);
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

/* Border for the new yellow sections */
#yellowSection .nav-item, 
#yellowSection1 .nav-item {
    border: 8px solid #f1c40f; /* Yellow color */
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.5), 0 10px 10px rgba(241, 196, 15, 0.2);
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}


/* Reflection effect for all navigation boxes */
.nav-item::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: rgba(255, 255, 255, 0.4);
    z-index: -1;
    border-radius: inherit;
    filter: blur(8px);
}

.nav-item h2 {
    color: #4CAF50; /* This color matches the green in your logo */
    font-size: 1.5em;
    margin-bottom: 10px;
}

.nav-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
