.creed-main {
    max-width: 960px;
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
}

.creed-header {
    text-align: center;
    margin-bottom: 3rem;
}

.creed-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1f1f1f;
    margin: 0 0 0.75rem 0;
}

.creed-intro {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: #555555;
    margin: 0 auto;
    max-width: 720px;
    line-height: 1.6;
}

.creed-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.creed-item {
    background-color: #ffffff;
    border: 1px solid #e9eaed;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.creed-item:hover {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.creed-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: #ffffff;
    border: none;
    color: #959595;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    padding: 1.25rem 1.75rem;
    cursor: pointer;
    border-radius: 6px;
}

.creed-trigger:focus {
    outline: 3px solid rgba(3, 56, 159, 0.3);
    outline-offset: 2px;
}

.creed-title {
    flex: 1 1 auto;
    color: black;
}

.creed-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 1px solid #d0d0d0;
    color: #959595;
    font-size: 0.75rem;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.creed-icon::before {
    content: '\25BC';
}

.creed-item.is-open .creed-icon {
    transform: rotate(180deg);
    background-color: #03389f;
    color: #ffffff;
    border-color: #03389f;
}

.creed-content {
    color: #757575;
    border-top: 1px solid #e9eaed;
    font-family: 'Libre Baskerville', serif;
    line-height: 1.7;
    font-size: 1rem;
    padding: 0 1.75rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.creed-item.is-open .creed-content {
    padding: 1.15rem 1.75rem 1.5rem;
}

.creed-content p {
    margin: 0;
}

@media (max-width: 768px) {
    .creed-main {
        padding: 7rem 1rem 3rem;
    }

    .creed-trigger {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .creed-content {
        padding: 0 1.25rem;
    }

    .creed-item.is-open .creed-content {
        padding: 1rem 1.25rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .creed-main {
        padding-top: 6.5rem;
    }

    .creed-header h1 {
        font-size: 2rem;
    }

    .creed-trigger {
        gap: 1rem;
    }
}
