/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #0073e6;
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .logo {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
}

header nav {
    display: flex;
    gap: 1rem;
}

header nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

header nav a:hover {
    color: #ffd700; /* Highlight color on hover */
}

/* Responsive Header */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    header .logo {
        margin-bottom: 0.5rem;
    }

    header nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

.hero {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #e6f2ff;
}

.cta-button {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #0073e6;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.tool-section {
    max-width: 600px;
    margin: 2rem auto;
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

textarea {
    width: 100%;
    height: 100px;
    margin-top: 0.5rem;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

footer {
    background-color: #0073e6;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

 
/* Contact Form Styles */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    padding: 0.75rem;
    background-color: #0073e6;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #005bb5;
}

.captcha-section {
    display: flex;
    align-items: center;
    gap: 10px;
}






/* Centering the content */
.container {
    max-width: 800px;  /* Maximum width for readability */
    margin: 0 auto;  /* Center horizontally */
    padding: 20px;  /* Add padding to prevent content from touching edges */
    box-sizing: border-box; /* Ensures padding is included in width */
}

/* Make sure the text is responsive */
h2, h3, p, ul, ol {
    text-align: center;
}

/* Ensure the list and ordered list items are aligned well */
ul, ol {
    list-style-position: inside;
    padding-left: 0;
}

/* Media query for mobile responsiveness */
@media screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p, li {
        font-size: 1rem;
    }
}

