/* DETAILS CONTAINER */
details {
    background: #ffffff;
    border: 1px solid #e3e6ea;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* SUMMARY HEADER */
details > summary {
    cursor: pointer;
    list-style: none; /* removes default arrow in some browsers */
    padding: 18px 22px;
    background: #f8f9fb;
    display: flex;
    align-items: center;
}

/* REMOVE DEFAULT MARKER (Chrome / Safari) */
details > summary::-webkit-details-marker {
    display: none;
}

/* SUMMARY TITLE */
details > summary h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* CUSTOM ARROW */
details > summary::after {
    content: "▾";
    margin-left: auto;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

/* ROTATE ARROW WHEN OPEN */
details[open] > summary::after {
    transform: rotate(180deg);
}

/* CONTENT AREA */
.details-content {
    padding: 18px 22px;
    border-top: 1px solid #e3e6ea;
    background: #ffffff;
}

/* PARAGRAPH STYLING */
.details-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

/* HOVER EFFECT */
details > summary:hover {
    background: #eef4ff;
}


img {
  max-width: 750px;
  max-height: 400px;
}


