img {
    width: 100%; /* Responsive */
    height: auto; /* Maintain aspect ratio */
}

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

header {
    background-color: #007BFF;
    color: white;
    text-align: center;
    padding: 20px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

#hero {
    background-color: #f4f4f4;
    text-align: center;
    padding: 50px 20px;
}

section {
    padding: 20px;
}

h2 {
    color: #007BFF;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f1f1f1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    gap: 20px; /* Space between boxes */
}

.service-box {
    background-color: rgba(255, 255, 255, 0.8); /* Background color */
    border: 1px solid #ccc; /* Border */
    padding: 20px; /* Padding inside the box */
    text-align: center; /* Center text */
}

.service-full {
    grid-column: span 3; /* Make this box span all three columns */
}

.service-box ul {
    list-style-type: disc; /* Use bullet points */
    padding-left: 20px; /* Indent the list */
}

.service-box li {
    margin-bottom: 10px; /* Space between list items */
}

/*
.qr-code {
    margin-top: 20px;
    text-align: right; 
}

.qr-code img {
    width: 100px; 
    height: auto; 
}

.qr-code {
    position: absolute;
    top: 50%; 
    right: 20px;
    transform: translateY(-50%);
}

.qr-code img {
    width: 100px; 
    height: auto; 
}


.qr-code-container {
    position: relative; 
    display: inline-block; 
}

.qr-code {
    width: 100px; 
    height: auto; 
}

.qr-code-text {
    position: absolute; 
    top: 10px; 
    left: 50%; 
    transform: translateX(-50%); 
    background-color: rgba(255, 255, 255, 0.7); 
    padding: 5px; 
    border-radius: 5px; 
    font-weight: bold; 
}
*/
/*
.services-container {
    display: flex; 
    align-items: flex-start; 
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1; 
}

.service-box {
    background-color: rgba(255,255,255,0.8);
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    flex: 1;
    min-width: calc(33.33% - (20px));
    box-sizing: border-box;
}

.qr-code-container {
    position: relative; 
    display: flex; 
    flex-direction: column; 
    align-items: center;
    margin-left: 20px; 
}

.qr-code {
    width: 100px; 
    height: auto; 
}

.qr-code-text {
    background-color: rgba(255, 255, 255, 0.7); 
    padding: 5px; 
    border-radius: 5px; 
    font-weight: bold; 
}
*/

.services-container {
    display: flex; /* Use Flexbox for layout */
    align-items: flex-start; /* Align items at the start */
    position: relative; /* Make this container relative for absolute positioning */
}

.services-grid {
    display: flex; /* Use Flexbox */
    flex-wrap: wrap; /* Allow wrapping */
    gap: 20px; /* Space between boxes */
    flex: 1; /* Allow grid to take available space */
}

.service-box {
    background-color: rgba(255,255,255,0.8);
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    flex: 0 0 calc(33.33% - (20px)); /* Fixed width for three columns with gap */
    box-sizing: border-box;
}

.qr-code-container {
    position: absolute; /* Position it absolutely within the parent */
    top: 50%; /* Center it vertically */
    right: 20px; /* Position it from the right edge */
    transform: translateY(-50%); /* Adjust vertical alignment */
}

.qr-code {
    width: 100px; /* Set width for the QR code */
    height: auto; /* Maintain aspect ratio */
}

.qr-code-text {
   background-color: rgba(252, 1, 1, 0.948); /* Semi-transparent background */
   padding:25px; /* Padding around text */
   border-radius:25px; /* Rounded corners */
   font-weight:bold; /* Bold text */
   color: white;
}