* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f7f7f7;
}

header {
    background: #ffffff;
    text-align: center;
    padding: 30px 20px;
    border-bottom: 1px solid #ddd;
}

header img {
    max-width: 220px;
    height: auto;
}

.hero {
    background: #0055fe;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    margin: 0 0 15px;
    font-size: 2.2rem;
}

.hero p {
    max-width: 700px;
    margin: auto;
    font-size: 1.15rem;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

.card {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.card-centered {
    text-align:center;
}

h2 {
    color: #0055fe;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service {
    background: #f1f8fc;
    border-radius: 6px;
    border:1px solid #0055fe;
}

.service h3{
    margin: 0;
    padding: 0.5em 1em 0.5em 2.5em;
    background: #0055fe;
    color: #fff;
    position:relative;
}

.service-body {
    padding: 1em;
}

.icn:before {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 30px;
    left: 0.5em;
    overflow: hidden;
    position: absolute;
    top: 0.5em;
    width: 30px;
}

.icn-repair:before {
    background-image: url('/images/icons/repair-30.svg');
}

.icn-install:before {
    background-image: url('/images/icons/install-30.svg');
}

.icn-local:before {
    background-image: url('/images/icons/local-30.svg');
}

.icn-maintain:before {
    background-image: url('/images/icons/maintain-30.svg');
}

.button.btn-icn {
    position:relative;
    padding-left: 3em;
}

.btn-icn:before {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 1.5em;
    content: "";
    display: block;
    height: 30px;
    left: 0.8em;
    overflow: hidden;
    position: absolute;
    top: 0.6em;
    width: 30px;
}

.icn-call:before {
    background-image: url('/images/icons/call-30.svg');
}
.icn-email:before {
    background-image: url('/images/icons/email-30.svg');
}

.button {
    display: inline-block;
    background: #0055fe;
    color: white;
    padding: 12px 25px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 2em;
    font-weight: bold;
    box-shadow: #00000059 0px 3px 4px;
}
.button:hover{
    background: #0044cc;
    box-shadow: inset #0000002b 0px 3px 4px;
}

.hero .button {
    background: #ff7e00;
}
.hero .button:hover{
    background: #ff7e00;
    box-shadow: inset #0000002b 0px 3px 4px;
}


footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 25px 20px;
    font-size: 0.9rem;
}

a {
    color: inherit;
}