/* Basic Styles */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #2c3e50;
    color: #ffffff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #77aaff 3px solid;
}

header a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    margin: 0;
    list-style: none;
    float: right;
    margin-top: 10px;
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
}

header #branding {
    float: left;
}

header #branding h1 {
    margin: 0;
}

/* Showcase */
#showcase {
    min-height: 400px;
    background: url('../images/showcase.jpg') no-repeat 0 -400px;
    text-align: center;
    color: #ffffff;
}

#showcase h1 {
    margin-top: 100px;
    font-size: 55px;
    margin-bottom: 10px;
}

#showcase p {
    font-size: 20px;
}

/* Main Content */
main {
    padding: 20px 0;
}

section {
    margin-bottom: 20px;
}

/* About Section */
#about h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Services Section */
.service {
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

/* Blog Section */
#blog-posts h2 {
    text-align: center;
    margin-bottom: 20px;
}

#post-list {
    list-style: none;
    padding: 0;
}

#post-list li {
    margin-bottom: 10px;
}

#post-list a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

/* Article */
article {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.meta {
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Back to Top Button */
#back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #2c3e50;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
}

#back-to-top-btn:hover {
    background-color: #555;
}

/* Contact Form */
#contact h2 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    margin-top: 20px;
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

form input[type="submit"] {
    background: #2c3e50;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background: #555;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    background: #2c3e50;
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
}

/* Search Input */
#search-input {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
}
