/* Marriage Ministry specific styles */
.mm-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f7fafc;
}

.mm-hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mm-heading {
    font-weight: bold;
    font-size: 2rem;
    color: #2c5282;
    text-align: center;
    margin-bottom: 2rem;
}

.mm-intro {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.mm-services {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.mm-services-list {
    list-style: none;
    padding: 0;
}

.mm-services-item {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.mm-services-item::before {
    content: "✅";
    position: absolute;
    left: 0;
}

.mm-confidentiality {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.mm-contact {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mm-contact-info {
    margin: 1rem 0;
}

.mm-contact-link {
    color: #2c5282;
    text-decoration: underline;
}

.mm-contact-link:hover {
    text-decoration: underline;
}

.mm-emphasis {
    font-weight: bold;
    color: #2c5282;
}

.mm-closing {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
}

/* Appointment Form Styles */
.mm-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mm-form-intro {
    margin-bottom: 1.5rem;
}

.mm-privacy-note {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.mm-form-group {
    margin-bottom: 1.5rem;
}

.mm-form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 500;
}

.mm-form-input,
.mm-form-select,
.mm-form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
}

.mm-form-textarea {
    resize: vertical;
}

.mm-submit-button {
    background-color: #2c5282;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

.mm-submit-button:not(:disabled):hover {
    background-color: #2a4365;
}

.mm-submit-button:disabled {
    background-color: #a0aec0;
    cursor: not-allowed;
    opacity: 0.7;
}

.mm-back-link {
    margin-top: 2rem;
    text-align: center;
}

.mm-back-link a {
    color: #2c5282;
    text-decoration: none;
}

.mm-back-link a:hover {
    text-decoration: underline;
}