@media screen and (max-width: 768px) {
    .your-button-class {
        width: 150px;
        font-size: 12px;
    }
}

.your-button-class {
    white-space: normal; /* Allow line breaks at spaces */
    word-break: normal;  /* Prevent breaking within words */
    width: auto;         /* Let the button width adjust to the content */
    display: inline-block; /* Ensure button behaves like a block element */
}

@media screen and (max-width: 768px) {
    .your-button-class {
        width: auto; /* Adjust width for mobile devices if necessary */
    }
}

/* Adjust the margin for form labels and inputs */
.wpcf7-form label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.wpcf7-form input, 
.wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.wpcf7-submit {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.wpcf7-submit:hover {
  background-color: #333;
}

/* General header styling */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
}

.site-header .site-logo img {
    max-height: 50px; /* Adjust as needed */
}

.site-header .main-navigation {
    flex-grow: 1;
    text-align: center;
}

.site-header .main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.site-header .main-navigation ul li a {
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.site-header .main-navigation ul li a:hover {
    color: #007bff; /* Adjust hover color as needed */
}

.site-header .contact-button {
    padding: 10px 20px;
    border: 2px solid #007bff;
    border-radius: 20px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.site-header .contact-button:hover {
    background-color: #007bff;
    color: #fff;
}
