/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1818; /* Dark background from the image */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 800px;
    padding: 40px 0;
}

/* Logos */
.logo-large {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 60px;
}

.logo-medium {
    width: 100%;
    max-width: 350px;
    display: block;
    margin: 0 auto;
}

/* Layout Sections */
.service-block {
    margin-bottom: 80px;
}

.divider {
    border: 0;
    height: 1px;
    background: #ffffff;
    width: 60%;
    margin: 15px auto;
    opacity: 0.8;
}

/* Typography */
.description p {
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .description p {
        font-size: 0.7rem;
    }
    .divider {
        width: 80%;
    }
}
.phone a {
	color: white;
	text-decoration: none;
	font-weight: bold;
	}
	
.logo-logo {
    width: 20%;
    max-width: 150px;
    margin-bottom: 20px;
}