/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header Section */
header {
    background: #0073e6;
    color: white;
    padding: 100px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
}

header p {
    margin: 20px 0;
}

header .btn {
    padding: 10px 20px;
    background: white;
    color: #0073e6;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Section Styling */
section {
    padding: 60px 0;
    text-align: center;
}

section h2 {
    margin-bottom: 30px;
}

/* Services Section */
#services .service-box {
    background: #f4f4f4;
    margin: 15px 0;
    padding: 20px;
    border-radius: 5px;
}

/* Portfolio Section */
#portfolio .portfolio-item {
    background: #f4f4f4;
    padding: 40px;
    margin: 15px 0;
    border-radius: 5px;
}

/* Contact Section */
#contact p {
    margin: 10px 0;
}

/* Responsive Styling */
@media (min-width: 768px) {
    #services {
        display: flex;
        justify-content: space-between;
    }
    #services .service-box {
        width: 30%;
    }
    #portfolio {
        display: flex;
        justify-content: space-between;
    }
    #portfolio .portfolio-item {
        width: 30%;
    }
}
