/* Body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

header .logo {
    width: 250px;  /* Increase this value to make the logo larger */
    margin-bottom: 10px;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Page sections */
.intro, .contact, .privacy-policy {
    text-align: center;
    padding: 50px;
    background-color: #ecf0f1;
}

.intro h2, .contact h2, .privacy-policy h2 {
    margin-bottom: 20px;
}

/* Call to action button */
.cta-btn {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.cta-btn:hover {
    background-color: #2980b9;
}

/* Footer styling */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Contact form styling */
.contact form {
    width: 100%;
    max-width: 600px; /* Center the form */
    margin: 0 auto; /* Center the form horizontally */
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left; /* Align text to the left inside the form */
}

/* Left-align the labels and inputs */
.contact label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    text-align: left; /* Align labels to the left */
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: left; /* Align text inside input fields to the left */
}

/* Radio buttons container */
.radio-container {
    display: flex;
    flex-direction: column;  /* Arrange items vertically */
    margin-bottom: 20px;
}

/* Align radio buttons and labels on the same line */
.radio-container label {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left;  /* Ensure text is left-aligned */
}

/* Space between radio button and label text */
.radio-container input[type="radio"] {
    margin-left: 10px;  /* Adds space between radio button and label */
}

/* Phone number input container */
.phone-input-container {
    display: none; /* Initially hidden */
    margin-top: 15px;
}

/* Styling the buttons and text */
button.cta-btn {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button.cta-btn:hover {
    background-color: #2980b9;
}

/* Message example box */
.message-example pre {
    background-color: #f4f4f4;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    white-space: pre-wrap;  /* This will wrap the text instead of it running off the page */
    word-wrap: break-word;  /* Ensures long words break and don’t overflow */
    font-family: monospace;
    max-width: 100%; /* Ensures it stays within the page boundaries */
    overflow-wrap: break-word;
    margin: 0 auto;
    text-align: left;
}
