/* Basic reset and set up full height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #ffffff; /* White background for clean appearance */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Container for centered content, ensuring it uses the full viewport */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px; /* Padding to prevent content from touching the edges */
}

/* Styling the logo */
.logo {
    max-width: 80%; /* Resize for proper visibility */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 0px; /* Adequate space below the logo */
}

/* Description with improved spacing */
.description {
    font-size: 20px;
    color: #555; /* Subdued dark gray for better readability */
    max-width: 700px; /* Adjust width for better text alignment */
}

/* Stylish contact link matching logo theme */
.contact-link {
	margin-top: 50px;
    font-size: 20px;
    background-color: #66C2B9; /* Teal background matching the logo */
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2); /* Subtle shadow for 3D effect */
    transition: background-color 0.3s, transform 0.2s;
	margin-bottom: 40px;
}


/* Solutions Section Styling */
.solutions-section {
    margin: 30px 0; /* Add spacing around the section */
    text-transform: uppercase; /* Consulting-style bold text */
    font-weight: bold;
    font-size: 14px; /* Small bold text */
    color: #333; /* Dark gray for better readability */
}

.divider {
    width: 200px;
    height: 3px;
    background-color: #66C2B9; /* Teal color matching the logo */
    margin: 15px auto; /* Centered with spacing */
}

.solution-item {
    margin
}
	
.contact-link:hover {
    background-color: #4FA69A; /* Slightly darker teal on hover */
    transform: translateY(-2px); /* Gentle lift effect on hover */
}

/* Footer with clean and minimal styling */
footer {
    position: absolute;
    bottom: 20px; /* Positioned at the bottom of the page */
    width: 100%;
    font-size: 14px;
    color: #999;
}
