/* Reset some default browser styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Use a nice font, you can change this if you like */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

/* Container class to give a max-width and horizontal centering */
.container {
    max-width: 1100px;
    padding: 0 15px;
    margin: auto;
    overflow: hidden;
}

/* Logo styling */
.logo {
    float: left;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* Navigation */
nav {
    float: right;
}

nav ul {
    list-style: none;
    padding: 10px 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: #f4f4f4;
    padding: 50px 0;
    text-align: center;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

/* About Section */
.about, .services, .portfolio, .contact {
    padding: 50px 0;
    text-align: center;
}

.about h3, .services h3, .portfolio h3, .contact h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

/* Services Section */
.services ul {
    list-style: none;
}

.services ul li {
    font-size: 18px;
    padding: 8px;
}

/* Portfolio Section */
/* You might want to add some more styling here for project tiles, images, etc. */
.project {
    margin: 20px auto;
    width: 400px;
    text-align: left;
}

.project h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Contact Section */
/* You might want to add some styling here for the contact form */

/* Footer Section */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.logos {
    display: flex; justify-content: space-between; align-items: center; height: 60px; max-width: 1440px; margin: 40px auto;
}

@media (max-width: 600px) {
    .logos {
        flex-direction: column;
        height: auto;
    }
    .logos img {
        margin: 10px 0;
        width: 70%;
        height: 50px;
    }
}
