* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    direction: rtl;
    color: #f4f4f4;
    line-height: initial;
    background-image: url("../img/bo_3.png");
    background-size: cover;
    background-position: center;
}

header {
    background: linear-gradient(to bottom, #1f1f1fa6, transparent);
    color: #c9ced2;
    padding: 40px 20px;
    font-size: 24px;
}

.header_center {
    display: flex;
    max-width: 992px;
    width: calc(100% - 40px);
    margin: auto;
    flex-direction: column;
    align-items: center;
}

.header_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.header_content p{
    text-shadow: 0 0 10px black;
    color: white;
}
h1 {
    font-size: 1.4em;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 0 10px black;
}

h2 {
    font-size: 1.2em;
    max-width: 992px;
    width: 100%;
    margin: 0 auto 40px;
}

h3 {
    color: #c9ced2;
}

.logo {
    width: 120px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px black);
}

.logo img {
    width: 100%;
}

.link {
    color: white;
    text-decoration: none;
    transition: .3s;
}

.link:hover {
    text-decoration: underline;
}

.services {
    background: #1e1e1ec2;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    max-width: 992px;
    width: calc(100% - 40px);
    margin: 0 auto 20px;}

.services_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 16px;
}

.service-item {
    margin: 15px 0;
    font-size: 20px;
    font-weight: bold;
    color: white;
    width: calc(50% - 8px);
    padding: 8px;
    border: 1px solid #c9ced2;
}

.contact {
    margin-top: 30px;
}

.services a {
    display: inline-block;
    background: #25D366;
    color: black;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    transition: background 0.3s;
    margin: 16px;
}

.contact a:hover {
    background: #1EBE5D;
}

.info {
    margin-top: 30px;
    font-size: 18px;
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

footer {
    background: #1f1f1f;
    color: #c9ced2;
    padding: 20px;
}

.powered {
    font-size: .8em;
}

@media (min-width: 768px) {
    h1, h2 {
        font-size: 2em;
    }
    .container {
        padding: 40px 20px;
    }
    .service-item {
        width: calc(50% - 16px);
        padding: 16px;
    }
}
