body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    font-size: 15px;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header Styles */
#header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

#header>div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.topicPass img {
    max-height: 60px;
    width: auto;
}

/* Navigation Styles */
nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #18a169;
}

/* Main Content Styles */
.main-content {
    max-width: 1200px;
    margin: 10px auto;
    padding: 2rem;
    background: #fff;
    min-height: calc(100vh - 200px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Banner Image */
.main-content img[src*="banner"] {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    margin: 0 auto 2rem;
    text-align: center;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 2.2em;
    margin-bottom: 1rem;
    margin-top: 0.2rem;
    color: #18a169;
}

.hero p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1em;
}

/* Services Section */
.services {
    margin-top: 3rem;
    padding: 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-size: 1.75em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3em;
}

.service-card ul {
    padding-left: 0;
    margin-bottom: 1.5rem;
    color: #555;
    list-style-position: inside;
    text-align: left;
    display: block;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.service-card li {
    margin-bottom: 0.75rem;
    text-align: left;
}

.service-card p {
    color: #555;
    margin-bottom: 1.5rem;
}

/* Highlight Box */
.highlight-box {
    background-color: #fffbe6;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.highlight-box p {
    margin-top: 0;
}

.highlight-box ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.highlight-box li {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #666;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    background-color: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1em;
}

.validation-message {
    display: none;
    color: #ff4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    position: absolute;
    background: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.form-group input:required:invalid:not(:placeholder-shown) + .validation-message,
.form-group textarea:required:invalid:not(:placeholder-shown) + .validation-message {
    display: block;
}

.submit-btn {
    background-color: #18a169;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
}

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

/* CTA Container */
.cta-container {
    text-align: center;
    margin: 4rem auto;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    box-sizing: border-box;
}

.cta-container p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Buttons */
.learn-more {
    display: inline-block;
    background-color: #18a169;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.learn-more:hover {
    background-color: #14724b;
}

/* Footer */
#footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 1rem;
    margin-top: 0;
}

#footer>div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

#footer nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

#footer nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    transition: opacity 0.3s ease;
}

#footer nav a:hover {
    opacity: 0.8;
}

.cop {
    text-align: center;
    margin: 0;
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    border: none;
    background: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

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

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

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

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    nav a {
        padding: 0 0 1rem;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    nav a:last-child {
        border-bottom: none;
    }

    #header > div {
        flex-direction: row;
        justify-content: space-between;
    }

    .topicPass {
        margin-right: auto;
    }

    .topicPass img {
        max-width: 285px;
    }

    .main-content {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .service-card {
        padding: 1.5rem;
    }

    .cta-container {
        margin: 3rem 1rem;
        padding: 1.5rem;
    }

    .cta-container p {
        font-size: 1em;
    }
}