/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #007a87;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

/* Main Section */
main {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 30px;
}

.iso27001-intro p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.iso27001-details h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #007a87;
}

.iso27001-details ul {
    margin: 20px 0;
    padding: 0;
    list-style-type: disc;
    padding-left: 20px;
}

.iso27001-details li {
    margin-bottom: 10px;
}

/* Form Section */
.inquiry-form h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #007a87;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}

form textarea {
    resize: none;
    height: 100px;
}

button.submit-button {
    padding: 10px 20px;
    background-color: #007a87;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

button.submit-button:hover {
    background-color: #005f66;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    background-color: #333;
    color: #fff;
}

/* Media Queries */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    main {
        padding: 15px;
    }

    form input,
    form textarea {
        font-size: 0.9rem;
    }

    button.submit-button {
        font-size: 0.9rem;
    }
}
