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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f0f0;
}

/* Header */
header {
    background-color: #58595B;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.logo span {
    color: #ff6d00;
}

.hamburger-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1;
}

.hamburger-menu span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin-bottom: 5px;
    transition: transform 0.3s ease-in-out;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-items {
    margin-top: 30px;
}

.nav-items ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-items ul li {
    margin: 0 10px;
}

.nav-items ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

.nav-items ul li a:hover {
    color: #ff6d00;
}

/* Main Content */
main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.post-date {
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
}

footer {
    background-color: #58595B;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

footer p {
    color: #fff;
}

@media screen and (max-width: 600px) {
    .hamburger-menu {
        display: block;
    }

    .nav-items {
        display: none;
    }
/* Add your existing CSS here */

.contact-section {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #ff6d00;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #e65c00;
}
}
