/* Basic styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header, footer {
    background-color: #d8a10971;
    color: #447908;
    padding: 20px;
}

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

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

a {
    color: #fff;
    text-decoration: none;
}

/* Tabbed content styles */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: background-color 0.3s;
}

.tab button:hover {
    background-color: #ddd;
}

.tab button.active {
    background-color: #ccc;
}

.tabcontent {
    display: none;
    padding: 20px;
}

.tabcontent h3 {
    margin-top: 0;
}

/* Show the tab content */
.tabcontent.show {
    display: block;
}


/* Two-column layout */
.services {
  /*   display:flex ;
    flex-direction:row; */
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns of equal width */
    gap: 20px; /* Gap between columns */
}

/* .left-column {
    flex: 1;
}

.right-column {
    flex: 1;
    padding-left: 20px;
}
 */

 .left-column, .right-column {
    padding: 10px;
    border: 1px solid #ccc; /* Optional: Adding border for visual separation */
}

.right-column {
    border: none; /* Optional: Remove border from right column */
}


.right-column ul {
    padding: 0; 
}

.right-column li {
    list-style-type: disc; 
}


/* Center image */
.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.image-container {
    text-align: center;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
}


.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h2 {
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info p strong {
    font-weight: bold;
}