/* Contact page styling */
.contact-form-intro {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #1e3a8a;
}

/* Form styling */
.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #334155;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #1e3a8a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.btn-submit, .btn-newsletter {
    background: #1e3a8a;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover, .btn-newsletter:hover {
    background: #1e40af;
}

/* Newsletter signup section */
.newsletter-signup {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.newsletter-signup h3 {
    color: white;
    margin-bottom: 10px;
}

.newsletter-signup p {
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Checkbox styling */
.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-row label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: normal;
}

/* Contact info styling */
.contact-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

/* Hide social share buttons */
.share-this,
.social-share,
.post-share,
.entry-share,
.share-buttons,
.addthis_toolbox,
.sharethis-inline-share-buttons {
    display: none !important;
}

/* Common Blocksy share button classes */
.ct-share-box,
.ct-social-share,
.blocksy-social-share {
    display: none !important;
}