details {
  background-color: #f8f9fa;
  border-radius: 8px;          
  margin: 1em 0;
  border: 1px solid #e0e0e0;
}

details summary {
  padding: 10px 15px;
  cursor: pointer;
  font-weight: bold;
  color: #6c757d;
  outline: none;
}

details > *:not(summary) {
  padding: 0 15px 15px 15px;
}

blockquote, 
blockquote p {
  color: #333333 !important; /* Forces the text to a dark charcoal/black */
  opacity: 1 !important;      /* Some themes use opacity to make it look gray */
}

/* This ensures the citation inside the quote doesn't look washed out either */
blockquote .citation {
  color: #333333 !important;
}

/* Container for the footer nudge */
.reciprocity-container {
    margin: 60px auto;
    padding: 40px 20px;
    background-color: #fffdf9; /* Very light cream for elegance */
    border: 1px solid #e0d6b8; /* Subtle gold-tinted border */
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* The text styling */
.reciprocity-text {
    font-family: inherit;
    font-size: 1rem;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Bold highlights in gold or deep gray */
.reciprocity-text strong, .reciprocity-text b {
    color: #222;
    font-weight: 700;
}

/* The majestic button */
.reciprocity-button {
    display: inline-block;
    padding: 16px 35px;
    background-color: #D4AF37; /* Majestic Gold */
    color: white !important;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 4px; /* Classic slight-round for formal look */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

/* Hover effects */
.reciprocity-button:hover {
    background-color: #b8952e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive adjustment for mobile */
@media (max-width: 600px) {
    .reciprocity-container {
        margin: 40px 15px;
        padding: 30px 15px;
    }
    .reciprocity-text {
        font-size: 1.1rem;
    }
}