body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    font-family: Arial, sans-serif;
    background: url("https://t4.ftcdn.net/jpg/01/71/91/25/360_F_171912594_KeTUH3r4EwDs5Ciez52FJoJg6Ieav3E6.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.container h1 {
    font-weight: 36px;
    font-style: normal;
    margin-bottom: 20px;
}

.container p {
    font-size: 18px;
    font-style: normal;
    margin-bottom: 30px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    margin-right: 10px;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.content {
    max-width: 50%;
}

.content h2 {
    font-weight: 36px;
    font-style: normal;
    margin-bottom: 20px;
}

.content p {
    font-size: 18px;
    font-style: normal;
    margin-bottom: 30px;
}

.image img {
    max-width: 100%;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button {
    background-color: #1877f2;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #165eab;
}

.about {
    margin-top: 35px;
    margin-bottom: 20px;
}

.about h3 {
    font-family: "Pacifico", cursive;
    font-weight: 36px;
    font-style: normal;
    margin-bottom: 20px;
}

.about p {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-style: normal;
    margin-bottom: 30px;
}

.testimonials {
    max-width: 800px;
}

.testimonials h2 {
    font-family: "Pacifico", cursive;
    font-weight: 36px;
    font-style: normal;
    margin-bottom: 20px;
}

.testimonial {
    padding: 20px;
    margin: 20px 0;
}

.testimonial p {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-style: normal;
    margin-bottom: 30px;
}

.testimonial span {
    font-size: 16px;
    color: #ff6600;
}

.context-menu {
    display: none;
    position: absolute;
    background-color: #181818;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
}

.context-menu li {
    color: white;
}

.context-menu-item {
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.context-menu-item:hover {
    background-color: #e0e0e0;
}

.context-menu-item a {
    text-decoration: none;
    color: white;
    display: block;
}

.context-menu-item:hover a {
    color: #ff6600;
}

.gallery {
    max-width: 1200px;
    text-align: center;
}

.gallery h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 40px);
    box-sizing: border-box;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 1 1 100%;
    }
}
