.static-page {
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.static-page h1 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.static-page section {
    margin-bottom: 2rem;
}

.static-page h2 {
    color: #444;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.static-page p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.static-page ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.static-page li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Contact Form Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-details {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

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

.form-group textarea {
    resize: vertical;
}

.contact-submit-btn {
    background: #689771;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.contact-submit-btn:hover {
    background: #7baf84;
}

/* Responsive Design */
@media (max-width: 768px) {
    .static-page {
        padding: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding-right: 0;
    }
} 