
/* Reset default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
}

/* Hero Section */
#hero {
    background-image: url('backgrounds/tech-cityscape.jpg');
    background-size: cover;
    background-position: center;
    color: black;
    padding: 150px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

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

.hero-content .button {
    background-color: #005bb5;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Services Section */
#services {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

#services h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-item {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 200px;
    text-align: center;
}

.service-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

#items-for-sale {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#items-for-sale h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.items-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.item {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.item img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.item h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}


/* Why Choose Us Section */
#why-choose-us {
    padding: 50px 20px;
    text-align: center;
    background-color: #e8eaf6;
}

#why-choose-us ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Testimonials Section */
#testimonials {
    padding: 50px 20px;
    background-color: #e0e0e0;
    text-align: center;
}

#testimonials blockquote {
    font-size: 1.1em;
    margin: 10px auto;
    max-width: 500px;
    font-style: italic;
}

/* Contact Section */
#contact {
    padding: 50px 20px;
    text-align: center;
}

#contact form {
    max-width: 400px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
}

#contact input, #contact textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact button {
    background-color: #005bb5;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9em;
}
