/* Overall styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4; /* Light gray background for a subtle contrast */
}

/* Header Styling */
header {
    background-color: #333;
    color: white;
    padding: 15px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 1.8em;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffcc00; /* Highlight effect */
}

/* Main Section Layout */
section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px;
}

/* Left Side: Process Container */
.process-container {
    flex: 2;
    max-width: 800px;
    margin-left: 90px;
}

.process-text {
    padding-right: 10px;
}

.process-text h2 {
    color: #333;
    font-size: 1.8em;
}

.process-text h3 {
    color: #555;
    font-size: 1.4em;
}

.process-text p,
.process-text ul {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

.process-text ul {
    padding-left: 20px;
}

.process-text ul li {
    margin-bottom: 8px;
}

/* Left Side: Image */
.process-image {
    background-image: url('your-image.jpg'); /* Replace with actual image */
    background-size: cover;
    background-position: center;
    height: 500px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Right Side: Inquiry Box */
.inquiry-box {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 50px;
    background-color: #fff;
    max-width: 700px;
    width: 50%;
    margin: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
}

form label {
    font-weight: bold;
    margin-top: 12px;
    color: #333;
}

form input,
form select,
form textarea {
    padding: 12px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
form button {
    background-color: #333;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

form button:hover {
    background-color: #555;
    transform: translateY(-2px);
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #333;
    color: white;
    margin-top: 40px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 1024px) {
    section {
        flex-direction: column;
        align-items: center;
    }

    .process-container {
        margin-left: 0;
        max-width: 97%;
        text-align: center;
    }

    .process-image {
        width: 100%;
        height: 250px;
    }

    .inquiry-box {
        width: 90%;
        padding: 40px;
    }
}

@media screen and (max-width: 768px) {
    header h1 {
        font-size: 1.6em;
    }

    nav ul li {
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }

    section {
        padding: 20px;
    }

    .inquiry-box {
        width: 95%;
        padding: 30px;
    }

    form button {
        font-size: 1em;
    }
}
