body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000; /* White background for the page */
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #000; /* Black background */
    color: #FFD700; /* Yellow text */
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
header h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFD700; /* Yellow heading */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
header p {
    font-size: 18px;
    margin: 10px 0 0;
}
header .contact-info {
    font-size: 16px;
    margin-top: 10px;
    color: #fff; /* Yellow contact info */
}
header .contact-info a {
    color: #fff;
    text-decoration: none;
}
.tradesman-img {
    width: 150px; /* Adjust the width of the image */
    height: auto;
    margin-left: 20px;
}
.page-wrapper {
    width: 90%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border: 2px solid #ccc;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Instagram Thumbnails */
.instagram-gallery {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.instagram-gallery img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #ddd;
}

.intro {
    padding: 20px;
    margin-bottom: 30px;
    background-color: #f9f9f9;
    border: 3px solid #e3e3e3;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
/*.intro h2 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}*/
.intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Services Section */
.services, .areas, .types {
    margin-bottom: 30px;
}
/*.services h2, .areas h2, .types h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}*/
.service-list, .area-list, .type-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.service-item, .area-item, .type-item {
    background-color: #f1f1f1;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.service-item h3, .area-item h3, .type-item h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}
ul {
    padding-left: 20px;
    list-style-type: none;
}
li {
    margin-bottom: 10px;
    font-size: 16px;
}
li:before {
    content: "●"; /* Adding a larger thick dot before each item */
    color: #FFD700;
    padding-right: 8px;
}

/* Contact Button */
.contact-button {
    background-color: #000; /* Black background */
    color: #FFD700; /* Yellow text */
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    margin: 20px auto;
    cursor: pointer;
}
.contact-button:hover {
    background-color: #444;
}
a {
    color: #FFD700;
    text-decoration: none;
}
.gallery-section {
    margin-bottom: 40px;
}
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.gallery-grid img {
    width: 100%;
    height: auto;
    max-width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}
.gallery-grid img:hover {
    transform: scale(1.05);
}
.gallery-item {
    flex: 1 1 calc(33.333% - 30px);
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 calc(50% - 15px);
    }
}
@media (max-width: 480px) {
    .gallery-item {
        flex: 1 1 100%;
    }
}

.h2_heading {
    text-align: center;              /* Center the heading */
    color: #FFD700;                   /* Yellow text */
    font-weight: bold;               /* Bold text */
    text-transform: uppercase;       /* Uppercase text */
    background-color: black;         /* Black background */
    border: 2px solid #d3d3d3;       /* Faint border (light grey) */
    padding: 10px;                   /* Padding to add space inside the heading */
    margin: 20px 0;                  /* Margin for spacing outside the heading */
    border-radius: 5px;              /* Slightly rounded corners */
}

.navbar a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

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