/* Reset some default browser styles */
body, h2, form {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e0e0e0; /* Light gray background */
}

.container {
    text-align: center;
    max-width: 500px;
    width: 90%; /* Adjust width for smaller screens */
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9; /* Slightly darker gray */
}

.logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%); /* Ensures logo is grayscale */
}

.capabilities-section {
    margin-top: 20px;
}

.capabilities-section h2 {
    margin-bottom: 10px; /* Reduce padding between title and list */
    font-size: 24px;
    color: #333; /* Dark gray */
    font-family: 'Rubik', sans-serif; /* Apply Rubik font */
}

.capabilities-list {
    list-style-type: none; /* Remove bullets */
    padding-left: 0; /* Remove padding */
    max-width: 100%; /* Center the list */
    color: #555; /* Medium gray text for the list */
    font-family: 'Rubik', sans-serif; /* Apply Rubik font */
    font-size: 16px;
    display: inline-block; /* Make the list inline to center it */
    text-align: left;
}

.capabilities-list li {
    margin-bottom: 10px; /* Space between list items */
    text-align: center;
}

.follow-up-section {
    margin-top: 20px; /* Space between sections */
}

.follow-up-section h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333; /* Dark gray */
    font-family: 'Rubik', sans-serif; /* Apply Rubik font */
}

.follow-up-section input[type="text"],
.follow-up-section input[type="email"] {
    width: 60%; /* Shrink the width of the input fields */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff; /* White input fields */
    text-align: center; /* Center the placeholder text */
    font-size: 16px;
    font-family: 'Rubik', sans-serif; /* Apply Rubik font */
}

.follow-up-section input[type="text"]::placeholder,
.follow-up-section input[type="email"]::placeholder {
    color: #999; /* Placeholder color */
    font-weight: normal;
}

.follow-up-section button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #444; /* Dark gray button */
    color: white;
    font-size: 16px;
    cursor: pointer;
    width: 60%; /* Button width matches input fields */
    font-family: 'Rubik', sans-serif; /* Apply Rubik font */
    text-align: center;
}

.follow-up-section button:hover {
    background-color: #333; /* Darker gray on hover */
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .container {
        padding: 15px;
        width: 95%; /* Slightly narrower on mobile */
    }

    .capabilities-section h2,
    .follow-up-section h2 {
        font-size: 20px; /* Smaller font size for headings */
    }

    .follow-up-section input[type="text"],
    .follow-up-section input[type="email"],
    .follow-up-section button {
        width: 70%; /* Adjust width for smaller screens */
    }
}
