body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0A2540;
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #032541;
}

.navbar-logo {
    height: 50px;
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    display: inline;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

.navbar-telegram img {
    height: 30px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.header, .footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo {
    height: 50px;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.text-content {
    max-width: 600px;
}

h1 {
    font-size: 2.5em;
    margin: 0;
}

p {
    font-size: 1.5em;
    margin: 10px 0;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #FF5A5F;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
}

.button:hover {
    background-color: #FF787F;
}

.image-content .main-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.payment-process {
    background-color: #0A2540;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
}

.payment-process h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.step img {
    height: 50px;
    margin-right: 20px;
}

.step p {
    font-size: 1.2em;
    margin: 0;
}

.popular-services {
    background-color: #0A2540;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
}

.popular-services h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.service {
    padding: 10px 20px;
    background-color: #282C34;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.service:hover {
    background-color: #3C4048;
}

.service-details {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-details img {
    height: 100px;
}

.service-text {
    text-align: left;
}

.service-text h3 {
    font-size: 1.8em;
    margin: 0 0 10px;
}

.service-text p {
    font-size: 1.2em;
    margin: 0 0 10px;
}
