/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Body Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Container */
.container {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

/* Headings */
h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #2c3e50; /* Deep Blue */
}

h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #34495e; /* Darker Blue */
}

h3 {
    font-size: 1.25em;
    margin: 20px 0 10px;
    color: #2980b9; /* Bright Blue */
}

/* Paragraphs */
p {
    margin-bottom: 15px;
}

/* Lists */
ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Forms */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    border-color: #2980b9;
    outline: none;
}

/* Button Styles */
button {
    background-color: #2980b9;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #1a5276;
}

/* Message Styles */
.error-message {
    color: #e74c3c;
    background-color: #f8d7da;
    padding: 10px;
    border: 1px solid #e74c3c;
    border-radius: 5px;
    margin-bottom: 20px;
}

.success-message {
    color: #155724;
    background-color: #d4edda;
    padding: 10px;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9em;
    color: #666;
}

/* Trust Bar */
.trust-bar {
    margin-top: 20px;
    text-align: center;
    padding: 20px 0;
    background-color: #f9f9f9;
    border: 1px solid navy;
}

.trust-bar p {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.trust-bar img {
    height: 50px;
    margin: 10px;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.trust-bar img:hover {
    transform: scale(1.05);
}
