/* Resetting some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
}

/* Header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header img {
    width: 100px; /* Smaller logo size */
}

header div {
    font-size: 16px;
}

header button {
    color: black;
    border: none;
    padding: 5px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

header button:hover {
    background-color: #0056b3;
	color: white;
}

/* Navigation styling */
nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    color: black;
    padding: 5px 15px;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
}

nav a:hover {
    background-color: #007bff;
	color: white;
}

/* Main content container */
.container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sections */
section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Client buttons */
.button {
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

#clients .button {
    white-space: nowrap; /* Prevents text wrapping inside the button */
    display: block; /* Ensures the button is shown on a new line */
    margin-top: 10px; /* Adds space between the paragraph and button */
    width: fit-content; /* Makes the button's width adjust to its content */
}

/* Footer styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

footer p {
    font-size: 14px;
}

/* Responsiveness */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header div {
        margin-top: 10px;
    }

    nav {
        flex-direction: column;
    }

    nav a {
        padding: 10px 20px;
    }

    .container {
        padding: 20px;
    }

    section h2 {
        font-size: 28px;
    }

    section p {
        font-size: 16px;
    }
}
