body {
    background-color: #000; /* Modern black background */
    color: #fff; /* Modern white text */
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Apple style font */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    text-align: center; /* Center align all text */
}
.logo {
    margin-top: 30px;
    width: 50%;
    max-width: 200px; /* Ensure it does not stretch too wide */
}
.separator {
    width: 80%;
    max-width: 400px;
    border-bottom: 1px solid #444; /* Subtle separator line */
    margin: 20px 0;
}
.intro-text {
    width: 80%;
    max-width: 500px;
    margin: 20px auto; /* Add some margin for spacing */
    font-size: 2.2rem; /* Doubled the font size for better readability */
    line-height: 1.5;
    color: #ccc; /* Slightly lighter text for modern look */
    font-family: 'Dancing Script', cursive; /* Handwriting Google font */
}
.form-container {
    width: 80%;
    max-width: 500px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    text-align: left;
}
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
label {
    font-size: 1rem;
    margin-bottom: 5px;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea {
    width: 100%;
    padding: 15px;
    margin-top: 5px;
    border-radius: 10px;
    border: none;
    background-color: #333;
    color: white;
    font-size: 1rem;
    box-sizing: border-box;
    transition: background-color 0.3s;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="date"]:focus, textarea:focus {
    background-color: #444;
    outline: none; /* Remove the default focus outline */
}
textarea {
    height: 100px;
}
.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.3);
}
.checkbox-container label {
    margin-top: 0;
}
.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #d49b35;
    color: #000;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.submit-btn:hover {
    background-color: #c0892d;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.submit-btn:active {
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(4px);
}
.confirmation-message {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    background-color: #1a1a1a; /* Match form background */
    color: #ccc; /* Match intro text color */
    border: 1px solid #d49b35; /* Border matching floating button color */
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    max-width: 90%;
    max-height: 80%;
    text-align: center;
    flex-direction: column; /* Ensure content follows a column layout */
}
.confirmation-message i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #d49b35;
}
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #d49b35;
    color: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.floating-button:hover {
    background-color: #c0892d;
}
.floating-button i {
    font-size: 1.5rem;
}
footer {
    height: 100px; /* Extra space at the bottom */
}
