'* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-left: 30px;
}


.heading {
    display: block;
    margin: 50px 0;
}

h1 {
    text-align: center;
    cursor: pointer;
}

p {
    margin-left: 20px;
}


button {
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
    background-color: rgb(3, 85, 199);
    border: none;
    color: white;
    cursor: pointer;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.top-buttons{
    display: flex;
    gap: 10px;
}



.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    padding: 15px 50px;
}

.logo {
    color: #ffffff;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 30px;

}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s;
}

.nav ul li a:hover {
    color: #e63946;
}


.gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #ddd;
    margin-top: 10px;
}

.phones {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.phone img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin-top: 10px;
    border-radius: 10px;
    border: 3px solid #ddd;
}


.contact {
    max-width: 500px;
    margin: 15px auto 20px;
    background: rgb(22, 0, 215);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255, 3, 3, 0.1);
    color: #00acf6;
}


form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #000000;
    border-radius: 6px;
    font-size: 14px;
}

form button {
    width: 100%;
    padding: 12px;
    background-color: #ff0000;
    color: rgb(255, 106, 0);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

form button:hover {
    background-color: #1a252f;
    color: white;
}
