@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Lora:wght@400;600&family=Inter:wght@400;500&display=swap');


.home_service_tile
{
    /* create space around service tiles */
    padding: 7px;
    position: relative;
}

.home_service_tile_buttons
{
    position: absolute; 
    margin-bottom: 7px; 
    bottom: 7px; 
    margin-left: 25px
}
.home_service_tile_buttons2
{
    position: absolute; 
    margin-bottom: 7px; 
    bottom: 7px; 
    margin-left: 15px
}

/* General Reset */
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333; /* Dark gray for readability */
    background-color: #fff; /* Clean white background */
    margin: 0;
    padding: 0;
}

/* Title Styling (Main Titles, Logo, or Hero Text) */
.title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900; /* Extra bold */
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 20px;
    color: #222; /* Strong dark gray for contrast */
}

/* H1 Subtitles */
h1 {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 32px;
    color: #444; /* Softer black */
    margin-bottom: 15px;
}

/* H2 Subheadings */
h2 {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 30px;
    color: #555; /* Medium dark gray */
    margin-top: 30px;
    margin-bottom: 15px;
    /*border-bottom: 2px solid #ddd; /* Adds a subtle underline effect */
    padding-bottom: 5px;
}

/* H3 Subheadings */
h3 {
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: 26px;
    color: #666; /* Lighter gray for differentiation */
    margin-top: 25px;
    margin-bottom: 10px;
}

/* H5 Subheadings */
h5 {
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: 16px;
    color: #666; /* Lighter gray for differentiation */
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Body Text (Article Paragraphs) */
p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

/* H2 & H3 (Subheadings) */
h2 {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 28px;
    color: #555;
    margin-top: 30px;
    margin-bottom: 10px;
}

h3 {
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: 24px;
    color: #666;
}

/* Links */
a {
    color: #0073e6; /* Professional blue */
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* Button Styling */
.button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    background-color: #0073e6;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.button:hover {
    background-color: #005bb5;
}
